public ActionResult Index() { var model = _visits.GetAll().ToList(); return(View(model)); }
public async Task <IActionResult> GetAll() { return(Ok(await _Interface.GetAll())); }