public QueryResponse <RoomType> GetAllRoomsTypeByGuestNumber(SearchObject search) { QueryResponse <RoomType> responseProducts = roomTypeDAO.GetAllRoomsTypeByGuestNumber(search); List <RoomType> temp = responseProducts.Data; foreach (RoomType item in temp) { item.Value.ToString("C2"); item.DailyValue.ToString("C2"); } return(responseProducts); }