コード例 #1
0
 public ChampionshipsController(ICreateChampionshipService createChampionshipService)
 {
     _createChampionshipService = createChampionshipService;
 }
コード例 #2
0
 public void SetUp()
 {
     _createChampionshipService = Substitute.For <ICreateChampionshipService>();
     _championshipsController   = new ChampionshipsController(_createChampionshipService);
 }