Ejemplo n.º 1
0
 public CertificadoDeAutenticacion(DatosDeLaEmision losDatosDeLaEmision)
 {
     losDatos = losDatosDeLaEmision.DatosDeAutenticacion;
 }
Ejemplo n.º 2
0
 private static CertificadoDigital ObtengaElCertificadoDeFirma(DatosDeLaEmision losDatosDeLaEmision)
 {
     return(new CertificadoDeFirma(losDatosDeLaEmision).Generado());
 }
 public CertificadoDeFirma(DatosDeLaEmision losDatosDeLaEmision)
 {
     losDatos = losDatosDeLaEmision.DatosDeFirma;
 }
Ejemplo n.º 4
0
 public Emision(DatosDeLaEmision losDatosDeLaEmision)
 {
     laFechaActual = losDatosDeLaEmision.FechaActual;
     elCertificadoDeAutenticacion = ObtengaElCertificadoDeAutenticacion(losDatosDeLaEmision);
     elCertificadoDeFirma         = ObtengaElCertificadoDeFirma(losDatosDeLaEmision);
 }