public ActionResult <CheckIn> GetById(int id) { var checkIn = _checkInRepo.GetById(id); if (checkIn == null) { return(NotFound()); } return(checkIn); }