예제 #1
0
        public void AddTest()
        {
            ContactService service = new ContactService();

            service.Clear();

            var contact = GetContact();

            var id = service.Add(contact);

            Assert.IsTrue(id > 0);
        }