public IEnumerable <RoomPrice> GetAllRoomPrices() { IEnumerable <RoomPrice> roomPrices = TableNoTracking.ToArray(); return(roomPrices); }
public IEnumerable <MealPlanPrice> GetAllMealPlansPrices() { IEnumerable <MealPlanPrice> mealPlanPrices = TableNoTracking.ToArray(); return(mealPlanPrices); }
public IEnumerable <Room> GetAllRooms() { IEnumerable <Room> rooms = TableNoTracking.ToArray(); return(rooms); }