//static public void Eliminar(Cpago_credito obj)
 //{
 //    string cmdtext = "SELECT id FROM [GASTOS-PAGOS] WHERE numero=" + obj.Numero;
 //    DataTable DT = cDatos.DevolverDatos(cmdtext);
 //    if (DT.Rows.Count != 0)
 //    {
 //        cmdtext = "DELETE FROM [GASTOS-PAGOS] WHERE numero=" + obj.Numero;
 //        cDatos.ActualizarDatos(cmdtext);
 //        foreach (DataRow R in DT.Rows)
 //        {
 //            cmdtext = "DELETE FROM GASTOS WHERE id=" + R[0].ToString();
 //            cDatos.ActualizarDatos(cmdtext);
 //        }
 //    }
 //    cmdtext = "DELETE FROM [PAGOS-CREDITOS] WHERE numero=" + obj.Numero;
 //    cDatos.ActualizarDatos(cmdtext);
 //    Actualizar = true;
 //}
 static public void ModificarGasto(Cgasto obj, Cforma_pago objformapago)
 {
     try
     {
         string cmdtxt = "UPDATE GASTOS SET id_concepto = " + obj.ID_Concepto() + ",importe=" + (obj.Importe.ToString()).Replace(",", ".") + ",id_forma_pago=" + objformapago.ID + " WHERE id=" + obj.Numero;
         cDatos.ActualizarDatos(cmdtxt);
         Actualizar = true;
     }
     catch
     {
         throw new ArgumentException("Error al modificar la operacion");
     }
 }
 static public void Agregar(Cgasto obj, Ccaja_diaria caja)
 {
     try
     {
         string cmdtxt = "INSERT INTO GASTOS (id,id_concepto,importe,id_caja_diaria,id_forma_pago) VALUES (" + obj.Numero + "," + obj.ID_Concepto() + "," + ((obj.Importe.ToString()).Replace(",", ".")) + "," + caja.ID + "," + (obj.FORMAPAGO()).ID + ")";
         cDatos.ActualizarDatos(cmdtxt);
         Actualizar = true;
     }
     catch
     {
         throw new ArgumentException("Error al cargar la operacion");
     }
 }