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