using SchoolContracts.BindingModels; using SchoolContracts.SearchModels; using SchoolContracts.ViewModels; namespace SchoolContracts.StoragesContracts { public interface IStudentStorage { List GetFullList(); List GetFilteredList(StudentSearchModel model); StudentViewModel? GetElement(StudentSearchModel model); StudentViewModel? Insert(StudentSearchModel model); StudentViewModel? Update(StudentSearchModel model); StudentViewModel? Delete(StudentSearchModel model); } }