Files
Keys/src/Logic/ICollectionsService.cs
2025-10-28 12:28:48 +01:00

14 lines
294 B
C#

using Models;
namespace Logic;
public interface ICollectionsService
{
IEnumerable<PasswordStore> GetAll();
PasswordStore Get(uint ID);
void Delete(uint ID);
void Delete(PasswordStore item);
bool Create(PasswordStore item);
void Edit(uint ID, PasswordStore newItem);
}