18 lines
659 B
C#
18 lines
659 B
C#
using LawFirmContracts.BindingModels;
|
|
using LawFirmContracts.SearchModels;
|
|
using LawFirmContracts.ViewModels;
|
|
|
|
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);
|
|
}
|
|
}
|