2024-05-01 01:54:08 +04:00
|
|
|
|
using LawCompanyContracts.BindingModels;
|
|
|
|
|
using LawCompanyContracts.SearchModels;
|
|
|
|
|
using LawCompanyContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace LawCompanyContracts.BusinessLogicContracts
|
|
|
|
|
{
|
2024-05-01 23:48:28 +04:00
|
|
|
|
public interface ILawyerLogic
|
|
|
|
|
{
|
|
|
|
|
List<LawyerViewModel>? ReadHearingElementList(HearingSearchModel? model);
|
|
|
|
|
List<LawyerViewModel>? ReadConsultationElementList(ConsultationSearchModel? model);
|
|
|
|
|
List<LawyerViewModel>? ReadList(LawyerSearchModel? model);
|
|
|
|
|
LawyerViewModel? ReadElement(LawyerSearchModel model);
|
|
|
|
|
bool Create(LawyerBindingModel model);
|
|
|
|
|
bool Update(LawyerBindingModel model);
|
|
|
|
|
bool Delete(LawyerBindingModel model);
|
|
|
|
|
}
|
2024-05-01 01:54:08 +04:00
|
|
|
|
}
|