using System.Collections; using Models; namespace Repository; public interface IRepository { List GetAll(); PasswordStore? Get(uint id); void Edit(uint ID, PasswordStore newItem); void Create(PasswordStore item); void Delete(uint ID); void Delete(PasswordStore item); }