2025-01-03 15:38:14 -05:00
|
|
|
|
using CH.CQRS.Service.User;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2025-01-02 17:53:38 -05:00
|
|
|
|
using PoweredSoft.Module.Abstractions;
|
|
|
|
|
|
|
|
|
|
namespace CH.CQRS;
|
|
|
|
|
public class SharedModule : IModule
|
|
|
|
|
{
|
|
|
|
|
public IServiceCollection ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
2025-01-03 15:38:14 -05:00
|
|
|
|
services.AddScoped<UserService>();
|
2025-01-02 17:53:38 -05:00
|
|
|
|
return services;
|
|
|
|
|
}
|
|
|
|
|
}
|