예제 #1
0
 public PlanoContaMoreController(IPlanoContaRepository rep, IPlanoContaApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <PlanoContaMoreController>();
 }
예제 #2
0
 public PlanoContaController(IPlanoContaApplicationService app, ILoggerFactory logger)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <PlanoContaController>();
 }
예제 #3
0
 public PlanoContaController(IPlanoContaApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <PlanoContaController>();
     this._env    = env;
 }