public static List <Hotel> ListarHoteles() { try { return(PersistenciaHoteles.ListarHoteles()); } catch (Exception ex) { throw ex; } }
public static List <Hotel> ListarHoteles(int pEstrellas) { return(PersistenciaHoteles.ListarHoteles(pEstrellas)); }