using LiteCharms.Features.TechShop.CartPackages; using LiteCharms.Features.TechShop.Customers; using LiteCharms.Features.TechShop.Leads; using LiteCharms.Features.TechShop.Notifications; using LiteCharms.Features.TechShop.Orders; using LiteCharms.Features.TechShop.Products; using LiteCharms.Features.TechShop.Quotes; using LiteCharms.Features.TechShop.ShoppingCarts; namespace LiteCharms.Features.TechShop.Extensions; public static class Shop { public static IServiceCollection AddTechShopServices(this IServiceCollection services) { services.AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton(); return services; } }