コード例 #1
0
 public DashBoardController(IPermissionService permissionService, IMasterBudgetService masterBudgetService,
                            IUserContext userContext, IGeneralHelperService generalHService)
     : base(userContext, permissionService)
 {
     this.masterBudgetService = masterBudgetService;
     m_UserContext            = userContext;
     this.generalHService     = generalHService;
 }
コード例 #2
0
 public MasterBudgetController(IPermissionService permissionService, IMasterBudgetService mbService, ICurrencyService _currencyService,
                               ICountryProgrammeService _countryProgmSvc, IUserContext userContext)
     : base(userContext, permissionService)
 {
     this.mbService           = mbService;
     this.currencyService     = _currencyService;
     this.countryProgrammeSvc = _countryProgmSvc;
 }
コード例 #3
0
 public MasterBudgetController(IPermissionService permissionService, IBudgetService budgetService, ICurrencyService currencyService,
                               IMasterBudgetService masterBudgetService, IProjectService projectService, IUserContext userContext)
     : base(userContext, permissionService)
 {
     this.budgetService       = budgetService;
     this.currencyService     = currencyService;
     this.masterBudgetService = masterBudgetService;
     this.projectService      = projectService;
 }
コード例 #4
0
ファイル: BudgetController.cs プロジェクト: rjakech/SCMS
 public BudgetController(IPermissionService permissionService, IBudgetService budgetService, IProjectService projectService, IMasterBudgetService masterBudgetService,
                         IExchangeRateService exchangeRateService, IStaffService staffService, IUserContext userContext, ICurrencyService currencyService,
                         IOrderRequest orderRequestService)
     : base(userContext, permissionService)
 {
     this.budgetService       = budgetService;
     this.masterBudgetService = masterBudgetService;
     this.projectService      = projectService;
     this.exchangeRateService = exchangeRateService;
     this.staffService        = staffService;
     this.currencyService     = currencyService;
     this.orderRequestService = orderRequestService;
 }