public InfraestruturaSiteServiceBase(IInfraestruturaSiteRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }
 public InfraestruturaSiteMoreController(IInfraestruturaSiteRepository rep, IInfraestruturaSiteApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <InfraestruturaSiteMoreController>();
 }
Ejemplo n.º 3
0
 public InfraestruturaSiteService(IInfraestruturaSiteRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }
Ejemplo n.º 4
0
 public InfraestruturaSiteAptoParaCadastroValidation(IInfraestruturaSiteRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<InfraestruturaSite>(Instance of RuleClassName,"message for user"));
 }