Esempio n. 1
0
 public OrderController(ICookieHelper cookieHelper,
                        IAdvertisementPlanService advertisementPlanService,
                        IGraphicDesigningPlanService graphicDesigningPlanService)
 {
     _cookieHelper                = cookieHelper;
     _advertisementPlanService    = advertisementPlanService;
     _graphicDesigningPlanService = graphicDesigningPlanService;
 }
 public AdvertisementController(IAdvertisementPlanService advertisementPlanService, ICommentService commentService, IPageService pageService)
 {
     _advertisementPlanService = advertisementPlanService;
     _commentService           = commentService;
     _pageService = pageService;
 }