Beispiel #1
0
        /// <summary>
        /// Constructor to inject Country Service
        /// </summary>
        /// <param name="CountryService">Country Service Instance</param>

        public AccountController(ICountryService countryService, ISettingService settingService, IBranchService branchService, IFinancialYearService financialYearService, ICompanyService companyService, IUserCompanyService userCompanyService)
        {
            _countryService       = countryService;
            _branchService        = branchService;
            _settingService       = settingService;
            _financialYearService = financialYearService;
            _companyService       = companyService;
            _userCompanyService   = userCompanyService;
        }
 public BillingExpensesService(EFContext efContext,
                               IMapper mapper,
                               IFinancialYearService financialYearService,
                               ICostFormService costFormService,
                               IBillingExpenseBuilder builder,
                               IBillingExpenseCalculator calculator,
                               IBillingExpenseInterpolator interpolator,
                               ICostStageRevisionService costStageRevisionService)
 {
     _efContext                = efContext;
     _mapper                   = mapper;
     _financialYearService     = financialYearService;
     _costFormService          = costFormService;
     _builder                  = builder;
     _calculator               = calculator;
     _interpolator             = interpolator;
     _costStageRevisionService = costStageRevisionService;
 }
Beispiel #3
0
 public AdminController(IFinancialYearService financialYearService)
 {
     _financialYearService = financialYearService;
 }
 public FinancialYearController(IFinancialYearService service)
 {
     this.financialYearService = service;
 }