Example #1
0
 public ApplicantController(IApplicantService applicantService, IActivityAppService activityAppService, IBillAppService billAppService, IFinancialYearAppService financialYearAppService, IBillItemAppService billItemAppService, ITransitPass transitPass, IStationAppService stationAppService, ICheckPointTransitPass checkPointTransitPass, IRevenueSourceAppService revenueSourceAppService)
 {
     this.applicantService        = applicantService;
     this.activityAppService      = activityAppService;
     this.billAppService          = billAppService;
     this.financialYearAppService = financialYearAppService;
     this.billItemAppService      = billItemAppService;
     this.transitPass             = transitPass;
     this.stationAppService       = stationAppService;
     this.checkPointTransitPass   = checkPointTransitPass;
     this.revenueSourceAppService = revenueSourceAppService;
 }
Example #2
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;
        }