Beispiel #1
0
        public IActionResult Get(int id)
        {
            var person = _profileBusiness.FindById(id);

            if (person == null)
            {
                return(NotFound());
            }
            return(Ok(person));
        }