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