public SampleMoreController(ISampleRepository rep, ISampleApplicationService app, ILoggerFactory logger, EnviromentInfo env) { this._rep = rep; this._app = app; this._logger = logger.CreateLogger <SampleMoreController>(); this._env = env; }
public SampleMoreController(ISampleRepository rep, ISampleApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user, ICache cache) { this._rep = rep; this._app = app; this._logger = logger.CreateLogger <SampleMoreController>(); this._env = env; this._user = user; this._cache = cache; this._cacheHelper = new CacheHelper(this._cache); }
public SampleController(ISampleApplicationService sampleApplicationService) { _sampleApplicationService = sampleApplicationService; }
public SampleController(ISampleApplicationService app, ILoggerFactory logger, IHostingEnvironment env) { this._app = app; this._logger = logger.CreateLogger <SampleController>(); this._env = env; }
public SampleMoreController(ISampleRepository rep, ISampleApplicationService app, ILoggerFactory logger) { this._rep = rep; this._app = app; this._logger = logger.CreateLogger <SampleMoreController>(); }
public SamplesController(ISampleApplicationService sampleApplicationService, ISamplesProvider samplesProvider) { _sampleApplicationService = sampleApplicationService; _samplesProvider = samplesProvider; }
public SampleController(ISampleApplicationService app, ILoggerFactory logger, IHostingEnvironment env) : base(app, logger, env, new ErrorMapCustom()) { }
public SampleMoreController(ISampleRepository rep, ISampleApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user, ICache cache) : base(rep, app, logger, env, user, cache, new ExportExcel <dynamic>(), new ErrorMapCustom()) { }