public bool validaNfeProduto(SgvNfeProduto num_nfe) { if (num_nfe == null) { return(false); } else { return(true); } }
public List <SgvNfeProduto> listNfe(List <SgvNfeProduto> list) { for (int i = 0; i < list.Count; i++) { var nameSgvNfeProduto = new SgvNfeProduto(); nameXml = list[i].numero_nf.ToString() + ".xml"; } try { using (var writer = new StreamWriter(pathXml + nameXml)) { XmlSerializer xml = new XmlSerializer(typeof(List <SgvNfeProduto>)); xml.Serialize(writer, list); writer.Close(); } } catch (Exception ex) { throw ex; } return(list); }