コード例 #1
0
        public HistoriaClinica_Alta()
        {
            InitializeComponent();

            this.pacienteController     = new PacientesController();
            this.hClinicaController     = new HClinicaController();
            this.tratamientosController = new TratamientosController();
            this.medicasController      = new MedicasController();
            this.productosController    = new ProductosController();
            this.mediosPagoController   = new MediosPagoController();

            this.CargarFormatoVentana();
            this.CargarComboPacientes();
            this.CargarTratamientos();
            this.CargarProductos();
        }
コード例 #2
0
        public HistoriaClinica_Consulta()
        {
            InitializeComponent();

            this.PacienteController     = new PacientesController();
            this.hClinicaController     = new HClinicaController();
            this.tratamientosController = new TratamientosController();
            this.medicasController      = new MedicasController();
            this.productosController    = new ProductosController();

            this.CargarFormatoVentana();
            this.CargarFormateDatePicker();

            this.CargarComboPacientes();
            this.CargarComboMedicas();
            this.CargarComboTratamientos();
            this.CargarComboProductos();
        }