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