Exemplo n.º 1
0
        /// <summary>
        /// Create a list of Microsoft Band Calorie objects from the data read from the csv file selected by the user.
        /// </summary>
        /// <param name="csvReader">csv reader object</param>
        /// <param name="patientData">Patient data record that will be referenced by each microsoft band calories data record.</param>
        /// <param name="date">Date the data in the file was collected.</param>
        /// <returns></returns>
        public static List<MSBandCalories> BuildMSBandCalorieDataList(CsvReader csvReader, PatientData patientData, DateTime date)
        {
            List<MSBandCalories> msBandCalorieData = null;

            if (csvReader != null && patientData != null && patientData.Id != null) {
                msBandCalorieData = new List<MSBandCalories>();

                while (csvReader.ReadNextRecord()) {
                    if (csvReader != null) {
                        //File should read in the following order.
                        //Time | Total
                        string dateFormat = "HH:mm:ss";
                        string dateInfo = csvReader[0];
                        DateTime dateTime;
                        if (DateTime.TryParseExact(dateInfo, dateFormat, CultureInfo.InvariantCulture, DateTimeStyles.None, out dateTime)) {
                            date = new DateTime(date.Year, date.Month, date.Day, dateTime.Hour, dateTime.Minute, dateTime.Second);
                            MSBandCalories msBandCalories = new MSBandCalories() {
                                Date = date,
                                Total = Convert.ToInt32(csvReader[1]),
                                PatientDataId = patientData.Id
                            };
                            msBandCalorieData.Add(msBandCalories);
                        }
                    }
                }
            }

            return msBandCalorieData;
        }
Exemplo n.º 2
0
 /// <summary>
 /// Add a new Microsoft Band Calories data record to the database
 /// </summary>
 /// <param name="msBandCalories">MSBandCalories object to add to the database</param>
 public void CreateMSBandCalories(MSBandCalories msBandCalories)
 {
     if(msBandCalories != null) {
         _repository.Add(msBandCalories);
     }
 }