Esempio n. 1
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;
 }
Esempio n. 2
0
 public Interesteds(IInterestedService interestedService)
 {
     _interestedService = interestedService;
 }
Esempio n. 3
0
 public InterestServiceClient()
 {
     Impl = new InterestServiceImpl(new InterestRepository());
 }
Esempio n. 4
0
 public InterestedController(IInterestedService interestedService)
 {
     _interestedService = interestedService;
 }