2023-04-01 13:45:09 +04:00
|
|
|
|
using BankYouBankruptContracts.BindingModels;
|
|
|
|
|
using BankYouBankruptContracts.SearchModels;
|
|
|
|
|
using BankYouBankruptContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface ICashWithdrawalLogic
|
|
|
|
|
{
|
|
|
|
|
List<CashWithdrawalViewModel>? ReadList(CashWithdrawalSearchModel? model);
|
|
|
|
|
|
|
|
|
|
CashWithdrawalViewModel? ReadElement(CashWithdrawalSearchModel model);
|
|
|
|
|
|
2023-05-17 20:00:17 +04:00
|
|
|
|
bool Create(CashWithdrawalBindingModel model, bool flag);
|
2023-04-01 13:45:09 +04:00
|
|
|
|
|
|
|
|
|
bool Update(CashWithdrawalBindingModel model);
|
|
|
|
|
|
|
|
|
|
bool Delete(CashWithdrawalBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|