Exemple #1
0
        public IActionResult Index()
        {
            InvoiceRepo allInvoiceRepo = new InvoiceRepo(_context);
            var         invoices       = allInvoiceRepo.All();

            return(View(invoices));
        }