public ComentarioDocumentoController(IComentarioDocumentoApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <ComentarioDocumentoController>();
     this._env    = env;
 }
示例#2
0
 public ComentarioDocumentoMoreController(IComentarioDocumentoRepository rep, IComentarioDocumentoApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <ComentarioDocumentoMoreController>();
 }