コード例 #1
0
        public ActionResult <PersonReadDto> GetClosestBirthdayPerson()
        {
            var person = _repo.GetClosestBirthdayPerson();

            return(Ok(person));
        }