Inheritance: Entidad
 public SolicitudPlanilla(DateTime fechaCreacion, Planilla planilla, int idInscripcion, int idPersona)
 {
     this.fechaCreacion = fechaCreacion;
     this.planilla = planilla;
     this.idInscripcion = idInscripcion;
     this.idPersona = idPersona;
 }
 public SolicitudPlanilla(DateTime fechaRetiro, DateTime fechaReincorporacion, string motivo, Planilla planilla)
 {
     this.fechaRetiro = fechaRetiro;
     this.fechaReincorporacion = fechaReincorporacion;
     this.motivo = motivo;
     this.planilla = planilla;
 }
Example #3
0
 public SolicitudP(String fechaRetiro, String fechaReincorporacion, String motivo, Planilla planilla,int id)
 {
     this.fechaRetiro = fechaRetiro;
     this.fechaReincorporacion = fechaReincorporacion;
     this.motivo = motivo;
     this.planilla = planilla;
     this.id = id;
 }
 public SolicitudPlanilla(DateTime fechaCreacion, DateTime fechaRetiro, DateTime fechaReincorporacion,
     string motivo, Planilla planilla, int idInscripcion, int idPersona)
 {
     this.fechaCreacion = fechaCreacion;
     this.fechaRetiro = fechaRetiro;
     this.fechaReincorporacion = fechaReincorporacion;
     this.motivo = motivo;
     this.planilla = planilla;
     this.idInscripcion = idInscripcion;
     this.idPersona = idPersona;
 }