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