예제 #1
0
        //online Registration Applications

        public ActionResult OnlineRegApplications()
        {
            var finacialYear = _financialYearAppService.GetActiveFinancialYear();
            var userInfo     = _userAppService.GetLoggedInUser();
            var dealers      = _dealerAppService.GetRegApplicationByStation(_stationAppService.GetStation(userInfo.StationId), finacialYear);

            return(View(dealers));
        }