/// <remarks/>
 public System.IAsyncResult BeginPartTransfer2(PartTransferSetupProtocol setupParam, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("PartTransfer2", new object[] {
                 setupParam}, callback, asyncState);
 }
 public PartTransferResultProtocol PartTransfer(PartTransferSetupProtocol setupParam)
 {
     object[] results = this.Invoke("PartTransfer2", new object[] {
                 setupParam});
     return ((PartTransferResultProtocol)(results[0]));
 }
        internal Protocol.PartTransferSetupProtocol ToProtocol()
        {
            Protocol.PartTransferSetupProtocol protocol = new Protocol.PartTransferSetupProtocol();

            protocol.PartNumber = this.PartNumber;
            protocol.PartRevision = this.PartRevision;
            protocol.PartDomain = this.PartDomain;
            protocol.Quantity = this.Quantity;
            protocol.SerialNumber = this.SerialNumber;
            protocol.FromGood = this.FromGood;
            protocol.ToGood = this.ToGood;
            protocol.UserName = this.UserName;
            protocol.TransferDate = this.TransferDate;
            protocol.ReferenceIDNum = this.ReferenceIDNum;
            protocol.Notes = this.Notes;
            protocol.GenerateTimeBombs = this.GenerateTimeBombs;
            protocol.FromLocation = this.FromLocation;
            protocol.ToLocation = this.ToLocation;
            protocol.ConstructorCue = this.ConstructorCue;
            protocol.DirtyFieldFlags = this.DirtyFieldFlags;

            return protocol;
        }