// This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { ServicesRegistrator.AddDatabase(services, Configuration); ServicesRegistrator.RegisterServices(services); ServicesRegistrator.AddMapper(services); ServicesRegistrator.AddJWTAuthentication(services, Configuration); services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Version = "v1", Title = "Checklist" }); }); services.AddControllers(); services.AddCors(); }