Пример #1
0
        public static Schedule Create(
            TimeSpan startTime_ts,
            int numberOfDaysDelay_i,
            DateTime value_dt,
            bool value_b
        )
        {
            Schedule schedule = new Schedule(startTime_ts, numberOfDaysDelay_i);
            schedule.NextSendDate = value_dt;
            schedule.Enabled = value_b;
            return schedule;

            // TODO: Edit factory method of Schedule
            // This method should be able to configure the object in all possible ways.
            // Add as many parameters as needed,
            // and assign their values to each field by using the API.
        }
Пример #2
0
 public Schedule Constructor(TimeSpan startTime, int numberOfDaysDelay)
 {
     Schedule target = new Schedule(startTime, numberOfDaysDelay);
     return target;
     // TODO: add assertions to method ScheduleTest.Constructor(TimeSpan, Int32)
 }