Пример #1
0
 public List <UsuarioEntity> Buscar(string email, string nombre, string apellido)
 {
     try
     {
         return(daUsuario.Buscar(email, nombre, apellido));
     }
     catch (ExcepcionDA ex)
     {
         throw new ExcepcionBO("Error en la búsqueda del Usuario.", ex);
     }
 }
Пример #2
0
 public List <UsuarioEntity> Buscar(string Nombre)
 {
     try
     {
         return(daUsuario.Buscar(Nombre));
     }
     catch (ExcepcionDA ex)
     {
         throw new ExcepcionBO("No se pudo realizar la busqueda.", ex);
     }
 }