public ProjectLogic(IProjectRepository projectRepository, ITechnologyLogic technologyLogic, IMapper mapper, IIconLogic iconLogic)
 {
     _projectRepository = projectRepository;
     _technologyLogic   = technologyLogic;
     _mapper            = mapper;
     _iconLogic         = iconLogic;
 }
Exemple #2
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;
 }
Exemple #3
0
 public AboutMeController(IAboutMeLogic aboutMeLogic, ITechnologyLogic technologyLogic)
 {
     _aboutMeLogic    = aboutMeLogic;
     _technologyLogic = technologyLogic;
 }
Exemple #4
0
 public ProjectController(IProjectLogic projectLogic, ITechnologyLogic technologyLogic)
 {
     _projectLogic    = projectLogic;
     _technologyLogic = technologyLogic;
 }
Exemple #5
0
 public AdministratorPanelController(IProjectLogic projectLogic, ITechnologyLogic technologyLogic)
 {
     _projectLogic    = projectLogic;
     _technologyLogic = technologyLogic;
 }
 public TechnologiesController(ITechnologyLogic technologyLogic)
 {
     _technologyLogic = technologyLogic;
 }