Simplified Repository, Logic handles more by itself
This commit is contained in:
@@ -6,9 +6,6 @@ namespace Repository;
|
||||
public interface IRepository
|
||||
{
|
||||
List<PasswordStore> GetAll();
|
||||
PasswordStore? Get(uint id);
|
||||
void Edit(uint ID, PasswordStore newItem);
|
||||
void Create(PasswordStore item);
|
||||
void Delete(uint ID);
|
||||
void Delete(PasswordStore item);
|
||||
}
|
||||
Reference in New Issue
Block a user