using CaseAccountingContracts.BindingModels; using CaseAccountingContracts.SearchModels; using CaseAccountingContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CaseAccountingContracts.StoragesContracts { public interface ILawyerStorage { List GetFullList(); List GetFilteredList(LawyerSearchModel model); LawyerViewModel? GetElement(LawyerSearchModel model); LawyerViewModel? Insert(LawyerBindingModel model); LawyerViewModel? Update(LawyerBindingModel model); LawyerViewModel? Delete(LawyerBindingModel model); } }