public void GetAllAssociatesTest()
        {
            Associate associate = new Associate(connManager);
            DataSet   ds        = associate.GetAll();

            Assert.AreEqual(11, ds.Tables[0].Columns.Count);

            Dictionary <string, object> dic = new Dictionary <string, object>();

            dic.Add("IdCountry", 10);
            Associate a = new Associate();

            a.FillEditParameters(dic);
            ///a.IdCountry = 10 ???
        }