2023-04-01 09:37:08 +04:00
|
|
|
|
using BankYouBankruptContracts.BindingModels;
|
|
|
|
|
using BankYouBankruptContracts.SearchModels;
|
2023-05-18 17:56:47 +04:00
|
|
|
|
using BankYouBankruptContracts.ViewModels.Client.Default;
|
2023-04-01 09:37:08 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IDebitingLogic
|
|
|
|
|
{
|
|
|
|
|
List<DebitingViewModel>? ReadList(DebitingSearchModel? model);
|
|
|
|
|
|
|
|
|
|
DebitingViewModel? ReadElement(DebitingSearchModel model);
|
|
|
|
|
|
|
|
|
|
bool Create(DebitingBindingModel model);
|
|
|
|
|
|
|
|
|
|
bool Update(DebitingBindingModel model);
|
|
|
|
|
|
|
|
|
|
bool Delete(DebitingBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|