services public
This commit is contained in:
@@ -3,14 +3,14 @@ using Microsoft.AspNetCore.Identity;
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.IdentityModel.Tokens;
|
using Microsoft.IdentityModel.Tokens;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Webshop.Application.Services.Public; // Produktkatalog Service (jetzt ProductService)
|
using Webshop.Application.Services.Public;
|
||||||
using Webshop.Application.Services.Auth; // Auth Services
|
using Webshop.Application.Services.Auth;
|
||||||
using Webshop.Application.Services.Admin; // Admin Services
|
using Webshop.Application.Services.Admin;
|
||||||
using Webshop.Domain.Interfaces;
|
using Webshop.Domain.Interfaces;
|
||||||
using Webshop.Infrastructure.Data;
|
using Webshop.Infrastructure.Data;
|
||||||
using Webshop.Infrastructure.Repositories;
|
using Webshop.Infrastructure.Repositories;
|
||||||
using Microsoft.AspNetCore.HttpOverrides; // F<>r UseForwardedHeaders
|
using Microsoft.AspNetCore.HttpOverrides;
|
||||||
using Microsoft.Extensions.Logging; // F<>r ILogger
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
|||||||
12
Webshop.Application/Services/Admin/AdminProductService.cs
Normal file
12
Webshop.Application/Services/Admin/AdminProductService.cs
Normal file
@@ -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
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
12
Webshop.Application/Services/Admin/AdminUserService.cs
Normal file
12
Webshop.Application/Services/Admin/AdminUserService.cs
Normal file
@@ -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
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
12
Webshop.Application/Services/Auth/AuthService.cs
Normal file
12
Webshop.Application/Services/Auth/AuthService.cs
Normal file
@@ -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
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
12
Webshop.Application/Services/Auth/IAuthService.cs
Normal file
12
Webshop.Application/Services/Auth/IAuthService.cs
Normal file
@@ -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
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -15,9 +15,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Services\Auth\" />
|
|
||||||
<Folder Include="Services\Customer\" />
|
<Folder Include="Services\Customer\" />
|
||||||
<Folder Include="Services\Admin\" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
Reference in New Issue
Block a user