예제 #1
0
 public TariffController(ITariffService tariffService,
                         ICountryService countryService,
                         ICurrencyService currencyService,
                         IAgentService agentService,
                         IRangeService rangeService)
 {
     _tariffService   = tariffService;
     _countryService  = countryService;
     _currencyService = currencyService;
     _agentService    = agentService;
     _rangeService    = rangeService;
 }
예제 #2
0
 public RangeController(IRangeService service)
 {
     _service = service;
 }