public CosmeticController(CosmeticContext context)
 {
     db = context;
 }
 //Phương thức khởi tạo
 public AccountTypeRep()
 {
     _context = new CosmeticContext(); //Sử dụng thay cho using var context
 }
Beispiel #3
0
 //Phương thức khởi tạo
 public CartRep()
 {
     _context = new CosmeticContext(); //Sử dụng thay cho using var context
 }
Beispiel #4
0
 //Phương thức khởi tạo
 public CategoryRep()
 {
     _context = new CosmeticContext();
 }
Beispiel #5
0
 //Phương thức khởi tạo
 public Personal_InformationRep()
 {
     _context = new CosmeticContext(); //Sử dụng thay cho using var context
 }
 //Phương thức khởi tạo
 public ProductRep()
 {
     _context = new CosmeticContext();
 }
Beispiel #7
0
 //Phương thức khởi tạo
 public OrderDetailsRep()
 {
     _context = new CosmeticContext(); //Sử dụng thay cho using var context
 }