示例#1
0
 public CountryRepository(LedgerLocationDbContext dbContext)
 {
     _dbSet = dbContext.Countries;
 }
示例#2
0
 public CityRepository(LedgerLocationDbContext dbContext)
 {
     _dbSet = dbContext.Cities;
 }
示例#3
0
 public StateRepository(LedgerLocationDbContext dbContext)
 {
     _dbSet = dbContext.States;
 }