Пример #1
0
        public Program()
        {
            //Datalayer
            TeleMedUtilities    _teleMedDb          = new TeleMedUtilities();
            PatientMeasurements _patientMeasurement = new PatientMeasurements();
            ECGMeasurements     _ecgMeasurement     = new ECGMeasurements();
            ECGLeads            _ecgLead            = new ECGLeads();

            //Presentationlayer
            IForm _GUI = new Doctor.Program(_teleMedDb);

            _GUI.Start();
        }
        public Medical_Display(TeleMedUtilities teleMedDb)
        {
            _teleMedDb = teleMedDb;
            InitializeComponent();
            //ECG1Chart.EnableZoomAndPanControls(ChartCursorSelected, ChartCursorMoved,
            //    zoomChanged,
            //    new ChartOption()
            //    {
            //        ContextMenuAllowToHideSeries = true,
            //        XAxisPrecision = 0,
            //        YAxisPrecision = 2
            //    });

            // Client interface BUG:
            // OnAxisViewChang* is only called on Cursor_MouseUp,
            //  so the following events are never raised
            //ECG1Chart.AxisViewChanging += OnAxisViewChanges;
            //ECG1Chart.AxisViewChanged += OnAxisViewChanges;
        }
Пример #3
0
 public Program(TeleMedUtilities teleMedDb)
 {
     _teleMedDb = teleMedDb;
 }