public ParticipantMoreController(IParticipantRepository rep, IParticipantApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <ParticipantMoreController>();
     this._env    = env;
     this._user   = user;
 }
Example #2
0
 public ParticipantController(IParticipantApplicationService app, ILoggerFactory logger, IHostingEnvironment env)
 {
     this._app    = app;
     this._logger = logger.CreateLogger <ParticipantController>();
     this._env    = env;
 }