public CareTeamSurveyController(ISurveyAppService serviceSurvey, IQuestionAppService serviceQuestion, IAnswerAppService serviceAnswer, ISurveyAnswerAppService serviceSurveyAnswer, IEmailSenderAppService emailSender)
 {
     _serviceSurvey = serviceSurvey;
     _serviceQuestion = serviceQuestion;
     _serviceAnswer = serviceAnswer;
     _serviceSurveyAnswer = serviceSurveyAnswer;
     _serviceEmailSender = emailSender;
     @ViewBag.HeadingTitle = "Care Team Survey";
 }
 public PCPSurveyController(ISurveyAppService serviceSurvey, IQuestionAppService serviceQuestion, IAnswerAppService serviceAnswer, ISurveyAnswerAppService serviceSurveyAnswer, IEmailSenderAppService emailSender)
 {
     _serviceSurvey = serviceSurvey;
     _serviceQuestion = serviceQuestion;
     _serviceAnswer = serviceAnswer;
     _serviceSurveyAnswer = serviceSurveyAnswer;
     _emailSender = emailSender;
     @ViewBag.HeadingTitle = "Partner Satisfaction Survey";
 }