Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianEdwards committed Feb 11, 2024
1 parent 8bc12c5 commit f9be5a6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;

namespace eShop.Basket.API.Model;
namespace eShop.Basket.API.Models;

public class BasketItem : IValidatableObject
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace eShop.Basket.API.Model;
namespace eShop.Basket.API.Models;

public class CustomerBasket
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using eShop.Basket.API.Model;
using eShop.Basket.API.Models;

namespace eShop.Basket.API.Storage;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System.Text.Json;
using eShop.Basket.API.Model;
using eShop.Basket.API.Models;
using StackExchange.Redis;

namespace eShop.Basket.API.Storage;

public class RedisBasketStore(ILogger<RedisBasketStore> logger, IConnectionMultiplexer redis) : IBasketStore
public class RedisBasketStore(IConnectionMultiplexer redis) : IBasketStore
{
private readonly IDatabase _database = redis.GetDatabase();

Expand Down
2 changes: 1 addition & 1 deletion src/eShop.AppHost/eShop.AppHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Aspire.Hosting" />
<PackageReference Include="Aspire.Hosting" Version="8.0.0-preview.3.24105.21" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit f9be5a6

Please sign in to comment.