using GerstITS.Web.Api.Hosting; namespace GerstITS.Examples.Api { public class Program : ProgramBase { #region Methods public static void Main(string[] args) { Run(args); } protected override void ConfigureWebHost(IWebHostBuilder webHostBuilder) { webHostBuilder.UseStartup(); } #endregion } }