/// <param name="NroNota"></param> public static void CargarNotaVenta(DataSet DS, string NroNota) { if (NotaVentaAD.ValidarNotaVenta(NroNota) > 0) { NotaVentaAD.CargarNotaVenta(DS, NroNota); foreach (DataRow row in DS.Tables["Cliente"].Rows) row["Cuit"] = Seguridad.Desencriptar(Conversions.ToString(row["Cuit"])); foreach (DataRow row in DS.Tables["Producto"].Rows) row["Nombre"] = Seguridad.Desencriptar(Conversions.ToString(row["Nombre"])); foreach (DataRow row in DS.Tables["Detalle_NotaVenta"].Rows) row["Precio"] = Seguridad.Desencriptar(Conversions.ToString(row["Precio"])); } else { throw new WarningException(Negocios.My.Resources.ArchivoIdioma.NotaVentaNoExiste); } }
public static List<NotaVentaEN> CargarNotaVenta() { return NotaVentaAD.CargarNotaVenta(); }