You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
653 B
C#
27 lines
653 B
C#
using Estsh.Core.Extensions;
|
|
using Estsh.Core.Quartz.EFContext;
|
|
using Estsh.Core.Quartz.Extensions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Estsh.Core.Web
|
|
{
|
|
public class Startup
|
|
{
|
|
public Startup(IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
public IConfiguration Configuration { get; }
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.MainStartup(Configuration);
|
|
}
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
app.MainAppBuilder(env);
|
|
}
|
|
}
|
|
}
|