Beispiel #1
0
        public bool AddContact(Contact contact)
        {
            var erroModel = clientObj.AddContact(contact);

            if (erroModel.Code == HttpStatusCode.OK)
            {
                return(true);
            }
            return(false);
        }