2024-04-30 16:56:58 +04:00
namespace PolyclinicWebAppImplementer
{
public static class SiteMenuItems
{
2024-05-29 02:22:44 +04:00
public static ( string Controller , string Action , string Title , PageVisible Visible ) Index = ( "Home" , "" , "Главная" , PageVisible . AllowAnyBody ) ;
public static ( string Controller , string Action , string Title , PageVisible Visible ) Courses = ( "Courses" , "" , "Курсы" , PageVisible . AllowOnlyAuthorized ) ;
public static ( string Controller , string Action , string Title , PageVisible Visible ) Diagnoses = ( "Diagnoses" , "" , "Болезни" , PageVisible . AllowOnlyAuthorized ) ;
public static ( string Controller , string Action , string Title , PageVisible Visible ) Symptomes = ( "Symptomes" , "" , "Симптомы" , PageVisible . AllowOnlyAuthorized ) ;
public static ( string Controller , string Action , string Title , PageVisible Visible ) Login = ( "User" , "Login" , "Вход" , PageVisible . AllowOnlyNotAuthorized ) ;
public static ( string Controller , string Action , string Title , PageVisible Visible ) Register = ( "User" , "Register" , "Регистрация" , PageVisible . AllowOnlyNotAuthorized ) ;
2024-05-29 14:23:16 +04:00
public static ( string Controller , string Action , string Title , PageVisible Visible ) Privacy = ( "User" , "Privacy" , "Личный кабинет" , PageVisible . AllowOnlyAuthorized ) ;
2024-05-29 18:04:11 +04:00
public static ( string Controller , string Action , string Title , PageVisible Visible ) AddRecipeToCourse = ( "Recipe" , "LinkCourse" , "Привязка рецептов" , PageVisible . AllowOnlyAuthorized ) ;
2024-05-30 00:08:44 +04:00
public static ( string Controller , string Action , string Title , PageVisible Visible ) MedicamentsByDiagnoses = ( "Reports" , "MedicamentsByDiagnoses" , "Отчет по лекарствам" , PageVisible . AllowOnlyAuthorized ) ;
public static ( string Controller , string Action , string Title , PageVisible Visible ) DiagnosesReport = ( "Reports" , "DiagnosesByPeriod" , "Отчет по болезням" , PageVisible . AllowOnlyAuthorized ) ;
2024-04-30 16:56:58 +04:00
2024-05-29 02:22:44 +04:00
public static List < ( string Controller , string Action , string Title , PageVisible Visible ) > MenuItemsOrder = new List < ( string Controller , string Action , string Title , PageVisible Visible ) >
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
} ;
}
}