Implement CRUD operations for Brewery, including service and repository layers

This commit is contained in:
Aaron Po
2026-03-29 20:08:21 -04:00
parent 56c83db207
commit 1b467ac4f1
12 changed files with 296 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
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;
}
}