public HomeController(IContentMenuReportService contentMenuReportService
   , IWebSiteLinkReportService webSiteLinkReportService
   , IOrderingReportService orderingReportService
   , IOrderingCommandService orderingCommandService
   , ISliderReportService sliderReportService
   , IOrderingDetailCommandService orderingDetailCommandService)
 {
   _orderingDetailCommandService = orderingDetailCommandService;
   _contentMenuReportService = contentMenuReportService;
   _webSiteLinkReportService = webSiteLinkReportService;
   _orderingReportService = orderingReportService;
   _orderingCommandService = orderingCommandService;
    _sliderReportService = sliderReportService;
  }
 public HomeController(IContentMenuReportService contentMenuReportService
                       , IWebSiteLinkReportService webSiteLinkReportService
                       , IOrderingReportService orderingReportService
                       , IOrderingCommandService orderingCommandService
                       , ISliderReportService sliderReportService
                       , IOrderingDetailCommandService orderingDetailCommandService)
 {
     _orderingDetailCommandService = orderingDetailCommandService;
     _contentMenuReportService     = contentMenuReportService;
     _webSiteLinkReportService     = webSiteLinkReportService;
     _orderingReportService        = orderingReportService;
     _orderingCommandService       = orderingCommandService;
     _sliderReportService          = sliderReportService;
 }
 public OrderingController(IOrderingCommandService orderingCommandService, IOrderingReportService orderingReportService)
 {
   _orderingReportService = orderingReportService;
   _orderingCommandService = orderingCommandService;
 }
 public OrderingController(IOrderingCommandService orderingCommandService, IOrderingReportService orderingReportService)
 {
     _orderingReportService  = orderingReportService;
     _orderingCommandService = orderingCommandService;
 }