예제 #1
0
        // GET: api/Hotel/5
        public Hotel Get(int id)
        {
            ManageHotel mngHotel = new ManageHotel();

            return(mngHotel.GetHotelFromId(id));
        }
예제 #2
0
 public Hotel Get(int id)
 {
     return(mgr.GetHotelFromId(id));
 }
예제 #3
0
 public Hotel Get(int id)
 {
     return(_mngHotel.GetHotelFromId(id));
 }