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