示例#1
0
 public BithermalCaloricModel(TabVM vm) : base(vm)
 {
     accNumberCol          = new DbColumn(0, "AccNumber", string.Empty);
     dateOfExamCol         = new DbColumn(1, "DateOfExam", string.Empty);
     isTestConductedCol    = new DbColumn(2, "TestConducted", string.Empty);
     isAirTestCol          = new DbColumn(3, "IsAirTest", string.Empty);
     isWaterTestCol        = new DbColumn(4, "IsWaterTest", string.Empty);
     nysStartMin30RtEarCol = new DbColumn(5, "NysStartMin30RtEar", string.Empty);
     nysStartSec30RtEarCol = new DbColumn(6, "NysStartSec30RtEar", string.Empty);
     nysEndMin30RtEarCol   = new DbColumn(7, "NysEndMin30RtEar", string.Empty);
     nysEndSec30RtEarCol   = new DbColumn(8, "NysEndSec30RtEar", string.Empty);
     nysStartMin30LtEarCol = new DbColumn(9, "NysStartMin30LtEar", string.Empty);
     nysStartSec30LtEarCol = new DbColumn(10, "NysStartSec30LtEar", string.Empty);
     nysEndMin30LtEarCol   = new DbColumn(11, "NysEndMin30LtEar", string.Empty);
     nysEndSec30LtEarCol   = new DbColumn(12, "NysEndSec30LtEar", string.Empty);
     nysStartMin44RtEarCol = new DbColumn(13, "NysStartMin44RtEar", string.Empty);
     nysStartSec44RtEarCol = new DbColumn(14, "NysStartSec44RtEar", string.Empty);
     nysEndMin44RtEarCol   = new DbColumn(15, "NysEndMin44RtEar", string.Empty);
     nysEndSec44RtEarCol   = new DbColumn(16, "NysEndSec44RtEar", string.Empty);
     nysStartMin44LtEarCol = new DbColumn(17, "NysStartMin44LtEar", string.Empty);
     nysStartSec44LtEarCol = new DbColumn(18, "NysStartSec44LtEar", string.Empty);
     nysEndMin44LtEarCol   = new DbColumn(19, "NysEndMin44LtEar", string.Empty);
     nysEndSec44LtEarCol   = new DbColumn(20, "NysEndSec44LtEar", string.Empty);
     canalParesisCol       = new DbColumn(21, "CanalParesis", string.Empty);
     dirPrepondCol         = new DbColumn(22, "DirPrepond", string.Empty);
 }
示例#2
0
 public SpeechModel(TabVM vm) : base(vm)
 {
     accNumberCol       = new DbColumn(0, "AccNumber", string.Empty);
     dateOfExamCol      = new DbColumn(1, "DateOfExam", string.Empty);
     isTestConductedCol = new DbColumn(2, "TestConducted", string.Empty);
     isRtEarTestCol     = new DbColumn(3, "IsRtEarTest", string.Empty);
     isLtEarTestCol     = new DbColumn(4, "IsLtEarTest", string.Empty);
     isBltTestCol       = new DbColumn(5, "IsBltTest", string.Empty);
     int0dBCol          = new DbColumn(6, "Int0dB", string.Empty);
     int1dBCol          = new DbColumn(7, "Int1dB", string.Empty);
     int2dBCol          = new DbColumn(8, "Int2dB", string.Empty);
     int3dBCol          = new DbColumn(9, "Int3dB", string.Empty);
     int4dBCol          = new DbColumn(10, "Int4dB", string.Empty);
     int5dBCol          = new DbColumn(11, "Int5dB", string.Empty);
     int6dBCol          = new DbColumn(12, "Int6dB", string.Empty);
     int7dBCol          = new DbColumn(13, "Int7dB", string.Empty);
     int8dBCol          = new DbColumn(14, "Int8dB", string.Empty);
     int9dBCol          = new DbColumn(15, "Int9dB", string.Empty);
     score0Col          = new DbColumn(16, "Score0", string.Empty);
     score1Col          = new DbColumn(17, "Score1", string.Empty);
     score2Col          = new DbColumn(18, "Score2", string.Empty);
     score3Col          = new DbColumn(19, "Score3", string.Empty);
     score4Col          = new DbColumn(20, "Score4", string.Empty);
     score5Col          = new DbColumn(21, "Score5", string.Empty);
     score6Col          = new DbColumn(22, "Score6", string.Empty);
     score7Col          = new DbColumn(23, "Score7", string.Empty);
     score8Col          = new DbColumn(24, "Score8", string.Empty);
     score9Col          = new DbColumn(25, "Score9", string.Empty);
     srtdBCol           = new DbColumn(26, "SrtdB", string.Empty);
     sdScoreCol         = new DbColumn(27, "SdScore", string.Empty);
     sdIntdBCol         = new DbColumn(28, "SdIntdB", string.Empty);
 }
