Ejemplo n.º 1
0
 public String getRoomType(string id)
 {
     HotelQuery obj = new HotelQuery();
     return obj.getRoomType(id);
 }
Ejemplo n.º 2
0
 public String getHotel(string id)
 {
     HotelQuery obj = new HotelQuery();
     return obj.getImformationByID(id);
 }
Ejemplo n.º 3
0
 public String getPrice(string id)
 {
     HotelQuery obj = new HotelQuery();
     return obj.getPrice(id);
 }
Ejemplo n.º 4
0
 public String getAllotment(string id,string book)
 {
     HotelQuery obj = new HotelQuery();
     return obj.getAllotment(id, Int32.Parse(book));
 }