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 } }