22 lines
573 B
C#
22 lines
573 B
C#
using BankContracts.BindingModels.Cashier;
|
|
using BankContracts.SearchModels.Cashier;
|
|
using BankContracts.ViewModels.Cashier.ViewModels;
|
|
|
|
namespace BankContracts.StoragesContracts.Cashier
|
|
{
|
|
public interface ICashierStorage
|
|
{
|
|
List<CashierViewModel> GetFullList();
|
|
|
|
List<CashierViewModel> GetFilteredList(CashierSearchModel model);
|
|
|
|
CashierViewModel? GetElement(CashierSearchModel model);
|
|
|
|
CashierViewModel? Insert(CashierBindingModel model);
|
|
|
|
CashierViewModel? Update(CashierBindingModel model);
|
|
|
|
CashierViewModel? Delete(CashierBindingModel model);
|
|
}
|
|
}
|