2024-04-30 16:56:58 +04:00
|
|
|
|
namespace PolyclinicWebAppImplementer
|
|
|
|
|
{
|
|
|
|
|
public static class SiteMenuItems
|
|
|
|
|
{
|
2024-05-23 14:58:59 +04:00
|
|
|
|
public static (string Controller, string Action, string Title) Index = ("Home", "", "Главная");
|
|
|
|
|
public static (string Controller, string Action, string Title) Courses = ("Home", "Courses", "Курсы");
|
|
|
|
|
public static (string Controller, string Action, string Title) Diagnoses = ("Diagnoses", "", "Болезни");
|
|
|
|
|
public static (string Controller, string Action, string Title) Symptomes = ("Home", "Symptomes", "Симптомы");
|
|
|
|
|
public static (string Controller, string Action, string Title) Symptom = ("Home", "Symptom", "Симптом");
|
|
|
|
|
public static (string Controller, string Action, string Title) Diagnose = ("Home", "Diagnose", "Болезнь");
|
|
|
|
|
public static (string Controller, string Action, string Title) Course = ("Home", "Course", "Курс");
|
|
|
|
|
public static (string Controller, string Action, string Title) Login = ("Home", "Login", "Вход");
|
|
|
|
|
public static (string Controller, string Action, string Title) Register = ("Home", "Register", "Регистрация");
|
|
|
|
|
public static (string Controller, string Action, string Title) Privacy = ("Home", "Privacy", "Политика приватности");
|
|
|
|
|
public static (string Controller, string Action, string Title) AddRecipeToCourse = ("Home", "AddRecipeToCourse", "Привязка рецепта");
|
|
|
|
|
public static (string Controller, string Action, string Title) MedicamentsByDiagnoses = ("Home", "MedicamentsByDiagnoses", "Лекарства по болезням");
|
|
|
|
|
public static (string Controller, string Action, string Title) DiagnosesReport = ("Home", "DiagnosesReport", "Отчет по болезням");
|
2024-04-30 16:56:58 +04:00
|
|
|
|
|
2024-05-23 14:58:59 +04:00
|
|
|
|
public static List<(string Controller, string Action, string Title)> MenuItemsOrder = new List<(string Controller, string Action, string Title)>
|
2024-04-30 16:56:58 +04:00
|
|
|
|
{
|
2024-05-01 13:04:33 +04:00
|
|
|
|
Index, Courses, Diagnoses, Symptomes, Login, Register, AddRecipeToCourse, MedicamentsByDiagnoses, DiagnosesReport
|
2024-04-30 16:56:58 +04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|