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