dotnet-digital-ops/DigitalOps.CQRS/Services/Project/RegisterProjectServicesModule.cs

13 lines
335 B
C#

using Microsoft.Extensions.DependencyInjection;
using PoweredSoft.Module.Abstractions;
namespace DigitalOps.CQRS.Services.Project;
public class RegisterProjectServicesModule : IModule
{
public IServiceCollection ConfigureServices(IServiceCollection services)
{
services.AddScoped<ProjectService>();
return services;
}
}