private void When(CalendarEntryScheduled e)
 {
     _tenant          = e.Tenant;
     _calendarId      = e.CalendarId;
     _calendarEntryId = e.CalendarEntryId;
     _description     = e.Description;
     _location        = e.Location;
     _owner           = e.Owner;
     _timeSpan        = e.TimeSpan;
     _repetition      = e.Repetition;
     _alarm           = e.Alarm;
     _invitees        = new HashSet <Participant>(e.Invitees ?? Enumerable.Empty <Participant>());
 }
 void When(CalendarEntryScheduled e)
 {
     this.tenant          = e.Tenant;
     this.calendarId      = e.CalendarId;
     this.calendarEntryId = e.CalendarEntryId;
     this.description     = e.Description;
     this.location        = e.Location;
     this.owner           = e.Owner;
     this.timeSpan        = e.TimeSpan;
     this.repetition      = e.Repetition;
     this.alarm           = e.Alarm;
     this.invitees        = new HashSet <Participant>(e.Invitees ?? Enumerable.Empty <Participant>());
 }
Beispiel #3
0
 void When(CalendarEntryScheduled e)
 {
     this.tenant = e.Tenant;
     this.calendarId = e.CalendarId;
     this.calendarEntryId = e.CalendarEntryId;
     this.description = e.Description;
     this.location = e.Location;
     this.owner = e.Owner;
     this.timeSpan = e.TimeSpan;
     this.repetition = e.Repetition;
     this.alarm = e.Alarm;
     this.invitees = new HashSet<Participant>(e.Invitees ?? Enumerable.Empty<Participant>());
 }