Inizio gestione mese

This commit is contained in:
Samuele Locatelli
2023-01-09 12:03:52 +01:00
parent b8609a3917
commit 17dfe8fc8a
2 changed files with 23 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<table class="table table-striped @MainCss">
<thead></thead>
<tr>
</tr>
</table>
@code {
/// <summary>
/// Css sfondo principale
/// default: bg-dark
/// </summary>
[Parameter]
public string MainCss { get; set } = "bg-dark";
[Parameter]
public DateOnly DtStart { get; set; } = DateOnly.FromDateTime(DateTime.Today);
[Parameter]
public DateOnly DtEnd { get; set; } = DateOnly.FromDateTime(DateTime.Today.AddMonths(1));
}