18 lines
465 B
C#
18 lines
465 B
C#
// Auto-generiert von CreateWebshopFiles.ps1
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace Webshop.Application.Services.Admin
|
|
{
|
|
public class AdminDiscountService : IAdminDiscountService
|
|
{
|
|
// Fügen Sie hier Abhängigkeiten per Dependency Injection hinzu (z.B. Repositories)
|
|
|
|
// public AdminDiscountService(IYourRepository repository) { }
|
|
|
|
// Fügen Sie hier Service-Methoden hinzu
|
|
}
|
|
}
|