20 lines
560 B
C#
20 lines
560 B
C#
using BankContracts.BindingModels.Cashier;
|
|
using BankContracts.SearchModels.Cashier;
|
|
using BankContracts.ViewModels.Cashier.ViewModels;
|
|
|
|
namespace BankContracts.BusinessLogicsContracts.Cashier
|
|
{
|
|
public interface ICashWithdrawalLogic
|
|
{
|
|
List<CashWithdrawalViewModel>? ReadList(CashWithdrawalSearchModel? model);
|
|
|
|
CashWithdrawalViewModel? ReadElement(CashWithdrawalSearchModel model);
|
|
|
|
bool Create(CashWithdrawalBindingModel model, bool flag);
|
|
|
|
bool Update(CashWithdrawalBindingModel model);
|
|
|
|
bool Delete(CashWithdrawalBindingModel model);
|
|
}
|
|
}
|