Example #1
0
 public HomeController(IHomePageSliderService homePageSliderService, ISiteIdentityService siteIdentityService, IAboutMeService aboutMeService, IContactInfoService contactInfoService, IArticleService articleService, IMessageService messageService, ICommentService commentService)
 {
     _homePageSliderService = homePageSliderService;
     _siteIdentityService   = siteIdentityService;
     _aboutMeService        = aboutMeService;
     _contactInfoService    = contactInfoService;
     _articleService        = articleService;
     _messageService        = messageService;
     _commentService        = commentService;
 }
Example #2
0
 public SiteIdentity(ISiteIdentityService siteIdentityService)
 {
     _siteIdentityService = siteIdentityService;
 }
Example #3
0
 public NavbarHeader(ISiteIdentityService siteIdentityService)
 {
     _siteIdentityService = siteIdentityService;
 }
Example #4
0
 public SiteIdentityController(ISiteIdentityService siteIdentityService)
 {
     _siteIdentityService = siteIdentityService;
 }