Files
Ai/TrafagSalesExporter/Services/ISharePointUploadService.cs
T
2026-04-13 14:37:21 +02:00

8 lines
337 B
C#

namespace TrafagSalesExporter.Services;
public interface ISharePointUploadService
{
Task UploadAsync(string tenantId, string clientId, string clientSecret, string siteUrl, string exportFolder, string land, string localFilePath);
Task TestConnectionAsync(string tenantId, string clientId, string clientSecret, string siteUrl);
}