Initial commit - ECommerce.RCL

This commit is contained in:
2026-08-05 21:16:01 +03:00
commit 6aae28d210
120 changed files with 12334 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using ECommerceModule.Services;
using Microsoft.Extensions.DependencyInjection;
namespace ECommerceModule.Config
{
public static class RegisterServices
{
public static IServiceCollection ECommerceModuleServices(this IServiceCollection services)
{
services.AddScoped<ShopStateService>();
services.AddScoped<ProductAPIConsumer>();
services.AddScoped<CategoryAPIConsumer>();
return services;
}
}
}