diff --git a/LiteCharms.Features.MidrandBooks/Payments/CartService.cs b/LiteCharms.Features.MidrandBooks/Payments/CartService.cs index 64d55bd..b78479c 100644 --- a/LiteCharms.Features.MidrandBooks/Payments/CartService.cs +++ b/LiteCharms.Features.MidrandBooks/Payments/CartService.cs @@ -1,5 +1,4 @@ -using LiteCharms.Features.Abstractions; -using LiteCharms.Features.Browser; +using LiteCharms.Features.Browser; using LiteCharms.Features.Hasher; using LiteCharms.Features.MidrandBooks.Authors.Models; using LiteCharms.Features.MidrandBooks.Payments.Models; @@ -7,7 +6,7 @@ using LiteCharms.Features.MidrandBooks.Products.Models; namespace LiteCharms.Features.MidrandBooks.Payments; -public sealed class CartService(LocalStorageService localStorage) : IService +public sealed class CartService(LocalStorageService localStorage) { private readonly string CartStorageKey = HashService.ToMd5Hash(nameof(Cart)).Value;