/// <summary> /// Set the status of the UDO to closed. This operations is valid only for document-type UDOs /// </summary> /// <param name="paramName">Name of the key of the UDO: "DocEntry"</param> /// <param name="paramValue">Value of the key of the UDO</param> public void Close(string paramName, object paramValue) { var generalParams = GetDataInterface <GeneralDataParams>(GeneralServiceDataInterfaces.gsGeneralDataParams); generalParams.SetProperty(paramName, paramValue); _generalService.Close(generalParams); }