Files
Keys/src/Logic/ICollectionsService.cs

14 lines
294 B
C#
Raw Normal View History

2025-09-22 13:08:08 +02:00
using Models;
namespace Logic;
2025-10-28 12:28:22 +01:00
public interface ICollectionsService
2025-09-22 13:08:08 +02:00
{
IEnumerable<PasswordStore> GetAll();
PasswordStore Get(uint ID);
2025-09-22 15:35:31 +02:00
void Delete(uint ID);
void Delete(PasswordStore item);
2025-10-28 12:28:22 +01:00
bool Create(PasswordStore item);
2025-09-22 15:35:31 +02:00
void Edit(uint ID, PasswordStore newItem);
2025-09-22 13:08:08 +02:00
}