Ejemplo n.º 1
0
 public GenericRepository(NServiceBusPoCContext dbContext)
 {
     DbContext  = dbContext;
     _objectSet = DbContext.Set <TEntity>();
 }
Ejemplo n.º 2
0
 public ClubRepository(NServiceBusPoCContext dbContext) : base(dbContext)
 {
 }
 public AppConfigurationRepository(NServiceBusPoCContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 4
0
 public EmailConfirmationRepository(NServiceBusPoCContext dbContext) : base(dbContext)
 {
 }
Ejemplo n.º 5
0
 public GenericUoW(NServiceBusPoCContext entities, bool createTransaction = true)
 {
     this.entities        = entities;
     this.transactionOpen = createTransaction;
 }