public void canCreateContactObject()
        {
            IContactFactory cf = new ContactFactory();
            Contact         c  = cf.createContact();

            Assert.IsNotNull(c);
            Assert.IsInstanceOf <Contact>(c);
        }