2024-04-28 21:34:43 +04:00
|
|
|
|
using BankContracts.BindingModels;
|
|
|
|
|
using BankContracts.SearchModels;
|
|
|
|
|
using BankContracts.ViewModels;
|
|
|
|
|
|
2024-04-28 20:20:37 +04:00
|
|
|
|
|
|
|
|
|
namespace BankContracts.BusinessLogicContracts
|
|
|
|
|
{
|
2024-04-28 21:34:43 +04:00
|
|
|
|
public interface IPurchaseLogic
|
2024-04-28 20:20:37 +04:00
|
|
|
|
{
|
2024-04-28 21:34:43 +04:00
|
|
|
|
List<PurchaseViewModel> ReadList(PurchaseSearchModel? model = null);
|
|
|
|
|
PurchaseViewModel ReadElement(PurchaseSearchModel model);
|
|
|
|
|
bool Create(PurchaseBindingModel model);
|
|
|
|
|
bool Update(PurchaseBindingModel model);
|
|
|
|
|
bool Delete(PurchaseBindingModel model);
|
2024-04-28 20:20:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|