public SampleProductMoreController(ISampleProductRepository rep, ISampleProductApplicationService app, ILoggerFactory logger, EnviromentInfo env)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <SampleProductMoreController>();
     this._env    = env;
 }
示例#2
0
 public SampleProductController(ISampleProductApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <SampleProductController>();
     this._env    = env;
 }