using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IOB_UT_NEXT.Iob
{
///
/// Classe helper di tutti gli oggetti scadenze DateTime impiegate
///
public class DateTimeHelper
{
///
/// Data/ora ultimo avvio adapter
///
public DateTime AvvioAdp = DateTime.Now;
///
/// Data/ora ultimo spegnimento adapter
///
public DateTime StopAdp = DateTime.Now;
///
/// Indicazione VETO check status IOB x evitare loop troppo stretti...
///
public DateTime VetoCheckIOB = DateTime.Now.AddDays(-1);
///
/// Indicazione VETO check sync ricette x evitare loop troppo stretti...
///
public DateTime VetoCheckSyncRecipe = DateTime.Now.AddHours(-1);
}
}