コード例 #1
0
 public WarmupService(
     IMatchDal matchDal,
     IMatchService matchService)
 {
     _matchDal     = matchDal;
     _matchService = matchService;
 }
コード例 #2
0
 public MatchManager(IMatchDal matchDal)
 {
     _matchDal = matchDal;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of MatchController
 /// </summary>
 /// <param name="matchDal">The Match DAL</param>
 public MatchController(IMatchDal matchDal)
 {
     _matchDal = matchDal;
 }