예제 #1
0
 public DashboardController(IUserService userService, ITourService tourService, IContactService contactService,
                            ICachingService cachingService, IReportService reportService, IActionService actionService, IMarketingMessageService marketingMessageService)
 {
     this.userService             = userService;
     this.tourService             = tourService;
     this.contactService          = contactService;
     this.cachingService          = cachingService;
     this.reportService           = reportService;
     this.actionService           = actionService;
     this.marketingMessageService = marketingMessageService;
 }
 public MarketingMessagesController(IAccountService accountService, IMarketingMessageService marketingService, ISubscriptionService subscriptionService)
 {
     this.accountService      = accountService;
     this.marketingService    = marketingService;
     this.subscriptionService = subscriptionService;
 }