46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
using BinsTracker.INI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Tracker_GUI.Riempitori;
|
|
|
|
namespace Icoel.Soap
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
// setp 1: legge conf da file ini che si trovano in bin (riportati come conf principali)
|
|
Console.WriteLine("Loading Files...");
|
|
MyApp.Load();
|
|
|
|
// ora effettua lettura Varietà e Layout disponibili
|
|
|
|
try
|
|
{
|
|
var varList = MyApp.RecuperaVarietyLayout();
|
|
if (varList != null)
|
|
{
|
|
MyApp.DisplayVarietyLayout(varList);
|
|
}
|
|
|
|
MyApp.VerificaLottoCorrente();
|
|
|
|
MyApp.MettiLottoInCoda();
|
|
|
|
MyApp.VerificaLottoCorrente();
|
|
|
|
Console.WriteLine("Done.");
|
|
Console.ReadKey();
|
|
}
|
|
catch(Exception ex)
|
|
{
|
|
Console.WriteLine("ECCEZIONE" + ex.Message + ex.StackTrace);
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|
|
}
|