public StatisticsController(IChartService chartService, IMapper mapper, IGateUsageService gateUsageService, IOrderService orderService)
 {
     _chartService     = chartService;
     _mapper           = mapper;
     _gateUsageService = gateUsageService;
     _orderService     = orderService;
 }
Пример #2
0
 public HomeController(IWeatherService weatherService, IUserService userService, IGateUsageService gateUsageService, IMapper mapper, IChartService chartService, IPortalMessageService portalMessageService)
 {
     _weatherService       = weatherService;
     _userService          = userService;
     _gateUsageService     = gateUsageService;
     _mapper               = mapper;
     _chartService         = chartService;
     _portalMessageService = portalMessageService;
 }
 public AdminGateUsageController(IGateUsageService entityService, IMapper mapper) : base(entityService, mapper)
 {
     _mapper  = mapper;
     _service = entityService;
 }