2024-05-01 23:48:28 +04:00
|
|
|
|
using LawCompanyDataModels.Models;
|
|
|
|
|
using LawCompanyContracts.BindingModels;
|
2024-05-01 01:54:08 +04:00
|
|
|
|
using LawCompanyContracts.SearchModels;
|
|
|
|
|
using LawCompanyContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace LawCompanyContracts.BusinessLogicContracts
|
|
|
|
|
{
|
2024-05-01 23:48:28 +04:00
|
|
|
|
public interface IHearingLogic
|
|
|
|
|
{
|
|
|
|
|
List<HearingViewModel>? 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);
|
|
|
|
|
}
|
2024-05-01 01:54:08 +04:00
|
|
|
|
}
|