DominioSKD.SolicitudPlanilla.SolicitudPlanilla C# (CSharp) Method

SolicitudPlanilla() public method

public SolicitudPlanilla ( System.DateTime fechaCreacion, System.DateTime fechaRetiro, System.DateTime fechaReincorporacion, string motivo, Planilla planilla, int idInscripcion, int idPersona ) : System
fechaCreacion System.DateTime
fechaRetiro System.DateTime
fechaReincorporacion System.DateTime
motivo string
planilla Planilla
idInscripcion int
idPersona int
return System
        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;
        }

Same methods

SolicitudPlanilla::SolicitudPlanilla ( ) : System
SolicitudPlanilla::SolicitudPlanilla ( System.DateTime fechaRetiro, System.DateTime fechaReincorporacion, string motivo, Planilla planilla ) : System
SolicitudPlanilla::SolicitudPlanilla ( System.DateTime fechaCreacion, Planilla planilla, int idInscripcion, int idPersona ) : System
SolicitudPlanilla::SolicitudPlanilla ( int id, System.DateTime fechaCreacion, System.DateTime fechaRetiro, System.DateTime fechaReincorporacion, string motivo, Planilla planilla, int idInscripcion, int idPersona ) : System
SolicitudPlanilla::SolicitudPlanilla ( int id, System.DateTime fechaCreacion, Planilla planilla, int idInscripcion, int idPersona ) : System
SolicitudPlanilla