Ejemplo n.º 1
0
 protected RumInfo(RumType type, ExDateTime?originalStartTime)
 {
     this.Type = type;
     this.occurrenceOriginalStartTime = originalStartTime;
 }
Ejemplo n.º 2
0
 protected AttendeeRumInfo(RumType type, ExDateTime?originalStartTime) : base(type, originalStartTime)
 {
 }
Ejemplo n.º 3
0
 protected OrganizerRumInfo(RumType type, ExDateTime?originalStartTime, IList <Attendee> attendees) : base(type, originalStartTime)
 {
     this.AttendeeList = new List <Attendee>(attendees);
     this.AttendeeRequiredSequenceNumber = int.MinValue;
 }