11 lines
434 B
C#
11 lines
434 B
C#
namespace HanaToolbox.Services.Interfaces;
|
|
|
|
public interface IHdbClientLocator
|
|
{
|
|
/// <summary>Returns the resolved path to hdbsql. Throws if not found.</summary>
|
|
string LocateHdbsql(string? configuredPath, string sid, string instanceNumber);
|
|
|
|
/// <summary>Returns the resolved path to hdbuserstore. Throws if not found.</summary>
|
|
string LocateHdbuserstore(string? configuredPath, string sid, string instanceNumber);
|
|
}
|