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; }
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; }
// 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; }