using SchoolAgainStudyContracts.BindingModel; using SchoolAgainStudyContracts.SearchModel; using SchoolAgainStudyContracts.ViewModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolAgainStudyContracts.StorageContracts { public interface IInterestStorage { List GetFullList(); List GetFilteredList(InterestSearchModel model); InterestViewModel? GetElement(InterestSearchModel model); InterestViewModel? Insert(InterestBindingModel model); InterestViewModel? Update(InterestBindingModel model); InterestViewModel? Delete(InterestBindingModel model); } }