Изображения в услугах, поиске, возможность открыть карточку услуги

This commit is contained in:
Халимов Рустам
2026-03-06 23:14:39 +03:00
parent 420a86b92f
commit f5e20c1fb2
16 changed files with 480 additions and 11 deletions
@@ -37,7 +37,8 @@ public class GetMyOffersQueryHandler : IRequestHandler<GetMyOffersQuery, Result<
offer.Description ?? string.Empty,
offer.Price,
offer.Attributes,
offer.IsActive
offer.IsActive,
offer.Images
)).ToList();
return Result<List<OfferDto>>.Success(list);
@@ -32,7 +32,8 @@ public class GetOfferByIdQueryHandler : IRequestHandler<GetOfferByIdQuery, Resul
offer.Description ?? string.Empty,
offer.Price,
offer.Attributes,
offer.IsActive
offer.IsActive,
offer.Images
);
return Result<OfferDto>.Success(dto);