вливаю всё, что было создано на 5, 6, 7 этапах в ветку main #12

Merged
ekallin merged 180 commits from stage7_user_web_interface_prototype into main 2024-05-01 19:15:20 +04:00
3 changed files with 19 additions and 1 deletions
Showing only changes of commit 9a17320d56 - Show all commits

View File

@ -117,6 +117,20 @@ namespace PolyclinicWebAppImplementer.Controllers
return View();
}
}
[HttpGet]
[HttpPost]
public IActionResult DiagnosesReport()
{
if (HttpContext.Request.Method == "POST")
{
return View();
}
else
{
return View();
}
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()

View File

@ -14,10 +14,11 @@
public static (string Url, string Title) Privacy = ("Privacy", "Политика приватности");
public static (string Url, string Title) AddRecipeToCourse = ("AddRecipeToCourse", "Привязка рецепта");
public static (string Url, string Title) GetMedicamentsByDiagnoses = ("GetMedicamentsByDiagnoses", "Лекарства по болезням");
public static (string Url, string Title) DiagnosesReport = ("DiagnosesReport", "Отчет по болезням");
public static List<(string Url, string Title)> MenuItemsOrder = new List<(string Url, string Title)>
{
Index, Courses, Diagnoses, Symptomes, Login, Register, AddRecipeToCourse, GetMedicamentsByDiagnoses
Index, Courses, Diagnoses, Symptomes, Login, Register, AddRecipeToCourse, GetMedicamentsByDiagnoses, DiagnosesReport
};
}
}

View File

@ -0,0 +1,3 @@
@{
ViewBag.SelectedSiteMenuItem = SiteMenuItems.Diagnose;
}