OF-DL/Cajetan.OF-DL/Services/CajetanDownloadOrchestrationService.cs
2026-02-19 20:02:35 +01:00

7 lines
339 B
C#

namespace OF_DL.Services;
public class CajetanDownloadOrchestrationService(ICajetanApiService apiService, IConfigService configService, ICajetanDownloadService downloadService, ICajetanDbService dbService)
: DownloadOrchestrationService(apiService, configService, downloadService, dbService), ICajetanDownloadOrchestrationService
{
}