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