public PendingCertificate(SignPrivateCertificateModel requestObject)
 {
     this.Id = Guid.NewGuid();
     this.CipherAlgorithm = requestObject.CipherAlgorithm;
     this.HashAlgorithm   = requestObject.HashAlgorithm;
     this.EncodedCsr      = requestObject.EncodedCsr;
     this.PendingCertificateRequestType = PendingCertificateRequestType.PublicKeySigningPrivateCa;
 }
 public PendingCertificateSigning(SignPrivateCertificateModel requestObject)
 {
     this.Id            = Guid.NewGuid();
     this.RequestObject = requestObject;
 }