/*public Emisor(string rfc, string regimen) {
         * atributos.Add("rfc", rfc);
         * regimenFiscal = regimen;
         * }*/

        public Emisor(string rfc, string nombre, string regimen)
        {
            atributos.Add("rfc", rfc);
            atributos.Add("nombre", nombre);
            regimenFiscal = new RegimenFiscal(regimen);
        }
 /*public Emisor(string rfc, string regimen) {
  atributos.Add("rfc", rfc);
  regimenFiscal = regimen;
   }*/
 public Emisor(string rfc, string nombre, string regimen)
 {
     atributos.Add("rfc", rfc);
      atributos.Add("nombre", nombre);
      regimenFiscal = new RegimenFiscal(regimen);
 }