Example #1
0
        public IActionResult Transactions()
        {
            ViewData["Message"] = "This will be where all of the transactions are added, viewed and modified";
            Models.TransactionModel model = new Models.TransactionModel();


            model.Vendors  = vendorService.GetVendors();
            model.Coffers  = cofferService.GetMonthlyCoffers(DateTime.UtcNow.Month);
            model.Accounts = accountService.GetAccountsForTransactions();
            return(View(model));
        }