コード例 #1
0
            ///<summary>Returns true if the recall will fit in the time slot and there are no other appointments in the slot.</summary>
            public bool IsApptSlotAvailable(Recall recall, long opNum, DateTime slotStart, DateTime slotEnd)
            {
                int minutes = RecallTypes.GetTimePattern(recall.RecallTypeNum).Length *PrefC.GetInt(PrefName.AppointmentTimeIncrement);

                return(IsApptSlotAvailable(minutes, opNum, slotStart, slotEnd));
            }