public GenericRepository(CurrencyExchangeDbContext context)
 {
     _context = context;
     _dbSet   = _context.Set <TEntity>();
 }
Пример #2
0
 public MiscellaneousCustomerRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
 public BrokerRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
Пример #4
0
 public CommodityCustomerRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
 public ExDeclarationRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
Пример #6
0
 public CurrencyRepository(CurrencyExchangeDbContext context)
     : base(context)
 {
 }
 public UserPermissionRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
 public CurrencySalePiDetailRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
 public UserRoleRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
 public CompanyRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
Пример #11
0
 public CurrencySaleExDecRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }
Пример #12
0
 public HistoryService(CurrencyExchangeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public FinancialPeriodRepository(CurrencyExchangeDbContext context) : base(context)
 {
     _context = context;
 }