Exemplo n.º 1
0
 public StockpriceRepository(AdminContextDB context)
 {
     this.context = context;
 }
Exemplo n.º 2
0
 public StockExchangeCompaniesRepository(AdminContextDB context)
 {
     this.context = context;
 }
 public CompanyRepository(AdminContextDB context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public IPODetailsRepository(AdminContextDB context)
 {
     this.context = context;
 }
Exemplo n.º 5
0
 public UploadRepository(AdminContextDB dbContext)
 {
     this.context = dbContext;
 }
 public SectorRepository(AdminContextDB context)
 {
     this.context = context;
 }
Exemplo n.º 7
0
 public void Setup()
 {
     context = new AdminContextDB(options);
     context.StockPrice.AddRange(GetStockPriceList());
     context.SaveChanges();
 }