32 lines
970 B
C#
32 lines
970 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_WIN_NEXT
|
|
{ /// <summary>
|
|
/// Adapter specializzato per ICOEL e le chiamate tramite DB per i dati
|
|
/// - accettazione lotti prodotto (frontiera / entrata ciliegie)
|
|
/// - export (totale per prodotti)
|
|
/// - tracciabilità (confezioni
|
|
/// </summary>
|
|
|
|
public class IobIcoelDb : IobGeneric
|
|
{
|
|
/// <summary>
|
|
/// Costruttore dell'IOB Icoel DB
|
|
/// </summary>
|
|
/// <param name="caller">AdapterForm chiamante</param>
|
|
/// <param name="IOBConf">Configurazione IOB per avvio</param>
|
|
public IobIcoelDb(AdapterForm caller, IobConfiguration IOBConf) : base(caller, IOBConf)
|
|
{
|
|
}
|
|
|
|
public override Dictionary<string, string> executeTasks(Dictionary<string, string> task2exe)
|
|
{
|
|
return base.executeTasks(task2exe);
|
|
}
|
|
}
|
|
}
|