Beispiel #1
0
 public BaseController(IEducationService educationService, ILangaugeService langaugeService, IMapper mapper, ICertificateService certificateService)
 {
     _educationService   = educationService;
     _mapper             = mapper;
     _langaugeService    = langaugeService;
     _certificateService = certificateService;
 }
Beispiel #2
0
 public AdminCRUDController(IMapper mapper, IEducationService educationService, IWorkExperienceService workExperienceService,
                            IComputerTechnologyService computerTechnologyService, ILangaugeService langaugeService, ICertificateService certificateService)
 {
     _mapper                    = mapper;
     _educationService          = educationService;
     _workExperienceService     = workExperienceService;
     _computerTechnologyService = computerTechnologyService;
     _langaugeService           = langaugeService;
     _certificateService        = certificateService;
 }
Beispiel #3
0
 public DashboardController(IEducationService educationService, IWorkExperienceService workExperienceService,
                            IComputerTechnologyService computerTechnologyService, ILangaugeService miscellaneousInfoService, IMapper mapper, ICertificateService certificateService)
     : base(educationService, miscellaneousInfoService, mapper, certificateService)
 {
     _mapper = mapper;
     _computerTechnologyService = computerTechnologyService;
     _workExperienceService     = workExperienceService;
 }
Beispiel #4
0
 public AdminController(IEducationService educationService, ICertificateService certificateService, IComputerTechnologyService computerTechnologyService, IWorkExperienceService workExperienceService, ILangaugeService langaugeService, IMapper mapper)
     : base(educationService, langaugeService, mapper, certificateService)
 {
     _computerTechnologyService = computerTechnologyService;
     _workExperienceService     = workExperienceService;
     _mapper           = mapper;
     _educationService = educationService;
 }