示例#3
0
        private TabVM CreateTab(string name)
        {
            TabVM tab = new TabVM();

            tab.Name  = name;
            tab.Items = new List <KeyValueVO>(GetLevels(2, 2, true, name));
            return(tab);
        }
示例#4
0
 void ConvertPlusToNewTab(TabVM tab)
 {
     //Do things to make it a new tab.
     TabIndex++;
     tab.Header        = $"Tab {TabIndex}";
     tab.IsPlaceholder = false;
     tab.Content       = new ContentVM("Tab content", TabIndex);
 }
示例#5
0
        void AddNewPlusButton()
        {
            var plusTab = new TabVM()
            {
                Header        = "+",
                IsPlaceholder = true
            };

            Tabs.Add(plusTab);
        }
示例#6
0
 public PatientModel(TabVM vm) : base(vm)
 {
     accNumberCol        = new DbColumn(0, "AccNumber", string.Empty);
     dateOfExamCol       = new DbColumn(1, "DateOfExam", string.Empty);
     firstNameCol        = new DbColumn(2, "FirstName", string.Empty);
     middleNameCol       = new DbColumn(3, "MiddleName", string.Empty);
     lastNameCol         = new DbColumn(4, "LastName", string.Empty);
     titleCol            = new DbColumn(5, "Title", string.Empty);
     phoneCol            = new DbColumn(6, "Phone", string.Empty);
     dependeeNameCol     = new DbColumn(7, "DependeeName", string.Empty);
     dependeeRelationCol = new DbColumn(8, "DependeeRelation", string.Empty);
     addressCol          = new DbColumn(9, "Address", string.Empty);
     dateOfBirthCol      = new DbColumn(10, "DateOfBirth", string.Empty);
     sexCol              = new DbColumn(11, "Sex", string.Empty);
     professionCol       = new DbColumn(12, "Profession", string.Empty);
     hospitalIDCol       = new DbColumn(13, "HospitalID", string.Empty);
     symptomsCol         = new DbColumn(14, "Symptoms", string.Empty);
     symptomsRemarksCol  = new DbColumn(15, "SymptomsRemarks", string.Empty);
     diagnosesCol        = new DbColumn(16, "Diagnoses", string.Empty);
     diagnosisRemarksCol = new DbColumn(17, "DiagnosisRemarks", string.Empty);
     prescriptionCol     = new DbColumn(18, "Prescription", string.Empty);
 }
