private void Refresh()
        {
            //refetch current records...
            long   selectedAutoID = SelectedCompanyType.AutoID;
            string autoIDs        = "";

            //bool isFirstItem = true;
            foreach (CompanyType item in CompanyTypeList)
            {//auto seeded starts at 1 any records at 0 or less or not valid records...
                if (item.AutoID > 0)
                {
                    autoIDs = autoIDs + item.AutoID.ToString() + ",";
                }
            }
            if (autoIDs.Length > 0)
            {
                //ditch the extra comma...
                autoIDs             = autoIDs.Remove(autoIDs.Length - 1, 1);
                CompanyTypeList     = new BindingList <CompanyType>(_serviceAgent.RefreshCompanyType(autoIDs).ToList());
                SelectedCompanyType = (from q in CompanyTypeList
                                       where q.AutoID == selectedAutoID
                                       select q).FirstOrDefault();
                Dirty       = false;
                AllowCommit = false;
            }
        }