2023-04-01 19:39:50 +04:00
|
|
|
|
using CaseAccountingContracts.BindingModels;
|
|
|
|
|
using CaseAccountingContracts.SearchModels;
|
|
|
|
|
using CaseAccountingContracts.ViewModels;
|
|
|
|
|
using System;
|
2023-03-29 19:10:36 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CaseAccountingContracts.BusinessLogicContracts
|
|
|
|
|
{
|
2023-04-01 19:39:50 +04:00
|
|
|
|
public interface ILawyerLogic
|
2023-03-29 19:10:36 +04:00
|
|
|
|
{
|
2023-04-01 19:39:50 +04:00
|
|
|
|
List<LawyerViewModel>? ReadList(LawyerSearchModel? model);
|
|
|
|
|
LawyerViewModel? ReadElement(LawyerSearchModel model);
|
|
|
|
|
bool Create(LawyerBindingModel model);
|
|
|
|
|
bool Update(LawyerBindingModel model);
|
|
|
|
|
bool Delete(LawyerBindingModel model);
|
2023-03-29 19:10:36 +04:00
|
|
|
|
}
|
|
|
|
|
}
|