Esempio n. 1
0
        private void GetPrice(string date)
        {
            Getvalues = new ChartValues <double>();

            foreach (String time in timeLabel)
            {
                int HourlyPrice = StatisticsVM.GetDailyStatistics(date, time);
                Getvalues.Add(HourlyPrice);
                Price += HourlyPrice;
            }

            TotalPrice = Price.ToString() + "원";
        }