Example #1
0
        private int clearTableDictPrj()
        {
            int iRes = 0;

            if (!(m_dictTableDictPrj == null))
            {
                iRes = m_dictTableDictPrj.Count;

                if (iRes > 0)
                {
                    m_dictTableDictPrj.Clear();
                }
                else
                {
                    ;
                }
            }
            else
            {
                iRes = -1;

                Logging.Logg().Error(string.Format(@"HandlerDbValues::Clear () - словарь со словарно-проектными величинами пуст...")
                                     , Logging.INDEX_MESSAGE.NOT_SET);
            }

            return(iRes);
        }
Example #2
0
 /// <summary>
 /// Очистить все словари/списки со словарно-проектными величинами
 /// </summary>
 public virtual void Clear()
 {
     m_dictTableDictPrj.Clear();
 }