18 lines
600 B
C#
18 lines
600 B
C#
using LawCompanyContracts.BindingModels;
|
|
using LawCompanyContracts.SearchModels;
|
|
using LawCompanyContracts.ViewModels;
|
|
|
|
namespace LawCompanyContracts.BusinessLogicContracts
|
|
{
|
|
public interface IClientLogic
|
|
{
|
|
List<ClientViewModel>? ReadList(ClientSearchModel? model);
|
|
List<ClientViewModel>? ReadCaseElementList(CaseSearchModel? model);
|
|
List<ClientViewModel>? ReadVisitElementList(VisitSearchModel? model);
|
|
ClientViewModel? ReadElement(ClientSearchModel model);
|
|
bool Create(ClientBindingModel model);
|
|
bool Update(ClientBindingModel model);
|
|
bool Delete(ClientBindingModel model);
|
|
}
|
|
}
|