Пример #1
0
 public static List <Usuario> GetAllAdapted(string nombre, string documento)
 {
     try
     {
         return(UsuarioFacade.GetAllAdapted(nombre, documento));
     }
     catch (ExceptionBLL bllex)
     {
         throw new ExceptionBLL(bllex, bllex.Message);
     }
 }
Пример #2
0
 public static List <Usuario> GetAllAdapted()
 {
     try
     {
         return(UsuarioFacade.GetAllAdapted());
     }
     catch (ExceptionBLL bllex)
     {
         throw new ExceptionBLL(bllex, bllex.Message);
     }
 }