Example #1
0
        public IActionResult Index()
        {
            List <Clientes> lstCliente = new List <Clientes>();

            lstCliente = dataAccess.GetAllClientes().ToList();

            return(View(lstCliente));
        }