14 lines
424 B
C#
14 lines
424 B
C#
|
using HardwareShopContracts.BindingModels;
|
|||
|
using HardwareShopContracts.SearchModels;
|
|||
|
using HardwareShopContracts.ViewModels;
|
|||
|
|
|||
|
namespace HardwareShopContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IPurchaseLogic
|
|||
|
{
|
|||
|
List<PurchaseViewModel>? ReadList(PurchaseSearchModel? model);
|
|||
|
bool CreatePurchase(PurchaseBindingModel model);
|
|||
|
bool DeliveryPurchase(PurchaseBindingModel model);
|
|||
|
}
|
|||
|
}
|