-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
36 lines (34 loc) · 1.07 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
namespace WindowsGoiaService
{
static class Program
{
#region Variables Globales
public static int CurrentCoop { get; set; }
public static string CurrentUrl { get; set; }
public static string CurrentUser { get; set; }
public static string CurrentPass { get; set; }
public static string CurrentToken { get; set; }
public static int minutosTratamiento { get; set; }
public static int minutosProduccion { get; set; }
#endregion
/// <summary>
/// Punto de entrada principal para la aplicación.
/// Simplemente hace una llamada al constructor del Servicio de Windows.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new MainService()
};
ServiceBase.Run(ServicesToRun);
}
}
}