예제 #1
0
파일: Cfdi.cs 프로젝트: njmube/cfdi
 static Cfdi()
 {
     Namespace = "http://www.sat.gob.mx/cfd/3";
     CertificadoPfxDefault = null;
     TimbradoDefault = null;
 }
예제 #2
0
파일: Cfdi.cs 프로젝트: njmube/cfdi
        public bool Timbrar(Timbrado timbrado)
        {
            Timbre t = timbrado.Timbrar(this);
            if(t == null)
                return false;

            this.Timbre = t;
            return true;
        }