public bool AddContact(Contact contact) { var erroModel = clientObj.AddContact(contact); if (erroModel.Code == HttpStatusCode.OK) { return(true); } return(false); }