public KynHealthAssessmentHelper(ICustomerRepository customerRepository, IHealthAssessmentService healthAssessmentService, IHealthAssessmentRepository healthAssessmentRepository, ICustomerHafQuestionService customerHafQuestionService,
                                  IOrganizationRoleUserRepository organizationRoleUserRepository)
 {
     _customerRepository             = customerRepository;
     _healthAssessmentService        = healthAssessmentService;
     _healthAssessmentRepository     = healthAssessmentRepository;
     _customerHafQuestionService     = customerHafQuestionService;
     _organizationRoleUserRepository = organizationRoleUserRepository;
 }
Beispiel #2
0
 public OnlineHealthAssessmentService(ICustomerHafQuestionService customerHafQuestionService, ICustomerRepository customerRepository,
                                      IEventCustomerPackageTestDetailService eventCustomerPackageTestDetailService,
                                      IEventPodRepository eventPodRepository, IHealthAssessmentService healthAssessmentService, ITempcartService tempcartService, ICustomerService customerService)
 {
     _customerHafQuestionService            = customerHafQuestionService;
     _customerRepository                    = customerRepository;
     _eventCustomerPackageTestDetailService = eventCustomerPackageTestDetailService;
     _eventPodRepository                    = eventPodRepository;
     _healthAssessmentService               = healthAssessmentService;
     _tempcartService = tempcartService;
     _customerService = customerService;
 }
Beispiel #3
0
 public HealthAssessmentController(ILogManager logManager, ICustomerHafQuestionService customerHafQuestionService, IHealthAssessmentService healthAssessmentService)
 {
     _customerHafQuestionService = customerHafQuestionService;
     _healthAssessmentService    = healthAssessmentService;
     _logger = logManager.GetLogger <HealthAssessmentController>();
 }