Refactoring, database structure changed
This commit is contained in:
15
WatchIt.Website/Components/Pages/HomePage.razor.cs
Normal file
15
WatchIt.Website/Components/Pages/HomePage.razor.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using WatchIt.Website.Clients;
|
||||
|
||||
namespace WatchIt.Website.Components.Pages;
|
||||
|
||||
public partial class HomePage : Page
|
||||
{
|
||||
#region SERVICES
|
||||
|
||||
[Inject] public NavigationManager NavigationManager { get; set; } = default!;
|
||||
[Inject] public IMediaClient MediaClient { get; set; } = default!;
|
||||
[Inject] public IPeopleClient PeopleClient { get; set; } = default!;
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user