public Boolean ingresarGasto(String numero, String concepto, Decimal monto, String vencimiento, int estado, int idcuenta)
        {
            serverFINTFachada.serverFINTFachada service = new serverFINTFachada.serverFINTFachada();
            int idUsuario = int.Parse(Controller.getInstancia().dsUsuario.Tables[0].Rows[0]["id"].ToString());

            return(service.ingresarGasto(numero, concepto, monto, vencimiento, estado, idUsuario, idcuenta));
        }
Exemplo n.º 2
0
 public Boolean ingresarGasto(String numero, String concepto, Decimal monto, String vencimiento, int estado, int idcuenta)
 {
     serverFINTFachada.serverFINTFachada service = new serverFINTFachada.serverFINTFachada();
     return(service.ingresarGasto(numero, concepto, monto, vencimiento, estado, IdUsuario, idcuenta));
 }