Files
Keys/Repository/IRepository.cs

14 lines
310 B
C#
Raw Normal View History

2025-09-22 13:08:08 +02:00
using System.Collections;
2025-09-22 15:35:31 +02:00
using Models;
2025-09-22 13:08:08 +02:00
namespace Repository;
public interface IRepository
{
2025-09-22 15:35:31 +02:00
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);
2025-09-22 13:08:08 +02:00
}