Example #1
0
        private bool DoUpdate()
        {
            TOutFallInfo outinfo = new TOutFallInfo(_dbpath, PassWord);
            TOutFallExtInfo outextinfo = new TOutFallExtInfo(_dbpath, PassWord);
            if (OutExtList == null || OutList == null)
                return false;
            bool b1 = outinfo.Update_OutFallInfo(OutList);
            bool b2 = outextinfo.Update_OutFallExtInfo(OutExtList);

            return b1 & b2;
        }