using SchoolContracts.SearchModels; using SchoolContracts.BindingModels; using SchoolContracts.ViewModels; namespace SchoolContracts.StoragesContracts { public interface IAccountStorage { List GetFullList(); List GetFilteredList(AccountSearchModel model); AccountViewModel? GetElement(AccountSearchModel model); AccountViewModel? Insert(AccountBindingModel model); } }