17 lines
579 B
C#
17 lines
579 B
C#
|
using MotorPlantContracts.BindingModels;
|
|||
|
using MotorPlantContracts.SearchModels;
|
|||
|
using MotorPlantContracts.ViewModels;
|
|||
|
|
|||
|
namespace MotorPlantContracts.StoragesContracts
|
|||
|
{
|
|||
|
public interface IClientStorage
|
|||
|
{
|
|||
|
List<ClientViewModel> GetFullList();
|
|||
|
List<ClientViewModel> GetFilteredList(ClientSearchModel model);
|
|||
|
ClientViewModel? GetElement(ClientSearchModel model);
|
|||
|
ClientViewModel? Insert(ClientBindingModel model);
|
|||
|
ClientViewModel? Update(ClientBindingModel model);
|
|||
|
ClientViewModel? Delete(ClientBindingModel model);
|
|||
|
}
|
|||
|
}
|