public FotoDoParticipanteMoreController(IFotoDoParticipanteRepository rep, IFotoDoParticipanteApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <FotoDoParticipanteMoreController>();
     this._env    = env;
     this._user   = user;
 }
Exemple #2
0
 public FotoDoParticipanteService(IFotoDoParticipanteRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }
 public FotoDoParticipanteServiceBase(IFotoDoParticipanteRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }
 public FotoDoParticipanteIsSuitableValidation(IFotoDoParticipanteRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<FotoDoParticipante>(Instance of is suitable,"message for user"));
 }
 public FotoDoParticipanteIsSuitableWarning(IFotoDoParticipanteRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<FotoDoParticipante>(Instance of suitable warning specification,"message for user"));
 }