Exemple #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;
 }
Exemple #2
0
 public ConfirgurationController(IConfirgurationService confirgurationService)
 {
     this.confirgurationService = confirgurationService;
 }
 public ConfirgurationController(IConfirgurationService confirgurationService, IDataContext context) : base(context)
 {
     this.confirgurationService = confirgurationService;
 }