Example #1
0
        /// <summary>
        /// This is the main publicly exposed method that returns a Tuple with strings for morning and afternoon shifts.
        /// </summary>
        /// <returns>Tuple containing names of selected employees</returns>
        public (string Morning, string Afternoon) SpinTheWheel()
        {
            ScheduleDay tmpDay = GetNextDay();

            return(tmpDay.MorningShiftEmployee.Name, tmpDay.AfternoonShiftEployee.Name);
        }