Esempio n. 1
0
 public MyBrewsController(IUserService userService, IRecipeService recipeService, IBrewService brewService, ITemperatureAggregateService temperatureAggregateService)
 {
     UserService   = userService;
     RecipeService = recipeService;
     BrewService   = brewService;
     TemperatureAggregateService = temperatureAggregateService;
 }
Esempio n. 2
0
 public BrewsManagementController(IBrewService brewService, IResourceService resourceService, IRecipeService recipeService, IMapper mapper)
 {
     this.resourceService = resourceService;
     this.brewService     = brewService;
     this.mapper          = mapper;
     this.recipeService   = recipeService;
 }
Esempio n. 3
0
 public MyBrewsController(IUserService userService, IRecipeService recipeService, IBrewService brewService, ITemperatureAggregateService temperatureAggregateService)
 {
     UserService = userService;
     RecipeService = recipeService;
     BrewService = brewService;
     TemperatureAggregateService = temperatureAggregateService;
 }
Esempio n. 4
0
 public ProducedGoodsController(IProducedGoodsService producedGoodsService,
                                IBrewService brewService,
                                IResourceService resourceService,
                                IRecipeService recipeService,
                                IMapper mapper)
 {
     this.mapper = mapper;
     this.producedGoodsService = producedGoodsService;
     this.brewService          = brewService;
     this.resourceService      = resourceService;
     this.recipeService        = recipeService;
 }
 IBrewService _brewService; //SERVICe that contains HTTPClient and API from config in order to PROXY API requests here
 public BrewController(IBrewService brewService)
 {
     _brewService = brewService;
 }
Esempio n. 6
0
 public HomeController(IBrewService brewService, IMapper mapper)
 {
     this.brewService = brewService;
     this.mapper      = mapper;
 }