Esempio n. 1
0
        public void UpdateStartAndEndTimes(string startMin, string startSec, string endMin, string endSec)
        {
            long   newStartMin = long.Parse(startMin);
            double newStartSec = double.Parse(startSec);
            long   newEndMin   = long.Parse(endMin);
            double newEndSec   = double.Parse(endSec);

            m_outputFiles.UpdateStartTime(index, ((newStartMin * 60) + newStartSec));
            m_outputFiles.UpdateEndTime(index, ((newEndMin * 60) + newEndSec));
        }