public AcompanhadoresAptoParaCadastroWarning(IAcompanhadoresRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<Acompanhadores>(Instance of RuleClassName,"message for user"));
 }
 public AcompanhadoresServiceBase(IAcompanhadoresRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }
 public AcompanhadoresMoreController(IAcompanhadoresRepository rep, IAcompanhadoresApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <AcompanhadoresMoreController>();
 }
 public AcompanhadoresService(IAcompanhadoresRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }