コード例 #1
0
 public DocumentoMoreController(IDocumentoRepository rep, IDocumentoApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <DocumentoMoreController>();
 }
コード例 #2
0
 public DocumentoController(IDocumentoApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <DocumentoController>();
     this._env    = env;
 }