20 lines
493 B
C#
20 lines
493 B
C#
using BankContracts.BindingModels.Cashier;
|
|
using BankContracts.SearchModels.Cashier;
|
|
using BankContracts.ViewModels.Cashier.ViewModels;
|
|
|
|
namespace BankContracts.BusinessLogicsContracts.Cashier
|
|
{
|
|
public interface ICashierLogic
|
|
{
|
|
List<CashierViewModel>? ReadList(CashierSearchModel? model);
|
|
|
|
CashierViewModel? ReadElement(CashierSearchModel model);
|
|
|
|
bool Create(CashierBindingModel model);
|
|
|
|
bool Update(CashierBindingModel model);
|
|
|
|
bool Delete(CashierBindingModel model);
|
|
}
|
|
}
|