public ToolkitResultProtocol CreateQueue(CreateQueueSetupProtocol setupParam)
 {
     object[] results = this.Invoke("CreateQueue1", new object[] {
                 setupParam});
     return ((ToolkitResultProtocol)(results[0]));
 }
        internal Protocol.CreateQueueSetupProtocol ToProtocol()
        {
            Protocol.CreateQueueSetupProtocol protocol = new Protocol.CreateQueueSetupProtocol();

            protocol.Title = this.Title;
            protocol.IsPersonal = this.IsPersonal;
            protocol.Description = this.Description;
            protocol.AllowCR = this.AllowCR;
            protocol.AllowCase = this.AllowCase;
            protocol.AllowContract = this.AllowContract;
            protocol.AllowDialogue = this.AllowDialogue;
            protocol.AllowDemandDetail = this.AllowDemandDetail;
            protocol.AllowJob = this.AllowJob;
            protocol.AllowOpportunity = this.AllowOpportunity;
            protocol.AllowSolution = this.AllowSolution;
            protocol.AllowSubcase = this.AllowSubcase;
            protocol.AllowActionItem = this.AllowActionItem;
            protocol.Supervisor = this.Supervisor;
            protocol.ConstructorCue = this.ConstructorCue;
            protocol.DirtyFieldFlags = this.DirtyFieldFlags;

            return protocol;
        }
 /// <remarks/>
 public System.IAsyncResult BeginCreateQueue1(CreateQueueSetupProtocol setupParam, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("CreateQueue1", new object[] {
                 setupParam}, callback, asyncState);
 }