예제 #1
0
            public async Task <CQRSResult <AuthorGetDTO> > Handle(AuthorDeleteCommand request, CancellationToken cancellationToken)
            {
                var author = uow.AuthorsRepository.GetById(request.Id);

                if (author != null)
                {
                    uow.AuthorsRepository.Delete(author);
                }
                else
                {
                    return new AuthorGetDTO {
                               Id = request.Id
                    }
                }.AsResult(code: 404);
예제 #2
0
            public async Task <CQRSResult <AuthorGetDTO> > Handle(AuthorDeleteCommand request, CancellationToken cancellationToken)
            {
                var author = uow.AuthorsRepository.GetById(request.Id);

                if (author != null)
                {
                    uow.AuthorsRepository.Delete(author);
                }
                else
                {
                    return(AuthorGetMap.ToDTO(null).AsCQRSResult(code: 404));
                }
                await uow.Save(cancellationToken);

                return(AuthorGetMap.ToDTO(new Author {
                    Id = request.Id
                }));
            }