2024-04-28 12:53:39 +04:00
|
|
|
|
using BankContracts.BindingModels.Client;
|
|
|
|
|
using BankContracts.SearchModels.Client;
|
2024-05-29 17:24:55 +04:00
|
|
|
|
using BankContracts.ViewModels.Client.Diagram;
|
2024-04-28 12:53:39 +04:00
|
|
|
|
using BankContracts.ViewModels.Client.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace BankContracts.BusinessLogicsContracts.Client
|
|
|
|
|
{
|
2024-05-29 17:24:55 +04:00
|
|
|
|
public interface ICardLogic
|
2024-04-28 12:53:39 +04:00
|
|
|
|
{
|
|
|
|
|
List<CardViewModel>? ReadList(CardSearchModel? model);
|
|
|
|
|
|
|
|
|
|
CardViewModel? ReadElement(CardSearchModel model);
|
|
|
|
|
|
|
|
|
|
bool Create(CardBindingModel model);
|
|
|
|
|
|
|
|
|
|
bool Update(CardBindingModel model);
|
|
|
|
|
|
|
|
|
|
bool Delete(CardBindingModel model);
|
2024-05-29 17:24:55 +04:00
|
|
|
|
|
|
|
|
|
public List<ClientDiagramElementsViewModel> GetMonthInfo(int CardId);
|
2024-04-28 12:53:39 +04:00
|
|
|
|
}
|
|
|
|
|
}
|