示例#7
0
 public ImpedanceModel(TabVM vm) : base(vm)
 {
     accNumberCol       = new DbColumn(0, "AccNumber", string.Empty);
     dateOfExamCol      = new DbColumn(1, "DateOfExam", string.Empty);
     isTestConductedCol = new DbColumn(2, "TestConducted", string.Empty);
     compNeg400RtEarCol = new DbColumn(3, "CompNeg400RtEar", string.Empty);
     compNeg400LtEarCol = new DbColumn(4, "CompNeg400LtEar", string.Empty);
     compNeg300RtEarCol = new DbColumn(5, "CompNeg300RtEar", string.Empty);
     compNeg300LtEarCol = new DbColumn(6, "CompNeg300LtEar", string.Empty);
     compNeg200RtEarCol = new DbColumn(7, "CompNeg200RtEar", string.Empty);
     compNeg200LtEarCol = new DbColumn(8, "CompNeg200LtEar", string.Empty);
     compNeg100RtEarCol = new DbColumn(9, "CompNeg100RtEar", string.Empty);
     compNeg100LtEarCol = new DbColumn(10, "CompNeg100LtEar", string.Empty);
     comp0RtEarCol      = new DbColumn(11, "Comp0RtEar", string.Empty);
     comp0LtEarCol      = new DbColumn(12, "Comp0LtEar", string.Empty);
     comp100RtEarCol    = new DbColumn(13, "Comp100RtEar", string.Empty);
     comp100LtEarCol    = new DbColumn(14, "Comp100LtEar", string.Empty);
     comp200RtEarCol    = new DbColumn(15, "Comp200RtEar", string.Empty);
     comp200LtEarCol    = new DbColumn(16, "Comp200LtEar", string.Empty);
     comp300RtEarCol    = new DbColumn(17, "Comp300RtEar", string.Empty);
     comp300LtEarCol    = new DbColumn(18, "Comp300LtEar", string.Empty);
     comp400RtEarCol    = new DbColumn(19, "Comp400RtEar", string.Empty);
     comp400LtEarCol    = new DbColumn(20, "Comp400LtEar", string.Empty);
     peakPresRtEarCol   = new DbColumn(21, "PeakPresRtEar", string.Empty);
     peakPresLtEarCol   = new DbColumn(22, "PeakPresLtEar", string.Empty);
     earCnlVolRtEarCol  = new DbColumn(23, "EarCnlVolRtEar", string.Empty);
     earCnlVolLtEarCol  = new DbColumn(24, "EarCnlVolLtEar", string.Empty);
     curveRtEarCol      = new DbColumn(25, "CurveRtEar", string.Empty);
     curveLtEarCol      = new DbColumn(26, "CurveLtEar", string.Empty);
     acRf500RtEarCol    = new DbColumn(27, "AcRf500RtEar", string.Empty);
     acRf500LtEarCol    = new DbColumn(28, "AcRf500LtEar", string.Empty);
     acRf1000RtEarCol   = new DbColumn(29, "AcRf1000RtEar", string.Empty);
     acRf1000LtEarCol   = new DbColumn(30, "AcRf1000LtEar", string.Empty);
     acRf2000RtEarCol   = new DbColumn(31, "AcRf2000RtEar", string.Empty);
     acRf2000LtEarCol   = new DbColumn(32, "AcRf2000LtEar", string.Empty);
     acRf4000RtEarCol   = new DbColumn(33, "AcRf4000RtEar", string.Empty);
     acRf4000LtEarCol   = new DbColumn(34, "AcRf4000LtEar", string.Empty);
 }
示例#8
0
 public TuningForkModel(TabVM vm) : base(vm)
 {
     accNumberCol       = new DbColumn(0, "AccNumber", string.Empty);
     dateOfExamCol      = new DbColumn(1, "DateOfExam", string.Empty);
     isTestConductedCol = new DbColumn(2, "TestConducted", string.Empty);
     wbr512RtEarCol     = new DbColumn(3, "Wbr512RtEar", string.Empty);
     wbr512LtEarCol     = new DbColumn(4, "Wbr512LtEar", string.Empty);
     rn256RtEarCol      = new DbColumn(5, "Rn256RtEar", string.Empty);
     rn256LtEarCol      = new DbColumn(6, "Rn256LtEar", string.Empty);
     rn512RtEarCol      = new DbColumn(7, "Rn512RtEar", string.Empty);
     rn512LtEarCol      = new DbColumn(8, "Rn512LtEar", string.Empty);
     rn1024RtEarCol     = new DbColumn(9, "Rn1024RtEar", string.Empty);
     rn1024LtEarCol     = new DbColumn(10, "Rn1024LtEar", string.Empty);
     swbRtEarCol        = new DbColumn(11, "SwbRtEar", string.Empty);
     swbLtEarCol        = new DbColumn(12, "SwbLtEar", string.Empty);
     abcRtEarCol        = new DbColumn(13, "AbcRtEar", string.Empty);
     abcLtEarCol        = new DbColumn(14, "AbcLtEar", string.Empty);
     stgRtEarCol        = new DbColumn(15, "StgRtEar", string.Empty);
     stgLtEarCol        = new DbColumn(16, "StgLtEar", string.Empty);
     tlRtEarCol         = new DbColumn(17, "TlRtEar", string.Empty);
     tlLtEarCol         = new DbColumn(18, "TlLtEar", string.Empty);
     glRtEarCol         = new DbColumn(19, "GlRtEar", string.Empty);
     glLtEarCol         = new DbColumn(20, "GlLtEar", string.Empty);
 }
示例#9
0
 protected TabModel(TabVM vm)
 {
     viewmodel = vm;
 }
示例#10
0
 public TabClosingMessage(TabVM closingTab)
 {
     ClosingTab = closingTab;
 }