2023-04-01 09:37:08 +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
|
|
|
|
|
{
|
2023-05-14 21:23:18 +04:00
|
|
|
|
public interface ICardLogic
|
2023-04-01 09:37:08 +04:00
|
|
|
|
{
|
2023-05-14 21:23:18 +04:00
|
|
|
|
List<CardViewModel>? ReadList(CardSearchModel? model);
|
2023-04-01 09:37:08 +04:00
|
|
|
|
|
2023-05-14 21:23:18 +04:00
|
|
|
|
CardViewModel? ReadElement(CardSearchModel model);
|
2023-04-01 09:37:08 +04:00
|
|
|
|
|
2023-05-14 21:23:18 +04:00
|
|
|
|
bool Create(CardBindingModel model);
|
2023-04-01 09:37:08 +04:00
|
|
|
|
|
2023-05-14 21:23:18 +04:00
|
|
|
|
bool Update(CardBindingModel model);
|
2023-04-01 09:37:08 +04:00
|
|
|
|
|
2023-05-14 21:23:18 +04:00
|
|
|
|
bool Delete(CardBindingModel model);
|
2023-04-01 09:37:08 +04:00
|
|
|
|
}
|
|
|
|
|
}
|