示例#1
0
 public PaymentRepository(EntityDBContext context)
 {
     _entityContext = context;
 }
示例#2
0
 public CityOperator()
 {
     db = new EntityDBContext();
 }
示例#3
0
 public DeviceOperator()
 {
     db = new EntityDBContext();
 }
示例#4
0
 public CategoryRepository(EntityDBContext context)
 {
     _context = context;
 }
示例#5
0
 public ImageRepository(EntityDBContext context)
 {
     _context = context;
 }
 public GenaricRepository(EntityDBContext context)
 {
     this.Context = context;
     this._dbSet  = context.Set <T>();
 }
示例#7
0
 public ItemRepository(EntityDBContext context)
 {
     _context = context;
 }