Files
tiku-backend.net/Tiku.Infrastructure/Commerce/CommerceAdminService.cs
xiong c497a3ca8d
Some checks failed
ci / release-gate (push) Has been cancelled
清理代码
2026-08-03 12:31:39 +08:00

17 lines
576 B
C#

using Tiku.Application.Commerce;
using Tiku.Application.Jobs;
using Tiku.Application.Security;
using Tiku.Application.Tenancy;
using Tiku.Infrastructure.Persistence;
namespace Tiku.Infrastructure.Commerce;
internal sealed partial class CommerceAdminService(
TikuDbContext dbContext,
ITenantSecretProtector tenantSecretProtector,
ITenantExternalProviderConfigService providerConfigService,
ICurrentAccessContext currentAccessContext,
IBackgroundJobQueue backgroundJobQueue,
IBackgroundJobOperations backgroundJobOperations) : ICommerceAdminService
{
}