public IActionResult GetAllStrangers()
 {
     return(Ok(_repo.GetAll()));
 }
Ejemplo n.º 2
0
        public IActionResult GetAllStrangers()
        {
            var strangers = _repo.GetAll();

            return(Ok(strangers));
        }