Exemplo n.º 1
0
        //IactionResult = Mesmo nome da classe View = Index/Create/Delete/Details
        public async Task <IActionResult> Index()
        {
            var list = await _operatorService.FindAllAsync();

            return(View(list));
        }