using CandidateReviewContracts.BindingModels; using CandidateReviewContracts.SearchModels; using CandidateReviewContracts.ViewModels; namespace CandidateReviewContracts.StoragesContracts { public interface IUserStorage { List GetFullList(); List GetFilteredList(UserSearchModel model); UserViewModel? GetElement(UserSearchModel model); UserViewModel? Insert(UserBindingModel model); UserViewModel? Update(UserBindingModel model); UserViewModel? Delete(UserBindingModel model); } }