Exemple #1
0
 public Derecho_Habiente(string cuil, string apellido, DateTime fecha_nacimiento, DateTime fecha_fallecimiento,
                         decimal valorBrutoPrestacion, decimal valorNetoPrestacion, int ultimoPeriodoPago, Discapacidad discapacidad)
 {
     this.CUIL                 = cuil;
     this.Apellido             = apellido;
     this.Fecha_Nacimiento     = fecha_nacimiento;
     this.Fecha_Fallecimiento  = fecha_fallecimiento;
     this.ValorBrutoPrestacion = valorBrutoPrestacion;
     this.ValorNetoPrestacion  = valorNetoPrestacion;
     this.UltimoPeriodoPago    = ultimoPeriodoPago;
     this.Discapacidad         = discapacidad;
 }
Exemple #2
0
 public Derecho_Habiente()
 {
     this.Discapacidad = new Discapacidad();
 }