This repository was archived by the owner on Nov 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +12
-6
lines changed
Infrastructure/Repositories
IntegrationEvents/EventHandling
Basket.UnitTests/Application Expand file tree Collapse file tree 8 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 33using Microsoft . AspNetCore . Authorization ;
44using Microsoft . AspNetCore . Mvc ;
55using Microsoft . eShopOnContainers . BuildingBlocks . EventBus . Abstractions ;
6+ using Microsoft . eShopOnContainers . Services . Basket . API . Infrastructure . Repositories ;
67using Microsoft . eShopOnContainers . Services . Basket . API . Model ;
78using Microsoft . eShopOnContainers . Services . Basket . API . Services ;
89using Microsoft . Extensions . Logging ;
9- using Serilog . Context ;
1010using System ;
1111using System . Net ;
1212using System . Threading . Tasks ;
Original file line number Diff line number Diff line change 1- using System . Collections . Generic ;
1+ using Microsoft . eShopOnContainers . Services . Basket . API . Model ;
2+ using System . Collections . Generic ;
23using System . Threading . Tasks ;
34
4- namespace Microsoft . eShopOnContainers . Services . Basket . API . Model
5+ namespace Microsoft . eShopOnContainers . Services . Basket . API . Infrastructure . Repositories
56{
67 public interface IBasketRepository
78 {
Original file line number Diff line number Diff line change 1- using Microsoft . Extensions . Logging ;
1+ using Microsoft . eShopOnContainers . Services . Basket . API . Model ;
2+ using Microsoft . Extensions . Logging ;
23using Newtonsoft . Json ;
34using StackExchange . Redis ;
45using System . Collections . Generic ;
56using System . Linq ;
67using System . Threading . Tasks ;
78
8- namespace Microsoft . eShopOnContainers . Services . Basket . API . Model
9+ namespace Microsoft . eShopOnContainers . Services . Basket . API . Infrastructure . Repositories
910{
1011 public class RedisBasketRepository : IBasketRepository
1112 {
Original file line number Diff line number Diff line change 11using Basket . API . IntegrationEvents . Events ;
22using Microsoft . eShopOnContainers . BuildingBlocks . EventBus . Abstractions ;
33using Microsoft . eShopOnContainers . Services . Basket . API ;
4- using Microsoft . eShopOnContainers . Services . Basket . API . Model ;
4+ using Microsoft . eShopOnContainers . Services . Basket . API . Infrastructure . Repositories ;
55using Microsoft . Extensions . Logging ;
66using Serilog . Context ;
77using System ;
Original file line number Diff line number Diff line change 11using Microsoft . eShopOnContainers . BuildingBlocks . EventBus . Abstractions ;
2+ using Microsoft . eShopOnContainers . Services . Basket . API . Infrastructure . Repositories ;
23using Microsoft . eShopOnContainers . Services . Basket . API . IntegrationEvents . Events ;
34using Microsoft . eShopOnContainers . Services . Basket . API . Model ;
45using Microsoft . Extensions . Logging ;
Original file line number Diff line number Diff line change 1919using Microsoft . eShopOnContainers . BuildingBlocks . EventBus . Abstractions ;
2020using Microsoft . eShopOnContainers . BuildingBlocks . EventBusRabbitMQ ;
2121using Microsoft . eShopOnContainers . BuildingBlocks . EventBusServiceBus ;
22+ using Microsoft . eShopOnContainers . Services . Basket . API . Infrastructure . Repositories ;
2223using Microsoft . eShopOnContainers . Services . Basket . API . IntegrationEvents . EventHandling ;
2324using Microsoft . eShopOnContainers . Services . Basket . API . IntegrationEvents . Events ;
2425using Microsoft . eShopOnContainers . Services . Basket . API . Model ;
Original file line number Diff line number Diff line change 11using Basket . FunctionalTests . Base ;
22using Microsoft . eShopOnContainers . Services . Basket . API ;
3+ using Microsoft . eShopOnContainers . Services . Basket . API . Infrastructure . Repositories ;
34using Microsoft . eShopOnContainers . Services . Basket . API . Model ;
45using Microsoft . Extensions . DependencyInjection ;
56using Microsoft . Extensions . Logging ;
Original file line number Diff line number Diff line change 44using Microsoft . AspNetCore . Mvc ;
55using Microsoft . eShopOnContainers . BuildingBlocks . EventBus . Abstractions ;
66using Microsoft . eShopOnContainers . Services . Basket . API . Controllers ;
7+ using Microsoft . eShopOnContainers . Services . Basket . API . Infrastructure . Repositories ;
78using Microsoft . eShopOnContainers . Services . Basket . API . Model ;
89using Microsoft . Extensions . Logging ;
910using Moq ;
You can’t perform that action at this time.
0 commit comments