Beispiel #1
0
        internal bool AgregarDetalleFactura(int idFactura, string strDescripcion, double valorDetalle)
        {
            clsPersistenciaFactura objPersistenciaFactura = new clsPersistenciaFactura();
            bool retorno = false;

            try
            {
                retorno = objPersistenciaFactura.AgregarDetalleFactura("ServiciosBasicos",
                                                                       idFactura, strDescripcion, valorDetalle);
            }
            catch (Exception)
            {
                throw;
            }
            return(retorno);
        }