Ejemplo n.º 1
0
 public StatisticalController(
     IStatisticalService statisticalService,
     ILogger <BaseController> logger
     ) : base(logger)
 {
     StatisticalService = statisticalService;
 }
Ejemplo n.º 2
0
 public StatisticalController(IHostingEnvironment hostingEnvironment, IHubContext <ChatHub> hubContext)
 {
     statisticalService  = ServiceLocator.Current.GetInstance <IStatisticalService>();
     productService      = ServiceLocator.Current.GetInstance <IProductService>();
     _hostingEnvironment = hostingEnvironment;
     _hubContext         = hubContext;
 }
Ejemplo n.º 3
0
        public StatisticsController(IStatisticalService statisticalService, IConfigService configService)
        {
            _statisticalService = statisticalService;
            _configService      = configService;
            //_cacheManager = cacheManager;

            Logger = NullLogger.Instance;
        }
Ejemplo n.º 4
0
 public StudentService(
     IAccountService accountService,
     IStatisticalService statisticalService,
     IRepositories repositories,
     ILogger <BaseService> logger,
     IMapper mapper) : base(repositories, logger, mapper)
 {
     _accountService     = accountService;
     _statisticalService = statisticalService;
 }
 public StatisticalController(ICustomerService customerService, IUserService userService, IStatisticalService statisticalService)
 {
     _customerService    = customerService;
     _userService        = userService;
     _statisticalService = statisticalService;
 }
Ejemplo n.º 6
0
 public StatisticalController(IStatisticalService statisticalService, IConfiguration configuration)
 {
     _statisticalService = statisticalService;
     _configuration      = configuration;
 }
 public StatisticalController(IStatisticalService statisticalService)
 {
     this.statisticalService = statisticalService;
 }