public ExportAgencies(AgencyService agencyService, CodeService codeService) { _agencyService = agencyService; _codeService = codeService; }
public ImportAgencies(AgencyService agencyService) { _agencyService = agencyService; }
public AgencyController(AgencyService agencyService, CodeService codeService) { _agencies = agencyService; _codes = codeService; }
public HomeController(AgencyService agencyService, CodeService codeService, UserService userService) { _agencies = agencyService; _codes = codeService; _users = userService; }