Example #1
0
 public Exception ControlarExcepcion(TRV_Exception code)
 {
     if (gestorEx == null)
     {
         gestorEx = new GestorExcepciones(UsuarioAuth);
     }
     return(gestorEx.controlarExcepcion(code));
 }
Example #2
0
 public Exception ControlarExcepcion(Exception excepcion)
 {
     if (gestorEx == null)
     {
         this.gestorEx = new GestorExcepciones(UsuarioAuth);
     }
     return(gestorEx.controlarExcepcion(excepcion));
 }
 public ResultadosDeBusqueda()
 {
     _gestorDeError = new GestorExcepciones("Web.ControlTemplates", "ResultadosDeBusqueda");
 }
 public RegistrosDeEntidadesDeVerificacionProcesadosRepositorio()
     : base()
 {
     _gestorDeError = new GestorExcepciones(this.GetType().Namespace, this.GetType().Name);
 }
Example #5
0
 public GestorAPI(Usuario usuario)
 {
     UsuarioAuth = usuario;
     gestorEx    = new GestorExcepciones(usuario);
 }
 public BaseRepositorioTabla()
 {
     _gestorDeError = new GestorExcepciones(this.GetType().Namespace, this.GetType().Name);
 }
 public ConfiguracionesDeLosElementosDeVerificacionAutomaticosRepositorio()
     : base()
 {
     _gestorDeError = new GestorExcepciones(this.GetType().Namespace, this.GetType().Name);
 }
Example #8
0
 public Util(Usuario usuario)
 {
     UsuarioAuth = usuario;
     gestor      = new GestorExcepciones(usuario);
 }
Example #9
0
 public Mapeo()
 {
     _gestorDeError = new GestorExcepciones(this.GetType().Namespace, this.GetType().Name);
 }
 public EvolucionIndicadores()
 {
     _gestorDeError = new GestorExcepciones("Web.ControlTemplates", "EvolucionIndicadores");
 }