using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LawFirmContracts.BusinessLogicContracts { public interface ILawyerLogic { List? ReadHearingElementList(HearingSearchModel? model); List? ReadConsultationElementList(ConsultationSearchModel? model); List? ReadList(LawyerSearchModel? model); LawyerViewModel? ReadElement(LawyerSearchModel model); bool Create(LawyerBindingModel model); bool Update(LawyerBindingModel model); bool Delete(LawyerBindingModel model); } }