30 lines
495 B
C#
30 lines
495 B
C#
using GerstITS.IoC.DotNetCore;
|
|
|
|
namespace GerstITS.Examples.WebClient.Console;
|
|
|
|
internal class Program
|
|
{
|
|
#region Fields
|
|
|
|
private static readonly DotNetCoreApplicationBootstrapper _bootstrapper;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
static Program()
|
|
{
|
|
_bootstrapper = new DotNetCoreApplicationBootstrapper();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
private static void Main(string[] args)
|
|
{
|
|
_bootstrapper.Run();
|
|
}
|
|
|
|
#endregion
|
|
} |