ea2f942f94
- Inizio modifiche - porting bootstrap + fontawesome - inizio editingdirectory
24 lines
445 B
C#
24 lines
445 B
C#
using Microsoft.AspNetCore.Components;
|
|
using MP.FileData.DatabaseModels;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Prog.Components
|
|
{
|
|
public partial class ArchiveEdit
|
|
{
|
|
|
|
[Parameter]
|
|
public MacchinaModel CurrRec { get; set; }
|
|
|
|
|
|
protected async void DoCancel()
|
|
{
|
|
await Task.Delay(1);
|
|
}
|
|
protected async void DoSave()
|
|
{
|
|
await Task.Delay(1);
|
|
}
|
|
|
|
}
|
|
} |