Exemplo n.º 1
0
 public FighterController(IFighterData db)
 {
     this.db = db;
 }
Exemplo n.º 2
0
 public FighterController(IFighterData fighterData, IBoutData boutData)
 {
     this.boutData    = boutData;
     this.fighterData = fighterData;
 }
Exemplo n.º 3
0
 public BoutsController(IFighterData fighterData, IBoutData boutData, IEloService eloService)
 {
     this.boutData    = boutData;
     this.fighterData = fighterData;
     this.eloService  = eloService;
 }