WebApi + ClientApp, GraphQL, Reflection
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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 SportsCommandsHandler : GenericCommandHandler<Sport, SportDTO, int>
|
||||
{
|
||||
public SportsCommandsHandler(EventsContext ctx, ILogger<SportsCommandsHandler> logger, IMapper mapper)
|
||||
: base(ctx, logger, mapper)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user