Case_accounting/CaseAccounting/CaseAccountingContracts/StoragesContracts/ILawyerStorage.cs

25 lines
837 B
C#
Raw Normal View History

2023-03-29 19:10:36 +04:00
using CaseAccountingContracts.BindingModels;
using CaseAccountingContracts.SearchModels;
using CaseAccountingContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.StoragesContracts
{
public interface ILawyerStorage
{
List<LawyerViewModel> GetFullList();
List<LawyerViewModel> GetFilteredList(LawyerSearchModel model);
LawyerViewModel? GetElement(LawyerSearchModel model);
LawyerViewModel? Insert(LawyerBindingModel model);
LawyerViewModel? Update(LawyerBindingModel model);
LawyerViewModel? Delete(LawyerBindingModel model);
2023-05-20 01:21:33 +04:00
List<CaseViewModel> GetLawyerCases(LawyerSearchModel model);
List<LawyerViewModel> GetLawyerMTM(int caseId);
2023-03-29 19:10:36 +04:00
}
}