From b2703ab1d685cc94bf80b9363602f088300d49da Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Thu, 26 Sep 2019 01:03:06 +0400 Subject: [PATCH] refactor: Rename namespace in Pages dir --- Pages/Error.cshtml.cs | 2 +- Pages/_ViewImports.cshtml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Pages/Error.cshtml.cs b/Pages/Error.cshtml.cs index 259f894..7a88933 100644 --- a/Pages/Error.cshtml.cs +++ b/Pages/Error.cshtml.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; -namespace instructors_crud_test_task.Pages +namespace InstructorsListApp.Pages { [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] public class ErrorModel : PageModel diff --git a/Pages/_ViewImports.cshtml b/Pages/_ViewImports.cshtml index 1f8e117..8e8c4c7 100644 --- a/Pages/_ViewImports.cshtml +++ b/Pages/_ViewImports.cshtml @@ -1,3 +1,3 @@ -@using instructors_crud_test_task -@namespace instructors_crud_test_task.Pages +@using InstructorsListApp +@namespace InstructorsListApp.Pages @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers