Esempio n. 1
0
        public GioHangController(IDonHangRepository repository, IMobileShopRepository shopRepo, ISanPhamRepository sp)

        {
            _repository        = repository;
            _shopRepo          = shopRepo;
            _sanPhamRepository = sp;
        }
 public SanPhamController(IMobileShopRepository shopRepo, ISanPhamService sanPhamService, IThongSoKiThuatService thongSoKiThuatService)
 {
     _shopRepo              = shopRepo;
     _sanPhamService        = sanPhamService;
     _thongSoKiThuatService = thongSoKiThuatService;
 }
 public SanPhamTheoGiaViewComponent(IMobileShopRepository _context)
 {
     context = _context;
 }
Esempio n. 4
0
 public TraLoiBinhLuanViewComponent(IMobileShopRepository _context)
 {
     context = _context;
 }
Esempio n. 5
0
 public HomeController(ClientDbContext context, IMobileShopRepository shopRepo)
 {
     _context   = context;
     dataAccess = new DataAccess();
     _shopRepo  = shopRepo;
 }
Esempio n. 6
0
 public SanPhamNoiBatViewComponent(IMobileShopRepository context, ISanPhamRepository _sp)
 {
     _context           = context;
     _sanPhamRepository = _sp;
 }
Esempio n. 7
0
 public CheckoutInfoViewComponent(IMobileShopRepository _context)
 {
     context = _context;
 }