mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 10:09:03 +00:00
13 lines
341 B
C#
13 lines
341 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Service.Breweries.DependencyInjection;
|
|
|
|
public static class BreweryServiceCollectionExtensions
|
|
{
|
|
public static IServiceCollection AddBreweryServices(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<IBreweryService, BreweryService>();
|
|
return services;
|
|
}
|
|
}
|