Beispiel #1
0
 public TurmaMoreController(ITurmaRepository rep, ITurmaApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <TurmaMoreController>();
     this._env    = env;
     this._user   = user;
 }
 public TurmasController(ITurmaApplicationService turmaApplicationService)
 {
     _turmaApplicationService = turmaApplicationService;
 }
Beispiel #3
0
 public TurmaController(ITurmaApplicationService turmaApplicationService)
 => _turmaApplicationService = turmaApplicationService;
 public TurmaController(ITurmaApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <TurmaController>();
     this._env    = env;
 }