Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CaseRepository"/> class.
 /// </summary>
 /// <param name="_context">The context.</param>
 public CaseRepository(PcDbContext _context)
 {
     this._context = _context;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="StorageRepository"/> class.
 /// </summary>
 /// <param name="_context">The context.</param>
 public StorageRepository(PcDbContext _context)
 {
     this._context = _context;
 }
 public SinglePlayerController(PcDbContext pcDbContext)
 {
     DbContext = pcDbContext;
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MotherboardRepository"/> class.
 /// </summary>
 /// <param name="_context">The context.</param>
 public MotherboardRepository(PcDbContext _context)
 {
     this._context = _context;
 }
Esempio n. 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CPUCoolerRepository"/> class.
 /// </summary>
 /// <param name="_context">The context.</param>
 public CPUCoolerRepository(PcDbContext _context)
 {
     this._context = _context;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PowerSupplyRepository"/> class.
 /// </summary>
 /// <param name="_context">The context.</param>
 public PowerSupplyRepository(PcDbContext _context)
 {
     this._context = _context;
 }
Esempio n. 7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MemoryRepository"/> class.
 /// </summary>
 /// <param name="_context">The context.</param>
 public MemoryRepository(PcDbContext _context)
 {
     this._context = _context;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="VideoCardRepository"/> class.
 /// </summary>
 /// <param name="_context">The context.</param>
 public VideoCardRepository(PcDbContext _context)
 {
     this._context = _context;
 }