Ejemplo n.º 1
0
 public HomeController(
     IFinancialYearAppService financialYearAppService,
     IUserAppService userAppService,
     IDealerAppService dealerAppService,
     IBillAppService billAppService,
     ILicenseAppService licenseAppService,
     IStationAppService stationAppService
     )
 {
     _financialYearAppService = financialYearAppService;
     _userAppService          = userAppService;
     _dealerAppService        = dealerAppService;
     _billAppService          = billAppService;
     _licenseAppService       = licenseAppService;
     _stationAppService       = stationAppService;
 }
Ejemplo n.º 2
0
 public BillsController(
     IBillAppService billAppService,
     IBillItemAppService billItemAppService,
     IDealerAppService dealerAppService,
     IDealerActivityAppService dealerActivityAppService,
     FinancialYearAppService financialYEarAppService,
     ILicenseAppService licenseAppService,
     IRevenueSourceAppService revenueSourceAppService,
     IUserAppService userAppService,
     IStationAppService stationAppService
     )
 {
     _billAppService           = billAppService;
     _billItemAppService       = billItemAppService;
     _dealerAppService         = dealerAppService;
     _dealerActivityAppService = dealerActivityAppService;
     _financialYearAppService  = financialYEarAppService;
     _licenseAppService        = licenseAppService;
     _revenueSourceAppService  = revenueSourceAppService;
     _userAppService           = userAppService;
     _stationAppService        = stationAppService;
 }
Ejemplo n.º 3
0
        // private readonly IMainRevenueSuorce mainRevenueSuorce;

        public TransitPassController(ITransitPass transitPass, IBillAppService billAppService, IApplicantService applicantService, IBillItemAppService billItemAppService,
                                     IActivityAppService activityAppService,
                                     IRevenueSourceAppService revenueSourceAppService,
                                     ILicenseAppService licenseAppService,
                                     IFinancialYearAppService financialYearAppService,
                                     IStationAppService stationAppService,
                                     IRegionAppService regionAppService,
                                     ICheckPointTransitPass checkPointTransitPass,
                                     IRepository <User, long> userRepository)
        {
            this.transitPass             = transitPass;
            this.billAppService          = billAppService;
            this.applicantService        = applicantService;
            this.billItemAppService      = billItemAppService;
            this.activityAppService      = activityAppService;
            this.revenueSourceAppService = revenueSourceAppService;
            this.licenseAppService       = licenseAppService;
            this.financialYearAppService = financialYearAppService;
            this.stationAppService       = stationAppService;
            this.regionAppService        = regionAppService;
            this.checkPointTransitPass   = checkPointTransitPass;
            _userRepository = userRepository;
            // this.mainRevenueSuorce = mainRevenueSuorce;
        }