public ReviewController(IReviewRepository reviewRepository, IUnitOfWork unitOfWork, HttpContextBase httpContext, ITagTinTucRepository tagTinTucRepository)
 {
     _reviewRepository    = reviewRepository;
     _unitOfWork          = unitOfWork;
     _httpContext         = httpContext;
     _tagTinTucRepository = tagTinTucRepository;
 }
Example #2
0
 public BiQuyetLamDepController(IDetailMenuRepository detailMenuRepository, IUnitOfWork unitOfWork, HttpContextBase httpContext, ITagTinTucRepository tagTinTucRepository, ISalePageRepository salePageRepository)
 {
     _detailMenuRepository = detailMenuRepository;
     _unitOfWork           = unitOfWork;
     _httpContext          = httpContext;
     _tagTinTucRepository  = tagTinTucRepository;
     _salePageRepository   = salePageRepository;
 }
 public TagController(IDanhSachTagRepository danhSachTagRepository, IMenuRepository menuRepository, IPromotionRepository promotionRepository, IDetailMenuRepository detailMenuRepository, ITagTinTucRepository tagTinTucRepository)
 {
     _danhSachTagRepository = danhSachTagRepository;
     _menuRepository        = menuRepository;
     _promotionRepository   = promotionRepository;
     _detailMenuRepository  = detailMenuRepository;
     _tagTinTucRepository   = tagTinTucRepository;
 }
Example #4
0
 public TinTucController(IDetailMenuRepository detailMenuRepository, IUnitOfWork unitOfWork, IMenuRepository menuRepository, IPromotionRepository promotionRepository, IReviewRepository reviewRepository, IDanhSachTagRepository danhSachTagRepository, ITagTinTucRepository tagTinTucRepository)
 {
     _detailMenuRepository  = detailMenuRepository;
     _unitOfWork            = unitOfWork;
     _menuRepository        = menuRepository;
     _promotionRepository   = promotionRepository;
     _reviewRepository      = reviewRepository;
     _danhSachTagRepository = danhSachTagRepository;
     _tagTinTucRepository   = tagTinTucRepository;
 }
Example #5
0
 public ReviewController(IUnitOfWork unitOfWork, IReviewRepository reviewRepository, ITagTinTucRepository tagTinTucRepository)
 {
     _unitOfWork          = unitOfWork;
     _reviewRepository    = reviewRepository;
     _tagTinTucRepository = tagTinTucRepository;
 }
 public TagTinTucController(IUnitOfWork unitOfWork, ITagTinTucRepository tagTinTucRepository)
 {
     _unitOfWork          = unitOfWork;
     _tagTinTucRepository = tagTinTucRepository;
 }