示例#1
0
 public PadTestRepository(ReadingSource callingSource)
 {
     _testResultFactory = new PadTestResultFactory();
     _testResultSynchronizationService = new PadTestResultSynchronizationService(callingSource);
     _callingSource = callingSource;
 }
示例#2
0
 public PadTestRepository(IPersistenceLayer persistenceLayer, ITestResultFactory testResultFactory, ITestResultSynchronizationService testResultSynchronizationService)
     : base(persistenceLayer)
 {
     _testResultFactory = testResultFactory;
     _testResultSynchronizationService = testResultSynchronizationService;
     _callingSource = ReadingSource.Manual;
 }
示例#3
0
 public AwvEchocardiogramTestRepository(ReadingSource callingSource)
 {
     _testResultFactory = new AwvEchocardiogramTestResultFactory();
     _testResultSynchronizationService = new AwvEchocardiogramTestResultSyncronizationService(callingSource);
     _callingSource = callingSource;
 }
 public AwvSubsequentTestRepository(ReadingSource callingSource)
 {
     _testResultFactory = new AwvSubsequentTestResultFactory();
     _testResultSynchronizationService = new AwvSubsequentTestResultSynchronizationService(callingSource);
     _callingSource = callingSource;
 }
示例#5
0
 public CholesterolTestRepository(ReadingSource callingSource)
 {
     _testResultFactory = new CholesterolTestResultFactory(true);
     _testResultSynchronizationService = new CholesterolTestResultSynchronizationService(callingSource);
     _callingSource = callingSource;
 }
 public RinneWeberHearingTestRepository(ReadingSource callingSource)
 {
     _testResultFactory = new RinneWeberHearingTestResultFactory();
     _testResultSynchronizationService = new RinneWeberHearingTestResultSynchronizationService(callingSource);
     _callingSource = callingSource;
 }
示例#7
0
 public QualityMeasuresTestRepository(ReadingSource callingSource)
 {
     _testResultFactory = new QualityMeasuresTestResultFactory();
     _testResultSynchronizationService = new QualityMeasuresTestResultSynchronizationService(callingSource);
     _callingSource = callingSource;
 }
示例#8
0
 public MenBloodPanelTestRepository(ReadingSource callingSource)
 {
     _testResultFactory = new MenBloodPanelTestResultFactory();
     _testResultSynchronizationService = new MenBloodPanelTestResultSynchronizationService(callingSource);
     _callingSource = callingSource;
 }
 public DiabeticNeuropathyTestRepository(ReadingSource callingSource)
 {
     _testResultFactory = new DiabeticNeuropathyTestResultFactory();
     _testResultSynchronizationService = new DiabeticNeuropathyTestResultSynchronizationService(callingSource);
     _callingSource = callingSource;
 }