/// <remarks/>
 public System.IAsyncResult BeginAddInventoryLocation1(AddInventoryLocationSetupProtocol setupParam, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("AddInventoryLocation1", new object[] {
                 setupParam}, callback, asyncState);
 }
        internal Protocol.AddInventoryLocationSetupProtocol ToProtocol()
        {
            Protocol.AddInventoryLocationSetupProtocol protocol = new Protocol.AddInventoryLocationSetupProtocol();

            protocol.LocationName = this.LocationName;
            protocol.AccountType = this.AccountType;
            protocol.Description = this.Description;
            protocol.ReportsToLocation = this.ReportsToLocation;
            protocol.CapitalGLAccount = this.CapitalGLAccount;
            protocol.IsActive = this.IsActive;
            protocol.IsCompany = this.IsCompany;
            protocol.SiteIDNum = this.SiteIDNum;
            protocol.PartAuthorizationLevel = this.PartAuthorizationLevel;
            protocol.ConstructorCue = this.ConstructorCue;
            protocol.DirtyFieldFlags = this.DirtyFieldFlags;

            return protocol;
        }
 public ToolkitResultProtocol AddInventoryLocation(AddInventoryLocationSetupProtocol setupParam)
 {
     object[] results = this.Invoke("AddInventoryLocation1", new object[] {
                 setupParam});
     return ((ToolkitResultProtocol)(results[0]));
 }