@using CORE.Data.DbModels @using UI.Data @inject MessageService AppMServ

Selezione Data Riferimento

Selezionare la data desiderata
Data Target
@code { [Parameter] public EventCallback CloseReq { get; set; } [Parameter] public EventCallback WeekSelected { get; set; } /// /// Indico item selezionato /// protected async void DoClose() { await CloseReq.InvokeAsync(true); } /// /// Indico item selezionato /// protected async void DoSelection() { await WeekSelected.InvokeAsync(true); } protected DateTime TargetDate { get { return AppMServ.targetDate; } set { AppMServ.targetDate = value; } } }