示例#1
0
 public UserRepository(LicentaEntities dbContext) : base(dbContext)
 {
     this.dbContext = dbContext;
 }
 public ProductRepository(LicentaEntities dbContext) : base(dbContext)
 {
     this.dbContext = dbContext;
 }
示例#3
0
 public LicentaEntities Init()
 {
     return(this.dbContext ?? (dbContext = new LicentaEntities()));
 }
示例#4
0
 public WishlistRepository(LicentaEntities dbContext) : base(dbContext)
 {
     this.dbContext = dbContext;
 }
示例#5
0
 public TestRepository(LicentaEntities dbContext)
 {
     this.dbContext = dbContext;
 }
 public GenericRepository(LicentaEntities dbContext)
 {
     this.dbContext = dbContext;
 }