2024-04-27 19:02:25 +04:00
|
|
|
|
using LawFirmContracts.BindingModels;
|
|
|
|
|
using LawFirmContracts.SearchModels;
|
|
|
|
|
using LawFirmContracts.ViewModels;
|
2024-04-19 16:15:01 +04:00
|
|
|
|
|
|
|
|
|
namespace LawFirmContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|