コード例 #1
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;
 }
コード例 #2
0
 public CountryProgrammeController(IPermissionService permissionService, IUserContext userContext, ICountryProgrammeService _countryProgService,
                                   ILocationService locationService, ICountrySubOfficeService ctrySubOfficeService, IDesignationService designationService)
     : base(userContext, permissionService)
 {
     this.countryProgService   = _countryProgService;
     this.locationService      = locationService;
     this.ctrySubOfficeService = ctrySubOfficeService;
     this.designationService   = designationService;
 }