mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
fix RunRouteAction methods
This commit is contained in:
parent
383777c0f5
commit
dbafce0aa8
1 changed files with 2 additions and 11 deletions
|
|
@ -404,14 +404,9 @@ namespace PepperDash.Essentials
|
||||||
/// <param name="souceListKey"></param>
|
/// <param name="souceListKey"></param>
|
||||||
/// <param name="successCallback"></param>
|
/// <param name="successCallback"></param>
|
||||||
public void RunRouteAction(string routeKey, string sourceListKey)
|
public void RunRouteAction(string routeKey, string sourceListKey)
|
||||||
{
|
|
||||||
if (string.IsNullOrEmpty(sourceListKey))
|
|
||||||
{
|
{
|
||||||
RunRouteAction(routeKey, new Action(() => { }));
|
RunRouteAction(routeKey, new Action(() => { }));
|
||||||
}
|
}
|
||||||
else
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
|
|
@ -420,13 +415,9 @@ namespace PepperDash.Essentials
|
||||||
/// <param name="souceListKey"></param>
|
/// <param name="souceListKey"></param>
|
||||||
/// <param name="successCallback"></param>
|
/// <param name="successCallback"></param>
|
||||||
public void RunRouteAction(string routeKey, string sourceListKey, Action successCallback)
|
public void RunRouteAction(string routeKey, string sourceListKey, Action successCallback)
|
||||||
{
|
|
||||||
if (string.IsNullOrEmpty(sourceListKey))
|
|
||||||
{
|
{
|
||||||
RunRouteAction(routeKey, successCallback);
|
RunRouteAction(routeKey, successCallback);
|
||||||
}
|
|
||||||
else
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue