public TransactionRepository(Microsoft.Data.Entity.DbContext dataContext) : base(dataContext)
 {
 }
예제 #2
0
 public UserRepository(Microsoft.Data.Entity.DbContext dataContext) : base(dataContext)
 {
 }
예제 #3
0
 public Repository(Microsoft.Data.Entity.DbContext dataContext)
 {
     DbContext = (FamilyBudgetContext)dataContext;
     DbSet     = dataContext.Set <T>();
 }