54249c1766
- primo rilascio.
23 lines
572 B
C#
23 lines
572 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ib.essetre.integration;
|
|
|
|
namespace ib.essetre.integration.egaltech
|
|
{
|
|
public class CallBack : ib.essetre.integration.ICallBack
|
|
{
|
|
public void Done(InOutParameters parameters)
|
|
{
|
|
Console.WriteLine("Finito ");
|
|
}
|
|
|
|
public void Progress(float value, string message)
|
|
{
|
|
Console.WriteLine(message + ": L'avanzamento è al " + value * 100 + "%");
|
|
}
|
|
}
|
|
}
|