Exemplo n.º 1
0
 public ImportController(IHostingEnvironment hostingEnvironment,
                         ITimeAppService timeAppService,
                         IJogadorAppService jogadorAppService,
                         ITemporadaJogadorAppService temporadaJogadorAppService,
                         ITemporadaTimeAppService temporadaTimeAppService)
 {
     _hostingEnvironment         = hostingEnvironment;
     _timeAppService             = timeAppService;
     _jogadorAppService          = jogadorAppService;
     _temporadaJogadorAppService = temporadaJogadorAppService;
     _temporadaTimeAppService    = temporadaTimeAppService;
 }
Exemplo n.º 2
0
 public TimeController(ITimeAppService timeAppService, ITemporadaTimeAppService temporataTimeAppService)
 {
     _timeAppService          = timeAppService;
     _temporataTimeAppService = temporataTimeAppService;
 }