diff --git a/Webshop.Api/Program.cs b/Webshop.Api/Program.cs index 47bbed7..4419a6d 100644 --- a/Webshop.Api/Program.cs +++ b/Webshop.Api/Program.cs @@ -3,14 +3,14 @@ using Microsoft.AspNetCore.Identity; using Microsoft.EntityFrameworkCore; using Microsoft.IdentityModel.Tokens; using System.Text; -using Webshop.Application.Services.Public; // Produktkatalog Service (jetzt ProductService) -using Webshop.Application.Services.Auth; // Auth Services -using Webshop.Application.Services.Admin; // Admin Services +using Webshop.Application.Services.Public; +using Webshop.Application.Services.Auth; +using Webshop.Application.Services.Admin; using Webshop.Domain.Interfaces; using Webshop.Infrastructure.Data; using Webshop.Infrastructure.Repositories; -using Microsoft.AspNetCore.HttpOverrides; // Für UseForwardedHeaders -using Microsoft.Extensions.Logging; // Für ILogger +using Microsoft.AspNetCore.HttpOverrides; +using Microsoft.Extensions.Logging; var builder = WebApplication.CreateBuilder(args); diff --git a/Webshop.Application/Services/Admin/AdminProductService.cs b/Webshop.Application/Services/Admin/AdminProductService.cs new file mode 100644 index 0000000..6146d30 --- /dev/null +++ b/Webshop.Application/Services/Admin/AdminProductService.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Webshop.Application.Services.Admin +{ + public class AdminProductService + { + } +} diff --git a/Webshop.Application/Services/Admin/AdminUserService.cs b/Webshop.Application/Services/Admin/AdminUserService.cs new file mode 100644 index 0000000..813551d --- /dev/null +++ b/Webshop.Application/Services/Admin/AdminUserService.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Webshop.Application.Services.Admin +{ + public class AdminUserService + { + } +} diff --git a/Webshop.Application/Services/Auth/AuthService.cs b/Webshop.Application/Services/Auth/AuthService.cs new file mode 100644 index 0000000..bd3e760 --- /dev/null +++ b/Webshop.Application/Services/Auth/AuthService.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Webshop.Application.Services.Auth +{ + public class AuthService + { + } +} diff --git a/Webshop.Application/Services/Auth/IAuthService.cs b/Webshop.Application/Services/Auth/IAuthService.cs new file mode 100644 index 0000000..82eceed --- /dev/null +++ b/Webshop.Application/Services/Auth/IAuthService.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Webshop.Application.Services.Auth +{ + public class IAuthService + { + } +} diff --git a/Webshop.Application/Webshop.Application.csproj b/Webshop.Application/Webshop.Application.csproj index 0baf47b..a1407df 100644 --- a/Webshop.Application/Webshop.Application.csproj +++ b/Webshop.Application/Webshop.Application.csproj @@ -15,9 +15,7 @@ - -