예제 #1
0
 public FighterController(IFighterData db)
 {
     this.db = db;
 }
예제 #2
0
 public FighterController(IFighterData fighterData, IBoutData boutData)
 {
     this.boutData    = boutData;
     this.fighterData = fighterData;
 }
예제 #3
0
 public BoutsController(IFighterData fighterData, IBoutData boutData, IEloService eloService)
 {
     this.boutData    = boutData;
     this.fighterData = fighterData;
     this.eloService  = eloService;
 }