예제 #1
0
 public ApplicantController(
     IApplicationTypeService applicationTypeService,
     IRefIdentityAppService refIdentityService,
     IApplicantService applicantService,
     IDealerAppService dealerApptService,
     IActivityAppService activityAppService,
     IDealerActivityAppService dealerActivityAppService,
     IStationAppService stationAppService,
     IBillAppService billAppService,
     IFinancialYearAppService financialYearAppService,
     UserManager userManager,
     IUserAppService userAppService,
     RoleManager roleManager,
     IEmailSender emailSender
     )
 {
     _applicationTypeService   = applicationTypeService;
     _refIdentityService       = refIdentityService;
     _applicantService         = applicantService;
     _dealerAppService         = dealerApptService;
     _dealerActivityAppService = dealerActivityAppService;
     _activityAppService       = activityAppService;
     _stationAppService        = stationAppService;
     _billAppService           = billAppService;
     _financialYearAppService  = financialYearAppService;
     _userManager    = userManager;
     _userAppService = userAppService;
     _roleManager    = roleManager;
     _emailSender    = emailSender;
 }
예제 #2
0
 public BillController(IClientAppService clientAppService, IExchangeObjectAppService exchangeObjectAppService, IDepartmentAppService departmentAppService, IPlaceAppService placeAppService, IBillAppService billAppService)
 {
     _clientAppService         = clientAppService;
     _exchangeObjectAppService = exchangeObjectAppService;
     _departmentAppService     = departmentAppService;
     _placeAppService          = placeAppService;
     _billAppService           = billAppService;
 }
예제 #3
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;
 }
예제 #4
0
        public PaymentsController(
            IBillAppService billAppService,
            IDealerAppService dealerAppService,
            FinancialYearAppService financialYEarAppService,
            IUserAppService userAppService,
            IStationAppService stationAppService

            )
        {
            _billAppService          = billAppService;
            _dealerAppService        = dealerAppService;
            _financialYearAppService = financialYEarAppService;
            _userAppService          = userAppService;
            _stationAppService       = stationAppService;
        }
예제 #5
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;
 }
예제 #6
0
 public DealerActivitiesController(
     IBillAppService billAppService,
     IBillItemAppService billItemAppService,
     IDealerAppService dealerAppService,
     IDealerActivityAppService dealerActivityAppService,
     IActivityAppService activityAppService,
     IRevenueSourceAppService revenueSourceAppService
     )
 {
     _dealerAppService         = dealerAppService;
     _dealerActivityAppService = dealerActivityAppService;
     _activityAppService       = activityAppService;
     _billAppService           = billAppService;
     _billItemAppService       = billItemAppService;
     _revenueSourceAppService  = revenueSourceAppService;
 }
예제 #7
0
        public DealersController(
            IDealerAppService dealerAppService,
            IUserAppService userAppService,
            IStationAppService stationAppService,
            FinancialYearAppService financialYEarAppService,
            ICandidateAppService candidateAppService,
            IDealerActivityAppService dealerActivityAppService,
            IBillAppService billAppService,
            IBillItemAppService billItemAppService

            )
        {
            _dealerAppService         = dealerAppService;
            _financialYearAppService  = financialYEarAppService;
            _stationAppService        = stationAppService;
            _candidateAppService      = candidateAppService;
            _userAppService           = userAppService;
            _dealerActivityAppService = dealerActivityAppService;
            _billAppService           = billAppService;
            _billItemAppService       = billItemAppService;
        }
예제 #8
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;
 }
예제 #9
0
 public PlotAllocationController(
     IAllocatedPlotAppService allocatedPlotAppService,
     IPlotAppService plotAppService,
     IDealerAppService dealerAppService,
     IBillAppService billAppService,
     IUserAppService userAppService,
     IFinancialYearAppService financialYearAppService,
     IBillItemAppService billItemAppService,
     LicenseAppService licenseAppService,
     IRevenueSourceAppService revenueSourceAppService
     )
 {
     _allocatedPlotAppService = allocatedPlotAppService;
     _plotAppService          = plotAppService;
     _dealerAppService        = dealerAppService;
     _billAppService          = billAppService;
     _userAppService          = userAppService;
     _financialYearAppService = financialYearAppService;
     _billItemAppService      = billItemAppService;
     _licenseAppService       = licenseAppService;
     _revenueSourceAppService = revenueSourceAppService;
 }
예제 #10
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;
        }
 public PaymentNotificationController(IBillAppService billsInqueryAppService, ILogger <PaymentNotificationController> logger)
 {
     _billsInqueryAppService = billsInqueryAppService;
     _logger = logger;
 }
예제 #12
0
 public BillController(IBillAppService billAppService)
 {
     _billAppService = billAppService;
 }
예제 #13
0
 public PaymentController(IBillAppService billAppService, IOptionsSnapshot <RootConfigurations> rootConfiguration) : base(rootConfiguration)
 {
     _billsInqueryAppService = billAppService;
 }