Beispiel #1
0
 public Internado(int idInternamiento, Pacient paciente, Service servicio, DateTime fechaIngreso, DateTime fechaSalida, Diagnostico diagnostico)
 {
     this.idInternamiento = idInternamiento;
     this.paciente = paciente;
     this.servicio = servicio;
     this.fechaIngreso = fechaIngreso;
     this.fechaSalida = fechaSalida;
     Diagnostico = diagnostico;
 }
Beispiel #2
0
 public Receta(int idReceta, Doctor doctor, Farmaco farmaco, Presentacion presentacion, Pacient pacient, int cantidad, DateTime fechaEmision)
 {
     IdReceta     = idReceta;
     Doctor       = doctor;
     Farmaco      = farmaco;
     Presentacion = presentacion;
     Pacient      = pacient;
     Cantidad     = cantidad;
     FechaEmision = fechaEmision;
 }