2021-02-02 12:19:59 -05:00
|
|
|
using Demo.Commands;
|
2021-02-02 01:05:48 -05:00
|
|
|
using Demo.Queries;
|
2021-02-02 12:19:59 -05:00
|
|
|
using FluentValidation;
|
|
|
|
using FluentValidation.AspNetCore;
|
2021-02-02 01:05:48 -05:00
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
using Microsoft.AspNetCore.HttpsPolicy;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using PoweredSoft.CQRS;
|
|
|
|
using PoweredSoft.CQRS.Abstractions;
|
|
|
|
using PoweredSoft.CQRS.AspNetCore.Mvc;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace Demo
|
|
|
|
{
|
|
|
|
public class Startup
|
|
|
|
{
|
|
|
|
public Startup(IConfiguration configuration)
|
|
|
|
{
|
|
|
|
Configuration = configuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
{
|
|
|
|
AddQueries(services);
|
2021-02-02 12:19:59 -05:00
|
|
|
AddCommands(services);
|
2021-02-02 01:05:48 -05:00
|
|
|
|
|
|
|
services.AddPoweredSoftCQRS();
|
|
|
|
services
|
|
|
|
.AddControllers()
|
2021-02-02 12:22:58 -05:00
|
|
|
.AddPoweredSoftQueries()
|
|
|
|
.AddPoweredSoftCommands()
|
2021-02-02 12:19:59 -05:00
|
|
|
.AddFluentValidation();
|
2021-02-02 01:05:48 -05:00
|
|
|
|
|
|
|
services.AddSwaggerGen();
|
|
|
|
}
|
|
|
|
|
2021-02-02 12:19:59 -05:00
|
|
|
private void AddCommands(IServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddCommand<CreatePersonCommand, CreatePersonCommandHandler>();
|
|
|
|
services.AddTransient<IValidator<CreatePersonCommand>, CreatePersonCommandValidator>();
|
|
|
|
|
|
|
|
services.AddCommand<EchoCommand, string, EchoCommandHandler>();
|
|
|
|
services.AddTransient<IValidator<EchoCommand>, EchoCommandValidator>();
|
|
|
|
}
|
|
|
|
|
2021-02-02 01:05:48 -05:00
|
|
|
private void AddQueries(IServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddQuery<PersonQuery, IQueryable<Person>, PersonQueryHandler>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
|
|
{
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
|
|
|
|
app.UseRouting();
|
|
|
|
|
|
|
|
app.UseAuthorization();
|
|
|
|
|
|
|
|
app.UseSwagger();
|
|
|
|
|
|
|
|
// Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.),
|
|
|
|
// specifying the Swagger JSON endpoint.
|
|
|
|
app.UseSwaggerUI(c =>
|
|
|
|
{
|
|
|
|
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
|
|
|
|
});
|
|
|
|
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
|
|
{
|
|
|
|
endpoints.MapControllers();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|