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