コード例 #1
0
 public GamePiecesService(IWhoIzItDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public GameService(IWhoIzItDbContext context, INotificationService notificationService, IGamePiecesService gamePieceService)
 {
     _context = context;
     _notificationService = notificationService;
     _gamePiecesService = gamePieceService;
 }
コード例 #3
0
 public GamePiecesService()
 {
     _context = new WhoIzItDbContext();
 }
コード例 #4
0
 public GameService()
 {
     _context = new WhoIzItDbContext();
     _notificationService = new FacebookNotificationService();
     _gamePiecesService = new GamePiecesService();
 }