using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LawFirmContracts.BusinessLogicContracts { public interface IHearingLogic { List? ReadList(HearingSearchModel? model); HearingViewModel? ReadElement(HearingSearchModel model); bool Create(HearingBindingModel model); bool Update(HearingBindingModel model); bool Delete(HearingBindingModel model); bool AddLawyerToHearing(HearingSearchModel model, ILawyerModel client); } }