Files
Keys/Repository/IRepository.cs
2025-09-23 13:28:11 +02:00

14 lines
310 B
C#

using System.Collections;
using Models;
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);
}