23 lines
787 B
C#
23 lines
787 B
C#
using LawCompanyContracts.BindingModels;
|
|
using LawCompanyContracts.SearchModels;
|
|
using LawCompanyContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LawCompanyContracts.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);
|
|
}
|
|
}
|