namespace HanaToolbox.Services.Interfaces; public interface IHdbClientLocator { /// Returns the resolved path to hdbsql. Throws if not found. string LocateHdbsql(string? configuredPath, string sid, string instanceNumber); /// Returns the resolved path to hdbuserstore. Throws if not found. string LocateHdbuserstore(string? configuredPath, string sid, string instanceNumber); }