Esempio n. 1
0
 public HomeController(IContactService contactService, IStickyService stickyService, IBannerService bannerService, INewsService newsService, IEventsService eventsService, IConfirgurationService confirgurationService, IDataContext context)
 {
     this.contactService        = contactService;
     this.stickyService         = stickyService;
     this.bannerService         = bannerService;
     this.newsService           = newsService;
     this.eventsService         = eventsService;
     this.confirgurationService = confirgurationService;
     this.context = context;
 }
Esempio n. 2
0
 public StickyRegistrationController(IStickyService stickyService)
 {
     _stickyService = stickyService;
 }
 public StickyController(IStickyService stickyService, IDataContext context) : base(context)
 {
     this.stickyService = stickyService;
 }