mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-20 07:56:50 +00:00
feat: implement constructor for BridgeApi with key and name parameters
This commit is contained in:
parent
b64f63ac6b
commit
5a07e837ee
1 changed files with 12 additions and 1 deletions
|
|
@ -30,6 +30,17 @@ namespace PepperDash.Essentials.Core.Bridges
|
|||
{
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
/// <param name="key"></param>
|
||||
/// <param name="name"></param>
|
||||
protected BridgeApi(string key, string name) :
|
||||
base(key, name)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -58,7 +69,7 @@ namespace PepperDash.Essentials.Core.Bridges
|
|||
/// <param name="dc">Device configuration</param>
|
||||
/// <param name="eisc">EISC instance</param>
|
||||
public EiscApiAdvanced(DeviceConfig dc, BasicTriList eisc) :
|
||||
base(dc.Key)
|
||||
base(dc.Key, dc.Name)
|
||||
{
|
||||
JoinMaps = new Dictionary<string, JoinMapBaseAdvanced>();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue