예제 #1
0
 public ProductionOrderService(ApplicationDbContext context, IRecipeService recipeService,
                               IProductionOrderTypeService productionOrderTypeService, IThingService thingService)
 {
     _context       = context;
     _recipeService = recipeService;
     _productionOrderTypeService = productionOrderTypeService;
     _thingService = thingService;
 }
 public AssociateProductionOrderService(IProductionOrderTypeService productionOrderTypeService,
                                        IProductionOrderService productionOrderService,
                                        IStateManagementService stateManagementService,
                                        IThingGroupService thingGroupService,
                                        IConfiguration configuration)
 {
     _configuration = configuration;
     _productionOrderTypeService = productionOrderTypeService;
     _productionOrderService     = productionOrderService;
     _stateManagementService     = stateManagementService;
     _thingGroupService          = thingGroupService;
 }
 public ProductionOrderTypesController(IProductionOrderTypeService productionOrderTypeService)
 {
     _productionOrderTypeService = productionOrderTypeService;
 }