From 9b474a398bf82ebefbad28bc5801f560b7e7c4c4 Mon Sep 17 00:00:00 2001 From: Khwezi Mngoma Date: Sat, 13 Jun 2026 10:22:24 +0200 Subject: [PATCH] Removed automatic service registration for the CartService --- LiteCharms.Features.MidrandBooks/Payments/CartService.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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;