public IEnumerable <Categories> ConsultarTodos()
 {
     try
     {
         return(categoriaDAO.ConsultarTodos());
     }
     catch (Exception ex)
     {
         throw new NorthwindException(Mensajes.Errores.ERROR_CONSULTAR, ex);
     }
 }