예제 #1
0
 public UserRepository(GameStoreContext context)
     : base(context)
 {
 }
예제 #2
0
 public UnitOfWork(GameStoreContext context)
 {
     this.Context = context;
 }
예제 #3
0
 public GeneroRepository(GameStoreContext context)
 {
     _context = context;
 }
예제 #4
0
 protected AbstractRepository(GameStoreContext context)
 {
     this.Context = context;
     this.DbSet   = context.Set <T>();
 }
예제 #5
0
 public GameRepository(GameStoreContext db) : base(db)
 {
     _db = db;
 }
 public GameService()
 {
     this.context = new GameStoreContext();
 }
 public JogoRepository(GameStoreContext context)
 {
     _context = context;
 }
 public ProfileController(GameStoreContext context)
 {
     _context = context;
 }
예제 #9
0
 public OrdersController(GameStoreContext context)
 {
     _context = context;
 }
예제 #10
0
 public GetGamesController(GameStoreContext context)
 {
     db = context;
 }
예제 #11
0
 public GameRepository(GameStoreContext gameStoreContext)
 {
     this.gameStoreContext = gameStoreContext;
 }
예제 #12
0
 public GamesController(GameStoreContext context)
 {
     _context = context;
 }
예제 #13
0
 public CommentService(GameStoreContext storeContext)
 {
     this.storeContext = storeContext ?? throw new ArgumentNullException(nameof(storeContext));
 }
예제 #14
0
 public UnitOfWork(GameStoreContext context, NORTHWNDContext nwndContext)
 {
     _context     = context;
     _nwndContext = nwndContext;
     AutomapperConfig.ConfigurationMapper();
 }
예제 #15
0
 public CartController(GameStoreContext context)
 {
     _context = context;
 }
예제 #16
0
 public GameRepository(GameStoreContext context)
 {
     this._context = context;
 }
예제 #17
0
 public UnitOfWork(GameStoreContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #18
0
 public CommonRepository(GameStoreContext db)
 {
     _sqlRepository   = new SQLRepository <T>(db);
     _logging         = new MongoRepository <Logging>();
     _mongoRepository = new MongoRepository <TD>();
 }
예제 #19
0
 public CreditCardController(GameStoreContext context)
 {
     _context = context;
 }
예제 #20
0
 public GameController(GameStoreContext context)
 {
     _context = context;
     util     = new UtilityClasses.Utilities(context);
 }
예제 #21
0
 public ValuesController(GameStoreContext db)
 {
     _db = db;
 }
 public ShoppingCartsService(GameStoreContext storeContext)
 {
     this.storeContext = storeContext ?? throw new ArgumentNullException(nameof(storeContext));
 }
예제 #23
0
 public TiendasController(GameStoreContext context)
 {
     _context = context;
 }
예제 #24
0
 public OrderRepository(GameStoreContext db)
 {
     _db = db;
 }
예제 #25
0
 public void ExceptionIfNullGameRepository()
 {
     GameStoreContext         context = null;
     GenericRepository <Game> repo    = new GenericRepository <Game>(context);
 }
예제 #26
0
 public GameDataService(GameStoreContext gameStoreContext)
     : base(gameStoreContext)
 {
 }
예제 #27
0
 public ConsolasController(GameStoreContext context)
 {
     _context = context;
 }
예제 #28
0
 public RegistrationController(GameStoreContext context)
 {
     db = context;
 }
예제 #29
0
 public JuegosController(GameStoreContext context)
 {
     _context = context;
 }
예제 #30
0
 public UnitOfWork(GameStoreContext db)
 {
     _db = db;
 }