20 lines
565 B
Plaintext
20 lines
565 B
Plaintext
@page "/"
|
|
@using BuchhaltungBlazor.Services
|
|
|
|
<PageTitle>Index</PageTitle>
|
|
|
|
<h1>Hello, user.</h1>
|
|
Welcome to my bookings app.
|
|
<Paragraph>
|
|
<Button Color="Color.Primary" Clicked="@OnEnsureCreated">Ensure Created Database</Button>
|
|
<Button Color="Color.Secondary" Clicked="@OnMigrate">Migrate Database</Button>
|
|
</Paragraph>
|
|
|
|
@code {
|
|
private static void OnEnsureCreated() => GenericController.DeleteAndCreateDb();
|
|
|
|
private static async Task OnMigrate() {
|
|
await GenericController.Migrate();
|
|
Console.WriteLine("Migration done.");
|
|
}
|
|
} |