Example #1
0
 public CondominioMoreController(ICondominioRepository rep, ICondominioApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <CondominioMoreController>();
 }
 public CondominioController(ICondominioApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <CondominioController>();
     this._env    = env;
 }