public ActionResult <IEnumerable <ResidentModel> > GetAll()
        {
            var residents = _residentService.GetAll();

            return(Ok(residents));
        }