Example #1
0
        public ActionResult <string> Get(int id)
        {
            var res = _applicantManager.Get(id);

            return(res == null ? (ActionResult <string>)NotFound() : Ok(res));
        }