Example #1
0
 public ExportAgencies(AgencyService agencyService, CodeService codeService)
 {
     _agencyService = agencyService;
     _codeService = codeService;
 }
Example #2
0
 public ImportAgencies(AgencyService agencyService)
 {
     _agencyService = agencyService;
 }
 public AgencyController(AgencyService agencyService, CodeService codeService)
 {
     _agencies = agencyService;
     _codes = codeService;
 }
Example #4
0
 public HomeController(AgencyService agencyService, CodeService codeService, UserService userService)
 {
     _agencies = agencyService;
     _codes = codeService;
     _users = userService;
 }