17 lines
495 B
C#
Raw Normal View History

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