Simplified Repository, Logic handles more by itself

This commit is contained in:
2025-09-30 10:41:12 +02:00
parent 7ac87ea568
commit c8c24cb7cc
3 changed files with 9 additions and 65 deletions

View File

@@ -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);
}