Appointment constructor
      
      Appointment(
    
- ExchangeService service
Implementation
Appointment(ExchangeService service) : super(service) {
  // If we're running against Exchange 2007, we need to explicitly preset
  // the StartTimeZone property since Exchange 2007 will otherwise scope
  // start and end to UTC.
  if (service.RequestedServerVersion == ExchangeVersion.Exchange2007_SP1) {
    // TODO : repair time zone
//                this.StartTimeZone = service.TimeZone;
  }
}