示例#1
0
 public FormController(IFamilyIntakeService familyIntakeService, IProgressNoteService progressNoteService, IEvaluationService evaluationService, IPsychiatricProgressNoteService psychiatricProgressNote, UserManager <ApplicationUser> userManager)
 {
     _familyIntakeService     = familyIntakeService;
     _progressNoteService     = progressNoteService;
     _evaluationService       = evaluationService;
     _psychiatricProgressNote = psychiatricProgressNote;
     _userManager             = userManager;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProgressNoteRuleEngine"/> class.
 /// </summary>
 /// <param name="progressNoteService">The progress note service.</param>
 public ProgressNoteRuleEngine(IProgressNoteService progressNoteService)
 {
     _progressNoteService = progressNoteService;
 }
 public ProgressNoteController(IProgressNoteService progressNoteService, IAppointmentService appointmentService, UserManager <ApplicationUser> userManager)
 {
     _progressNoteService = progressNoteService;
     _appointmentService  = appointmentService;
     _userManager         = userManager;
 }