コード例 #1
0
        public IActionResult Create()
        {
            ViewBag.employees = _employeeService.GetAllEmployeesForPayroll();
            ViewBag.taxYears  = _payComputationService.GetAllTaxYears();
            var model = new PaymentRecordCreateViewModel();

            return(View(model));
        }