Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public HomeController(ISkillService skillService, IHomePageSliderService homePageSliderService, IMessageService messageService, IEducationService educationService, IExperienceService experienceService, IInterestedService interestedService, IArticleService articleService, ICategoryService categoryService, IAdminService adminService)
 {
     _skillService          = skillService;
     _homePageSliderService = homePageSliderService;
     _messageService        = messageService;
     _educationService      = educationService;
     _experienceService     = experienceService;
     _interestedService     = interestedService;
     _articleService        = articleService;
     _categoryService       = categoryService;
     _adminService          = adminService;
 }
Ejemplo n.º 3
0
 public HomePageSliderController()
 {
     service = new HomePageSliderService();
 }
Ejemplo n.º 4
0
 public SliderController(IHomePageSliderService homePageSliderService)
 {
     _homePageSliderService = homePageSliderService;
 }