15 lines
355 B
C#
15 lines
355 B
C#
using Socialize.Api.Modules.Organizations.Services;
|
|
|
|
namespace Socialize.Api.Modules.Organizations;
|
|
|
|
public static class DependencyInjection
|
|
{
|
|
public static WebApplicationBuilder AddOrganizationsModule(
|
|
this WebApplicationBuilder builder)
|
|
{
|
|
builder.Services.AddScoped<OrganizationAccessService>();
|
|
|
|
return builder;
|
|
}
|
|
}
|