예제 #1
0
 public UnitOfWork(CustomerEFContext context)
 {
     _context = context;
 }
 public CustomerRepository(CustomerEFContext context)
     : base(context)
 {
 }
 public Repository(CustomerEFContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }