public GatewayController(IConfiguration configuration,
                          IRecipeService recipeService, IThingGroupService thingGroupService)
 {
     _configuration     = configuration;
     _recipeService     = recipeService;
     _thingGroupService = thingGroupService;
 }
 public AssociateToolService(IStateManagementService stateManagementService,
                             IToolTypeService toolTypeService,
                             IToolService toolService,
                             IThingGroupService thingGroupService,
                             IConfiguration configuration)
 {
     _toolTypeService        = toolTypeService;
     _toolService            = toolService;
     _stateManagementService = stateManagementService;
     _thingGroupService      = thingGroupService;
     _configuration          = configuration;
 }
 public AssociateProductionOrderService(IProductionOrderTypeService productionOrderTypeService,
                                        IProductionOrderService productionOrderService,
                                        IStateManagementService stateManagementService,
                                        IThingGroupService thingGroupService,
                                        IConfiguration configuration)
 {
     _configuration = configuration;
     _productionOrderTypeService = productionOrderTypeService;
     _productionOrderService     = productionOrderService;
     _stateManagementService     = stateManagementService;
     _thingGroupService          = thingGroupService;
 }
Example #4
0
 public GatewayController(IConfiguration configuration,
                          IThingService thingService,
                          IThingGroupService thingGroupService,
                          IProductService productService,
                          ITagsService tagsService
                          )
 {
     _configuration     = configuration;
     _thingService      = thingService;
     _thingGroupService = thingGroupService;
     _productService    = productService;
     _tagsService       = tagsService;
 }
 public ProductionOrderTypeService(ApplicationDbContext context,
                                   IThingGroupService thingGroupService)
 {
     _context           = context;
     _thingGroupService = thingGroupService;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="context">Context DB</param>
 public ToolTypeService(ApplicationDbContext context, IThingGroupService thingGroupService)
 {
     _context           = context;
     _thingGroupService = thingGroupService;
 }
 public ThingGroupsController(IThingGroupService thingGroupService)
 {
     _thingGroupService = thingGroupService;
 }