public ActionResult <bool> Create(ContactModel model) { var response = _contactServices.AddContactDetails(model); if (response) { return(Ok(response)); } else { return(NotFound(response)); } }