Ejemplo n.º 1
0
 public ChartsController(IChartServices chartServices, IFoodItemServices foodItemServices, IProductServices productServices, IUserServices userServices)
 {
     _productServices  = productServices;
     _foodItemServices = foodItemServices;
     _chartServices    = chartServices;
     _userServices     = userServices;
 }
 public MicronutrientsController(IChartServices chartServices)
 {
     _chartServices = chartServices;
 }
 public TrackablesChartController(ITrackablesServices trackablesServices, IChartServices chartServices, IHighchartsServices highchartsServices)
 {
     _highchartsServices = highchartsServices;
     _trackablesServices = trackablesServices;
     _chartServices      = chartServices;
 }
Ejemplo n.º 4
0
 public ChartApiController(IChartServices chartServices)
 {
     this._chartServices = chartServices;
 }