2024-04-21 17:21:28 +04:00
|
|
|
|
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);
|
2024-04-21 19:06:13 +04:00
|
|
|
|
bool Update(ProductionBindingModel? model);
|
|
|
|
|
bool Delete(ProductionBindingModel? model);
|
2024-04-21 17:21:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|