using Microsoft.EntityFrameworkCore; using NetinaShop.Domain.Entities.Brands; namespace NetinaShop.Repository.Handlers.Brands; public class UpdateBrandCommandHandler : IRequestHandler { private readonly IRepositoryWrapper _repositoryWrapper; public UpdateBrandCommandHandler(IRepositoryWrapper repositoryWrapper) { _repositoryWrapper = repositoryWrapper; } public async Task Handle(UpdateBrandCommand request, CancellationToken cancellationToken) { var ent = await _repositoryWrapper.SetRepository().TableNoTracking .FirstOrDefaultAsync(b => b.Id == request.Id, cancellationToken); if (ent == null) throw new AppException("Brand not found"); var newEnt = Brand.Create(request.PersianName,request.EnglishName, request.Description, request.HasSpecialPage, request.PageUrl); newEnt.Id = ent.Id; newEnt.CreatedAt = ent.CreatedAt; newEnt.CreatedBy = ent.CreatedBy; _repositoryWrapper.SetRepository().Update(newEnt); await _repositoryWrapper.SaveChangesAsync(cancellationToken); return true; } }