Esempio n. 1
0
        public IActionResult GetAdress(string userName, int id)
        {
            var rent = _repo.GetRent(userName, id);

            if (rent == null)
            {
                return(NotFound());
            }
            return(Ok(_repo.GetAdress(userName, id)));
        }