Updates RunRouteAction overloads to work better with MobileControl plugin

This commit is contained in:
Neil Dorin
2020-04-27 21:37:53 -06:00
parent d150e03bdd
commit f57ee74e8c
2 changed files with 23 additions and 8 deletions

View File

@@ -273,9 +273,9 @@ namespace PepperDash.Essentials
/// <param name="routeKey"></param>
/// <param name="souceListKey"></param>
/// <param name="successCallback"></param>
public void RunRouteAction(string routeKey, string souceListKey)
public void RunRouteAction(string routeKey, string sourceListKey)
{
throw new NotImplementedException();
RunRouteAction(routeKey, new Action(() => { }));
}
/// <summary>
@@ -284,9 +284,14 @@ namespace PepperDash.Essentials
/// <param name="routeKey"></param>
/// <param name="souceListKey"></param>
/// <param name="successCallback"></param>
public void RunRouteAction(string routeKey, string souceListKey, Action successCallback)
public void RunRouteAction(string routeKey, string sourceListKey, Action successCallback)
{
throw new NotImplementedException();
if (string.IsNullOrEmpty(sourceListKey))
{
RunRouteAction(routeKey, successCallback);
}
else
throw new NotImplementedException();
}
/// <summary>

View File

@@ -403,9 +403,14 @@ namespace PepperDash.Essentials
/// <param name="routeKey"></param>
/// <param name="souceListKey"></param>
/// <param name="successCallback"></param>
public void RunRouteAction(string routeKey, string souceListKey)
public void RunRouteAction(string routeKey, string sourceListKey)
{
throw new NotImplementedException();
if (string.IsNullOrEmpty(sourceListKey))
{
RunRouteAction(routeKey, new Action(() => { }));
}
else
throw new NotImplementedException();
}
/// <summary>
@@ -414,9 +419,14 @@ namespace PepperDash.Essentials
/// <param name="routeKey"></param>
/// <param name="souceListKey"></param>
/// <param name="successCallback"></param>
public void RunRouteAction(string routeKey, string souceListKey, Action successCallback)
public void RunRouteAction(string routeKey, string sourceListKey, Action successCallback)
{
throw new NotImplementedException();
if (string.IsNullOrEmpty(sourceListKey))
{
RunRouteAction(routeKey, successCallback);
}
else
throw new NotImplementedException();
}
/// <summary>