22 lines
711 B
C#
22 lines
711 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|