23 lines
482 B
C#
23 lines
482 B
C#
using Microsoft.AspNetCore.Components;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml;
|
|
|
|
namespace WebAedificaConfigurator
|
|
{
|
|
public partial class WebAedificaMaker
|
|
{
|
|
string text = "";
|
|
[Parameter]
|
|
public EventCallback<string> EC_OnSave { get; set; }
|
|
|
|
protected async Task DoSave()
|
|
{
|
|
await EC_OnSave.InvokeAsync(text);
|
|
}
|
|
}
|
|
}
|