public void Remove()
        {
            // Web Service of the Entity to be used
            Sync.WMS.WMSDataImportWS.DocDefinitionRequest wsEntity = new DocDefinitionRequest();

            //Required Fields
            wsEntity.ERPCompany = "DEMOWMS510";
            wsEntity.DocSeries  = "FA/2016";

            //Saving
            object result;

            result = m_WSClient.DeleteDocDefinition(wsEntity);
        }
        public void Change()
        {
            // Web Service of the Entity to be used
            Sync.WMS.WMSDataImportWS.DocDefinitionRequest wsEntity = new DocDefinitionRequest();

            //Required Fields
            wsEntity.ERPCompany = "DEMOWMS510";
            wsEntity.DocSeries  = "FA/2016";
            wsEntity.DocType    = DocTypeEnum.CLI_OUT;
            wsEntity.DocName    = "FActura Cliente";

            //Saving
            object result;

            result = m_WSClient.SaveDocDefinition(wsEntity);
        }