26 lines
795 B
C#
26 lines
795 B
C#
using BankContracts.BindingModels.Cashier;
|
|
using BankContracts.SearchModels.Cashier;
|
|
using BankContracts.ViewModels.Cashier.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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);
|
|
}
|
|
}
|