RefactoringDI

This commit is contained in:
2026-04-13 14:37:21 +02:00
parent 9a93920b71
commit cf20bd94d0
541 changed files with 26821 additions and 243 deletions
@@ -0,0 +1,10 @@
using TrafagSalesExporter.Models;
namespace TrafagSalesExporter.Services;
public interface IHanaQueryService
{
List<SalesRecord> GetSalesRecords(HanaServer server, string schema, string tsc, string land, string dateFilter);
ConnectionTestResult TestConnectionDetailed(HanaServer server);
void TestConnection(HanaServer server);
}