Пример #1
0
 public EducationController(IEducationLogic educationLogic, ICourseLogic doctorLogic, IPaymentLogic paymentLogic, ReportLogic reportLogic)
 {
     _educationLogic = educationLogic;
     _courseLogic    = doctorLogic;
     _paymentLogic   = paymentLogic;
     _reportLogic    = reportLogic;
 }
Пример #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;
 }
Пример #3
0
 public EducationService(IEducationLogic educationLogic)
 {
     _educationLogic = educationLogic;
 }
 public EducationController(IEducationLogic educationLogic)
 {
     _educationLogic = educationLogic;
 }
Пример #5
0
 public ReportLogic(ICourseLogic doctorLogic, IEducationLogic visitLogic, IPaymentLogic paymentLogic)
 {
     this.doctorLogic  = doctorLogic;
     this.visitLogic   = visitLogic;
     this.paymentLogic = paymentLogic;
 }