Exemplo n.º 1
0
 public UiNotificationService(IFlowManager flowManager, IFlowStateRepository flowStateRepository, IPatientDataRepository patientDataRepository)
 {
     this.FlowManager           = flowManager;
     this.flowStateRepository   = flowStateRepository;
     this.patientDataRepository = patientDataRepository;
 }
 public PatientBusinessLogic(IPatientDataRepository repo)
 {
     this._patientDataRepository = repo;
 }
 public PatientDataController(IPatientDataRepository repo)
 {
     _patientdatabase = repo;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Default constructor with dependencies
 /// </summary>
 /// <param name="repository">Repository interface dependency</param>
 /// <param name="unitOfWork">UnitOfWork interface dependency</param>
 public PatientDataService(IPatientDataRepository repository, IUnitOfWork unitOfWork)
 {
     _repository = repository;
     _unitOfWork = unitOfWork;
 }
Exemplo n.º 5
0
 public CustomActions(FlowDataCache flowDataCache, IPatientDataRepository patientDataRepository)
 {
     this.flowDataCache         = flowDataCache;
     this.patientDataRepository = patientDataRepository;
 }