public PendenciaEventosController(IPendenciaEventosApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <PendenciaEventosController>();
     this._env    = env;
 }
 public PendenciaEventosMoreController(IPendenciaEventosRepository rep, IPendenciaEventosApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <PendenciaEventosMoreController>();
 }