public PrioridadeMoreController(IPrioridadeRepository rep, IPrioridadeApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <PrioridadeMoreController>();
 }
 public PrioridadeController(IPrioridadeApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <PrioridadeController>();
     this._env    = env;
 }