diff --git a/OliverBooth/Pages/Shared/_Layout.cshtml b/OliverBooth/Pages/Shared/_Layout.cshtml index fe35a56..7d9c40b 100644 --- a/OliverBooth/Pages/Shared/_Layout.cshtml +++ b/OliverBooth/Pages/Shared/_Layout.cshtml @@ -1,6 +1,10 @@ @using OliverBooth.Data.Blog +@using OliverBooth.Data.Web @using OliverBooth.Services @inject IBlogPostService BlogPostService +@inject IUserService UserService +@inject ISessionService SessionService + @{ HttpRequest request = Context.Request; var url = new Uri($"{request.Scheme}://{request.Host}{request.Path}{request.QueryString}"); @@ -129,6 +133,15 @@