25 lines
622 B
C#
25 lines
622 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 ICardLogic
|
|
{
|
|
List<CardViewModel>? ReadList(CardSearchModel? model);
|
|
|
|
CardViewModel? ReadElement(CardSearchModel model);
|
|
|
|
bool Create(CardBindingModel model);
|
|
|
|
bool Update(CardBindingModel model);
|
|
|
|
bool Delete(CardBindingModel model);
|
|
}
|
|
}
|