This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Pages constants class | |
public class AdministratorPages | |
{ | |
public const string Base = "/Administrator"; | |
public static string Index = $"{Base}/Index"; | |
public static string EmployeesIndex = $"{Base}/Employees/Index"; | |
} | |
// Usage in a View | |
<a asp-page="@AdministratorPages.Index">Administrator Home Page</a> |