using Iob.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Iob.Adapter { public class Driver { /// /// Init classe /// public Driver() { } /// /// Metodo connessione /// public IobError Connect() { IobError libraryError = new IobError(IOB_ERROR_CODES.OK, "Connected"); return libraryError; } /// /// Metodo chiusura /// public IobError Dispose() { IobError libraryError = new IobError(IOB_ERROR_CODES.OK, "Disposed"); return libraryError; } } }