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