예제 #1
0
        public static void Main(string[] args)
        {
            var host = CreateHostBuilder(args).Build();

            using (var scope = host.Services.CreateScope())
            {
                var context = scope.ServiceProvider.GetRequiredService <eRestoranContext>();
                SetupService.Seed(context);
            }
            host.Run();
        }