25 lines
663 B
C#
25 lines
663 B
C#
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);
|
|
|
|
bool Create(CashWithdrawalBindingModel model);
|
|
|
|
bool Update(CashWithdrawalBindingModel model);
|
|
|
|
bool Delete(CashWithdrawalBindingModel model);
|
|
}
|
|
}
|