public LoginRepository(LIGDbEntities _context)
 {
     this._context = _context;
 }
 public LoginRepository()
 {
     this._context = new LIGDbEntities();
 }
示例#3
0
 public ProductRepository(LIGDbEntities _context)
 {
     this._context = _context;
 }
示例#4
0
 public ProductRepository()
 {
     this._context = new LIGDbEntities();
 }
 public CategoryRepository(LIGDbEntities _context)
 {
     this._context = _context;
 }
 public CategoryRepository()
 {
     this._context = new LIGDbEntities();
 }