Esempio n. 1
0
 private void FrmPaciente_Load(object sender, EventArgs e)
 {
     try
     {
         _servi = new ServicioPaciente();
         _list  = _servi.GetLista();
         MostrarDatosEnGrilla();
     }
     catch (Exception exception)
     {
         Console.WriteLine(exception);
         throw;
     }
 }
Esempio n. 2
0
 public PacientesController()
 {
     _ServicioPaciente = new ServiciosPaciente();
 }