public FormDatHangController(IMenuRepository menuRepository, IDetailMenuCommentRepository detailMenuCommentRepository, IDetailMenuCommentItemRepository detailMenuCommentItemRepository, IUnitOfWork unitOfWork, IMenuOptionRepository menuOptionRepository, IPromotionDetailRepository promotionDetailRepository)
 {
     _menuRepository = menuRepository;
     _detailMenuCommentRepository     = detailMenuCommentRepository;
     _detailMenuCommentItemRepository = detailMenuCommentItemRepository;
     _unitOfWork                = unitOfWork;
     _menuOptionRepository      = menuOptionRepository;
     _promotionDetailRepository = promotionDetailRepository;
 }
Пример #2
0
 public OrderController(IMenuRepository menuRepository, IPromotionRepository promotionRepository, IProductStockSyncRepository productStockSyncRepository, IDetailMenuCommentRepository detailMenuCommentRepository, IDetailMenuCommentItemRepository detailMenuCommentItemRepository, IUnitOfWork unitOfWork, IKhoQuaTangRepository khoQuaTangRepository, IMenuOptionRepository menuOptionRepository)
 {
     _menuRepository                  = menuRepository;
     _promotionRepository             = promotionRepository;
     _productStockSyncRepository      = productStockSyncRepository;
     _detailMenuCommentRepository     = detailMenuCommentRepository;
     _detailMenuCommentItemRepository = detailMenuCommentItemRepository;
     _unitOfWork           = unitOfWork;
     _khoQuaTangRepository = khoQuaTangRepository;
     _menuOptionRepository = menuOptionRepository;
 }
 public ThongKeDonHangController(IDetailMenuCommentRepository menuCommentRepository, IDetailMenuCommentItemRepository detailMenuCommentItemRepository, IMenuRepository menuRepository)
 {
     _menuCommentRepository           = menuCommentRepository;
     _detailMenuCommentItemRepository = detailMenuCommentItemRepository;
     _menuRepository = menuRepository;
 }