16 lines
449 B
C#
16 lines
449 B
C#
|
using Contracts.BindingModels;
|
|||
|
using Contracts.SearchModels;
|
|||
|
using Contracts.ViewModels;
|
|||
|
|
|||
|
namespace Contracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IProductionLogic
|
|||
|
{
|
|||
|
List<ProductionViewModel>? ReadList(ProductionSearchModel? model);
|
|||
|
ProductionViewModel? ReadElement(ProductionSearchModel? model);
|
|||
|
bool Create(ProductionBindingModel? model);
|
|||
|
bool Update(ProductionViewModel? model);
|
|||
|
bool Delete(ProductionViewModel? model);
|
|||
|
}
|
|||
|
}
|