Api/Netina.Repository/Handlers/Complexes/CreateOrUpdateComplexComman...

12 lines
374 B
C#
Raw Permalink Normal View History

using Netina.Domain.DocumentEntities.Complexes;
2024-01-22 17:31:35 +03:30
2024-04-16 20:01:34 +03:30
namespace Netina.Repository.Handlers.Complexes;
2024-01-22 17:31:35 +03:30
public class CreateOrUpdateComplexCommandHandler : IRequestHandler<CreateOrUpdateComplexCommand,Complex>
{
public Task<Complex> Handle(CreateOrUpdateComplexCommand request, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}