Files
Keys/src/Repository/IRepository.cs

11 lines
193 B
C#

using System.Collections;
using Models;
namespace Repository;
public interface IRepository
{
List<PasswordStore> GetAll();
void Create(PasswordStore item);
void Delete(uint ID);
}