admin adress

This commit is contained in:
Tizian.Breuch
2025-10-10 11:12:29 +02:00
parent 7c2521308f
commit 5f8d3c167c
6 changed files with 152 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
namespace Webshop.Api.Controllers.Admin
{
public class AdminAddressesController : Controller
{
public IActionResult Index()
{
return View();
}
}
}

View File

@@ -156,6 +156,7 @@ builder.Services.AddScoped<IReviewService, ReviewService>();
builder.Services.AddScoped<ICustomerReviewService, CustomerReviewService>();
builder.Services.AddScoped<IAdminReviewService, AdminReviewService>();
builder.Services.AddScoped<IAdminAnalyticsService, AdminAnalyticsService>();
builder.Services.AddScoped<IAdminAddressService, AdminAddressService>();
// Controller und API-Infrastruktur
builder.Services.AddControllers()