Add TODOs for middleware, generic service, and CQRS

Added TODO comments in Program.cs for exception handling middleware, and in CatalogService.cs and ICatalogService.cs for creating a generic service and implementing CQRS with MediatR. No functional changes made.
This commit is contained in:
2026-01-16 13:34:23 +01:00
parent 15680746b0
commit 87031d2a0a
3 changed files with 5 additions and 0 deletions

View File

@@ -4,6 +4,8 @@ using DbFirst.Infrastructure;
using DbFirst.Infrastructure.Repositories;
using Microsoft.EntityFrameworkCore;
//TODO: create and add exception handling middleware
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.