/// <remarks/>
 public System.IAsyncResult BeginUpdateServiceInterruption1(UpdateServiceInterruptionSetupProtocol setupParam, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("UpdateServiceInterruption1", new object[] {
                 setupParam}, callback, asyncState);
 }
 public ToolkitResultProtocol UpdateServiceInterruption(UpdateServiceInterruptionSetupProtocol setupParam)
 {
     object[] results = this.Invoke("UpdateServiceInterruption1", new object[] {
                 setupParam});
     return ((ToolkitResultProtocol)(results[0]));
 }
        internal Protocol.UpdateServiceInterruptionSetupProtocol ToProtocol()
        {
            Protocol.UpdateServiceInterruptionSetupProtocol protocol = new Protocol.UpdateServiceInterruptionSetupProtocol();

            protocol.AppointmentObjid = this.AppointmentObjid;
            protocol.Description = this.Description;
            protocol.StartDate = this.StartDate;
            protocol.EndDate = this.EndDate;
            protocol.Duration = this.Duration;
            protocol.ServiceClass = this.ServiceClass;
            protocol.ServiceType = this.ServiceType;
            protocol.UserName = this.UserName;
            protocol.CreateDate = this.CreateDate;
            protocol.ConstructorCue = this.ConstructorCue;
            protocol.DirtyFieldFlags = this.DirtyFieldFlags;

            return protocol;
        }