Upload files to 'ShipyardContracts/BusinessLogicContracts'
This commit is contained in:
parent
1f61f8d67d
commit
89df2e7a25
14
ShipyardContracts/BusinessLogicContracts/IComponentLogic.cs
Normal file
14
ShipyardContracts/BusinessLogicContracts/IComponentLogic.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using ShipyardContracts.BindingModels;
|
||||||
|
using ShipyardContracts.SearchModels;
|
||||||
|
using ShipyardContracts.ViewModels;
|
||||||
|
namespace ShipyardContracts.BusinessLogicsContracts
|
||||||
|
{
|
||||||
|
public interface IComponentLogic
|
||||||
|
{
|
||||||
|
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
|
||||||
|
ComponentViewModel? ReadElement(ComponentSearchModel model);
|
||||||
|
bool Create(ComponentBindingModel model);
|
||||||
|
bool Update(ComponentBindingModel model);
|
||||||
|
bool Delete(ComponentBindingModel model);
|
||||||
|
}
|
||||||
|
}
|
14
ShipyardContracts/BusinessLogicContracts/IOrderLogic.cs
Normal file
14
ShipyardContracts/BusinessLogicContracts/IOrderLogic.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using ShipyardContracts.BindingModels;
|
||||||
|
using ShipyardContracts.SearchModels;
|
||||||
|
using ShipyardContracts.ViewModels;
|
||||||
|
namespace ShipyardContracts.BusinessLogicsContracts
|
||||||
|
{
|
||||||
|
public interface IOrderLogic
|
||||||
|
{
|
||||||
|
List<OrderViewModel>? ReadList(OrderSearchModel? model);
|
||||||
|
bool CreateOrder(OrderBindingModel model);
|
||||||
|
bool TakeOrderInWork(OrderBindingModel model);
|
||||||
|
bool FinishOrder(OrderBindingModel model);
|
||||||
|
bool DeliveryOrder(OrderBindingModel model);
|
||||||
|
}
|
||||||
|
}
|
14
ShipyardContracts/BusinessLogicContracts/IShipLogic.cs
Normal file
14
ShipyardContracts/BusinessLogicContracts/IShipLogic.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using ShipyardContracts.BindingModels;
|
||||||
|
using ShipyardContracts.SearchModels;
|
||||||
|
using ShipyardContracts.ViewModels;
|
||||||
|
namespace ShipyardContracts.BusinessLogicsContracts
|
||||||
|
{
|
||||||
|
public interface IShipLogic
|
||||||
|
{
|
||||||
|
List<ShipViewModel>? ReadList(ShipSearchModel? model);
|
||||||
|
ShipViewModel? ReadElement(ShipSearchModel model);
|
||||||
|
bool Create(ShipBindingModel model);
|
||||||
|
bool Update(ShipBindingModel model);
|
||||||
|
bool Delete(ShipBindingModel model);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user