public async Task <IActionResult> GetLandmark(int id) { var landmark = await _landmarkRepository.GetLandmark(id); return(Ok(landmark)); }