Working on roles, users and create tenant
This commit is contained in:
parent
269bf50c78
commit
fcffb57ac6
21 changed files with 483 additions and 56 deletions
12
Application/Components/Navigation/Default.cshtml
Normal file
12
Application/Components/Navigation/Default.cshtml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<nav>
|
||||
<ul>
|
||||
<li><a href="/@Model.Title">Index</a></li>
|
||||
<li>Overblik</li>
|
||||
<li>Kalender</li>
|
||||
<li>Salg</li>
|
||||
<li>Kunder</li>
|
||||
<li>Kassesystem</li>
|
||||
<li>Statistik</li>
|
||||
<li>Integrationers</li>
|
||||
</ul>
|
||||
</nav>
|
||||
18
Application/Components/Navigation/NavigationViewComponent.cs
Normal file
18
Application/Components/Navigation/NavigationViewComponent.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
using Microsoft.ApplicationInsights;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Application.Components.Navigation
|
||||
{
|
||||
public class NavigationViewComponent : ViewComponent
|
||||
{
|
||||
|
||||
public NavigationViewComponent(TelemetryClient telemetryClient)
|
||||
{
|
||||
|
||||
}
|
||||
public IViewComponentResult Invoke()
|
||||
{
|
||||
return View(new { Title = "Hej", Description = "Dette edr en beskrivdelse" });
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue