public bool DeleteRoomType(string RoomTypeID)
 {
     try
     {
         HotelManagementDataContext db = new HotelManagementDataContext();
         db.sp_DeleteRoomTypes(Convert.ToByte(RoomTypeID));
         db.RoomTypes.Context.SubmitChanges();
         return(true);
     }
     catch
     {
         return(false);
     }
 }