public FormController(IFamilyIntakeService familyIntakeService, IProgressNoteService progressNoteService, IEvaluationService evaluationService, IPsychiatricProgressNoteService psychiatricProgressNote, UserManager <ApplicationUser> userManager) { _familyIntakeService = familyIntakeService; _progressNoteService = progressNoteService; _evaluationService = evaluationService; _psychiatricProgressNote = psychiatricProgressNote; _userManager = userManager; }
/// <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; }