44 lines
1.7 KiB
C#
44 lines
1.7 KiB
C#
namespace Brizco.Repository.Handlers.Position;
|
|
|
|
public class CreatePositionCommandHandler : IRequestHandler<CreatePositionCommand, PositionSDto>
|
|
{
|
|
private readonly IRepositoryWrapper _repositoryWrapper;
|
|
private readonly ICurrentUserService _currentUserService;
|
|
|
|
public CreatePositionCommandHandler(IRepositoryWrapper repositoryWrapper, ICurrentUserService currentUserService)
|
|
{
|
|
_repositoryWrapper = repositoryWrapper;
|
|
_currentUserService = currentUserService;
|
|
}
|
|
public async Task<PositionSDto> Handle(CreatePositionCommand request, CancellationToken cancellationToken)
|
|
{
|
|
|
|
if (_currentUserService.ComplexId == null)
|
|
throw new AppException("ComplexId is null", ApiResultStatusCode.NotFound);
|
|
if (!Guid.TryParse(_currentUserService.ComplexId, out Guid complexId))
|
|
throw new AppException("ComplexId is wrong", ApiResultStatusCode.NotFound);
|
|
|
|
try
|
|
{
|
|
await _repositoryWrapper.BeginTransaction(cancellationToken);
|
|
var entity = Domain.Entities.Complex.Position
|
|
.Create(request.Title,
|
|
request.Description,
|
|
complexId,
|
|
request.SectionId);
|
|
|
|
//foreach (var userId in request.UserIds)
|
|
// entity.AddUser(userId);
|
|
|
|
_repositoryWrapper.SetRepository<Domain.Entities.Complex.Position>().Add(entity);
|
|
await _repositoryWrapper.SaveChangesAsync(cancellationToken);
|
|
await _repositoryWrapper.CommitAsync(cancellationToken);
|
|
return entity.AdaptToSDto();
|
|
}
|
|
catch (Exception)
|
|
{
|
|
await _repositoryWrapper.RollBackAsync(cancellationToken);
|
|
throw;
|
|
}
|
|
}
|
|
} |