public TipoDeParticipanteMoreController(ITipoDeParticipanteRepository rep, ITipoDeParticipanteApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <TipoDeParticipanteMoreController>();
     this._env    = env;
     this._user   = user;
 }
예제 #2
0
 public TipoDeParticipanteServiceBase(ITipoDeParticipanteRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }
예제 #3
0
 public TipoDeParticipanteIsSuitableValidation(ITipoDeParticipanteRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<TipoDeParticipante>(Instance of is suitable,"message for user"));
 }
예제 #4
0
 public TipoDeParticipanteIsSuitableWarning(ITipoDeParticipanteRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<TipoDeParticipante>(Instance of suitable warning specification,"message for user"));
 }
 public TipoDeParticipanteService(ITipoDeParticipanteRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }