Files
Examples/GerstITS.Examples.WebClient.Console/Program.cs
2021-06-15 10:59:47 +02:00

32 lines
570 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
}
}