Beispiel #1
0
 public IndexService(ICounterService counterService, IMonthlySubscriptionService monthlySubscriptionService,
                     IVipTicketService vipTicketService, ICommentService commentService, IFreeTipsService freeTipsService, IHtmlService htmlService)
 {
     _counterService             = counterService;
     _monthlySubscriptionService = monthlySubscriptionService;
     _vipTicketService           = vipTicketService;
     _commentService             = commentService;
     _freeTipsService            = freeTipsService;
     _htmlService = htmlService;
 }
Beispiel #2
0
 public AdminController(IControllerActionService controllerActionService, IHtmlService htmlService,
                        ICommentService commentService, ISeoService seoService, IMonthlySubscriptionService monthlySubscriptionService, IFreeTipsService freeTipsService, IVipTicketService vipTicketService)
 {
     _controllerActionService = controllerActionService;
     _htmlService             = htmlService;
     _commentService          = commentService;
     _seoService = seoService;
     _monthlySubscriptionService = monthlySubscriptionService;
     _freeTipsService            = freeTipsService;
     _vipTicketService           = vipTicketService;
 }
Beispiel #3
0
 public HomeController(IIndexService indexService, IVipTicketService vipTicketService,
                       IMonthlySubscriptionService monthlySubscriptionService, IFreeTipsService freeTipsService,
                       IHtmlService htmlService, IControllerActionService controllerActionService)
 {
     _indexService               = indexService;
     _vipTicketService           = vipTicketService;
     _monthlySubscriptionService = monthlySubscriptionService;
     _freeTipsService            = freeTipsService;
     _htmlService             = htmlService;
     _controllerActionService = controllerActionService;
 }