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