public StatusPagamentoController(IStatusPagamentoApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <StatusPagamentoController>();
     this._env    = env;
 }
Пример #2
0
 public StatusPagamentoMoreController(IStatusPagamentoRepository rep, IStatusPagamentoApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <StatusPagamentoMoreController>();
 }