Aggiornati metodi async

This commit is contained in:
Annamaria Sassi
2026-02-04 18:16:30 +01:00
parent 7fbc1a5598
commit 62d9d2f5c8
19 changed files with 73 additions and 83 deletions
+2 -2
View File
@@ -32,14 +32,14 @@ namespace WebWindowComplex.Compo
/// Metodo per richiesta prossimo step
/// </summary>
/// <returns></returns>
private async Task RaiseNextStep(CompileStep cs, int indexStep)
private Task RaiseNextStep(CompileStep cs, int indexStep)
{
var Args = new DataNextStep
{
currCompileStep = cs,
index = indexStep,
};
await EC_NextStep.InvokeAsync(Args);
return EC_NextStep.InvokeAsync(Args);
}
//private async Task Remove(CompileStep cs, int indexStep)