Example #1
0
 public CvLogic(IMapper mapper, IProjectLogic projectLogic, ITechnologyLogic technologyLogic, IAchievementLogic achievementLogic, IExtraInformationLogic extraInformationLogic, IEducationLogic educationLogic, IEmploymentHistoryLogic employmentHistoryLogic)
 {
     _mapper                 = mapper;
     _projectLogic           = projectLogic;
     _technologyLogic        = technologyLogic;
     _achievementLogic       = achievementLogic;
     _extraInformationLogic  = extraInformationLogic;
     _educationLogic         = educationLogic;
     _employmentHistoryLogic = employmentHistoryLogic;
 }
 public AchievementsController(IAchievementLogic achievementLogic)
 {
     _achievementLogic = achievementLogic;
 }
 public AchievementsModel(IAchievementLogic achievementLogic)
 {
     _achievementLogic = achievementLogic;
 }