コード例 #1
0
        private void LoadLotSearch(XmlDocument xmlDoc, LotSearchConfigData configData)
        {
            XmlOldLotSearch xmlLotSearch = new XmlOldLotSearch();
            xmlLotSearch.LoadConfig(xmlDoc);

            configData.UseLimitedLotSearch = xmlLotSearch.UseLimitedLotSearch;
            configData.DaysBackward = xmlLotSearch.DaysBackward;
        }
コード例 #2
0
        private void SaveLotSearch(XmlDocument xmlDoc, LotSearchConfigData configData)
        {
            XmlOldLotSearch xmlLotSearch = new XmlOldLotSearch();

            xmlLotSearch.UseLimitedLotSearch = configData.UseLimitedLotSearch;
            xmlLotSearch.DaysBackward = configData.DaysBackward;

            xmlLotSearch.SaveConfig(xmlDoc);
        }