Exemplo n.º 1
0
 public SchedulerEventDescription(
     SchedulerEventTypeEnum schedulerEventType
     )
 {
     SchedulerEventType = schedulerEventType;
     AdditionalInformation = null;
 }
Exemplo n.º 2
0
        public SchedulerEventDescription(
            SchedulerEventTypeEnum schedulerEventType,
            object additionalInformation
            )
        {
            if (additionalInformation == null)
            {
                throw new ArgumentNullException("additionalInformation");
            }

            SchedulerEventType = schedulerEventType;
            AdditionalInformation = additionalInformation;
        }