Пример #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;
 }
 public AboutMeController(IAboutMeService aboutMeService, IConfiguration configuration)
 {
     _aboutMeService = aboutMeService;
     _configuration  = configuration;
 }
Пример #3
0
 public AboutMeController(IAboutMeService aboutMeService)
 {
     _aboutMeService = aboutMeService;
 }