clean up server

This commit is contained in:
Jonathan Jenne
2023-11-06 10:46:02 +01:00
parent 0b6eecc534
commit bbfbe3a7b4
10 changed files with 317 additions and 330 deletions

View File

@@ -1,7 +1,7 @@
@page "/"
@using EnvelopeGenerator.Common;
@using EnvelopeGenerator.Web.Services;
@inject DatabaseService Database;
@inject EnvelopeService Envelope;
<PageTitle>Index</PageTitle>
@@ -32,7 +32,7 @@
protected override void OnInitialized()
{
// Test
envelopes = Database.LoadEnvelopes(receiverId);
envelopes = Envelope.LoadEnvelopes(receiverId);
}