WebApi + ClientApp, GraphQL, Reflection
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using AutoMapper;
|
||||
using Events.WebAPI.Contract.DTOs;
|
||||
using Events.WebAPI.Handlers.EF.CommandHandlers.Generic;
|
||||
using Events.WebAPI.Handlers.EF.Data.Postgres;
|
||||
using Events.WebAPI.Handlers.EF.Models;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace Events.WebAPI.Handlers.EF.CommandHandlers;
|
||||
|
||||
public class PeopleCommandsHandler : GenericCommandHandler<Person, PersonDTO, int>
|
||||
{
|
||||
public PeopleCommandsHandler(EventsContext ctx, ILogger<PeopleCommandsHandler> logger, IMapper mapper)
|
||||
: base(ctx, logger, mapper)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user