13 lines
419 B
C#
13 lines
419 B
C#
using Netina.Domain.CommandQueries.Commands;
|
|
using Netina.Domain.DocumentEntities.Complexes;
|
|
|
|
namespace Netina.Repository.Handlers.Complexes;
|
|
|
|
public class CreateOrUpdateComplexCommandHandler : IRequestHandler<CreateOrUpdateComplexCommand,Complex>
|
|
{
|
|
|
|
public Task<Complex> Handle(CreateOrUpdateComplexCommand request, CancellationToken cancellationToken)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |