Example #1
0
        public ActionResult CreateContact([FromBody] Details details)
        {
            var contact = contactListService.CreateContact(details);

            return(Created($"api/ContactList/GetContact/{contact.Id}", contact.Id));
        }