コード例 #1
0
 public JogoController(IJogoRepository jogoRepository, IJogoTimeService jogoTimeService, IJogoTimeRepository jogoTime, IJogoService jogo, ITimeRepository time, INarradorRepository narrador, IUsuarioService usuairo)
 {
     this._jogoService        = jogo;
     this._timeRepository     = time;
     this._narradorRepository = narrador;
     this._usuarioService     = usuairo;
     this._jogoTimeRepository = jogoTime;
     this._jogoTimeService    = jogoTimeService;
     this._jogoRepository     = jogoRepository;
 }
コード例 #2
0
 public JogoTimeService(IJogoTimeRepository jogoTimeRepository)
 {
     this._jogoTimeRepository = jogoTimeRepository;
 }