Esempio n. 1
0
 public UnitOfWork()
 {
     _context = new RemitEntities();
 }
Esempio n. 2
0
 public Repository(RemitEntities context)
 {
     this.Context = context;
     this.DbSet   = context.Set <T>();
 }