2024-05-07 11:01:55 +03:30
|
|
|
|
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();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|