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; }
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; }