Пример #1
0
 public TurmaParticipanteMoreController(ITurmaParticipanteRepository rep, ITurmaParticipanteApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <TurmaParticipanteMoreController>();
     this._env    = env;
     this._user   = user;
 }
 public TurmaParticipanteServiceBase(ITurmaParticipanteRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }
Пример #3
0
 public TurmaParticipanteService(ITurmaParticipanteRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }
Пример #4
0
 public TurmaParticipanteIsSuitableWarning(ITurmaParticipanteRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<TurmaParticipante>(Instance of suitable warning specification,"message for user"));
 }
 public TurmaParticipanteIsSuitableValidation(ITurmaParticipanteRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<TurmaParticipante>(Instance of is suitable,"message for user"));
 }