public FighterController(IFighterData db) { this.db = db; }
public FighterController(IFighterData fighterData, IBoutData boutData) { this.boutData = boutData; this.fighterData = fighterData; }
public BoutsController(IFighterData fighterData, IBoutData boutData, IEloService eloService) { this.boutData = boutData; this.fighterData = fighterData; this.eloService = eloService; }