Beispiel #1
0
 public ProjetoDocumentoMoreController(IProjetoDocumentoRepository rep, IProjetoDocumentoApplicationService app, ILoggerFactory logger)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <ProjetoDocumentoMoreController>();
 }
 public ProjetoDocumentoAptoParaCadastroValidation(IProjetoDocumentoRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<ProjetoDocumento>(Instance of RuleClassName,"message for user"));
 }
Beispiel #3
0
 public ProjetoDocumentoService(IProjetoDocumentoRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }
Beispiel #4
0
 public ProjetoDocumentoServiceBase(IProjetoDocumentoRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }