Exemplo n.º 1
0
 public MisTurnos()
 {
     bllTurnos        = new BLLTurno();
     bllNutricionista = new BLLNutricionista();
     InitializeComponent();
     setup();
 }
Exemplo n.º 2
0
 public GenerarTurno(Paciente paciente)
 {
     this.paciente    = paciente;
     this.bllTurno    = new BLLTurno();
     this.preferencia = "manana";
     InitializeComponent();
     setup();
 }
Exemplo n.º 3
0
 public IHttpActionResult GetTurno()
 {
     return(Ok(BLLTurno.ConsultarTurno()));
 }
Exemplo n.º 4
0
 public object ConsultarTurnos()
 {
     return(BLLTurno.ConsultarTurno());
 }