From 99b3c179e76857aadca015c7a9648696d0a9b036 Mon Sep 17 00:00:00 2001 From: Danil Markov Date: Sat, 8 Apr 2023 23:37:54 +0400 Subject: [PATCH] =?UTF-8?q?fix=20+=20=D0=BF=D0=B0=D1=80=D1=83=20=D1=81?= =?UTF-8?q?=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=87=D0=B5=D0=BA=20(=D0=BD?= =?UTF-8?q?=D1=83=D0=B6=D0=BD=D0=BE=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D0=BE=D0=B1=D1=8A=D0=B5=D0=B4=D0=B8=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB=D0=B5=D0=B9?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BusinessLogics/ReportProviderLogic.cs | 2 +- .../BusinessLogicContracts/IReportProviderLogic.cs | 2 +- UniversityProvider/UniversityProvider.csproj | 4 ++++ UniversityProvider/Views/Home/Documents.cshtml | 5 +++++ UniversityProvider/Views/Home/EducationStatuses.cshtml | 5 +++++ UniversityProvider/Views/Home/GetList.cshtml | 5 +++++ UniversityProvider/Views/Home/GetReport.cshtml | 5 +++++ UniversityProvider/Views/Home/Login.cshtml | 5 +++++ UniversityProvider/Views/Home/Privacy.cshtml | 6 ------ UniversityProvider/Views/Home/Registration.cshtml | 5 +++++ UniversityProvider/Views/Home/Students.cshtml | 5 +++++ 11 files changed, 41 insertions(+), 8 deletions(-) create mode 100644 UniversityProvider/Views/Home/Documents.cshtml create mode 100644 UniversityProvider/Views/Home/EducationStatuses.cshtml create mode 100644 UniversityProvider/Views/Home/GetList.cshtml create mode 100644 UniversityProvider/Views/Home/GetReport.cshtml create mode 100644 UniversityProvider/Views/Home/Login.cshtml delete mode 100644 UniversityProvider/Views/Home/Privacy.cshtml create mode 100644 UniversityProvider/Views/Home/Registration.cshtml create mode 100644 UniversityProvider/Views/Home/Students.cshtml diff --git a/UniversityBusinessLogic/BusinessLogics/ReportProviderLogic.cs b/UniversityBusinessLogic/BusinessLogics/ReportProviderLogic.cs index 0bbc2b9..a768b16 100644 --- a/UniversityBusinessLogic/BusinessLogics/ReportProviderLogic.cs +++ b/UniversityBusinessLogic/BusinessLogics/ReportProviderLogic.cs @@ -64,7 +64,7 @@ namespace UniversityBusinessLogic.BusinessLogics return result; } - public List GetStreamStudentEdStatPeriod(ReportBindingModel model) + public List StreamStudentEdStatPeriod(ReportBindingModel model) { var result = _streamStorage .GetFilteredList(new StreamSearchModel { UserId = model.UserId }) diff --git a/UniversityContracts/BusinessLogicContracts/IReportProviderLogic.cs b/UniversityContracts/BusinessLogicContracts/IReportProviderLogic.cs index 25a5126..96131e2 100644 --- a/UniversityContracts/BusinessLogicContracts/IReportProviderLogic.cs +++ b/UniversityContracts/BusinessLogicContracts/IReportProviderLogic.cs @@ -12,7 +12,7 @@ namespace UniversityContracts.BusinessLogicContracts { List GetStudentsDiscipline(ReportBindingModel model); - List GetStreamStudentEdStatPeriod(ReportBindingModel model); + List StreamStudentEdStatPeriod(ReportBindingModel model); void SaveBlanksToWordFile(ReportBindingModel model); diff --git a/UniversityProvider/UniversityProvider.csproj b/UniversityProvider/UniversityProvider.csproj index c78c9c7..8a7e613 100644 --- a/UniversityProvider/UniversityProvider.csproj +++ b/UniversityProvider/UniversityProvider.csproj @@ -6,4 +6,8 @@ enable + + + + diff --git a/UniversityProvider/Views/Home/Documents.cshtml b/UniversityProvider/Views/Home/Documents.cshtml new file mode 100644 index 0000000..e1dd794 --- /dev/null +++ b/UniversityProvider/Views/Home/Documents.cshtml @@ -0,0 +1,5 @@ +@* + For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 +*@ +@{ +} diff --git a/UniversityProvider/Views/Home/EducationStatuses.cshtml b/UniversityProvider/Views/Home/EducationStatuses.cshtml new file mode 100644 index 0000000..e1dd794 --- /dev/null +++ b/UniversityProvider/Views/Home/EducationStatuses.cshtml @@ -0,0 +1,5 @@ +@* + For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 +*@ +@{ +} diff --git a/UniversityProvider/Views/Home/GetList.cshtml b/UniversityProvider/Views/Home/GetList.cshtml new file mode 100644 index 0000000..e1dd794 --- /dev/null +++ b/UniversityProvider/Views/Home/GetList.cshtml @@ -0,0 +1,5 @@ +@* + For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 +*@ +@{ +} diff --git a/UniversityProvider/Views/Home/GetReport.cshtml b/UniversityProvider/Views/Home/GetReport.cshtml new file mode 100644 index 0000000..e1dd794 --- /dev/null +++ b/UniversityProvider/Views/Home/GetReport.cshtml @@ -0,0 +1,5 @@ +@* + For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 +*@ +@{ +} diff --git a/UniversityProvider/Views/Home/Login.cshtml b/UniversityProvider/Views/Home/Login.cshtml new file mode 100644 index 0000000..e1dd794 --- /dev/null +++ b/UniversityProvider/Views/Home/Login.cshtml @@ -0,0 +1,5 @@ +@* + For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 +*@ +@{ +} diff --git a/UniversityProvider/Views/Home/Privacy.cshtml b/UniversityProvider/Views/Home/Privacy.cshtml deleted file mode 100644 index af4fb19..0000000 --- a/UniversityProvider/Views/Home/Privacy.cshtml +++ /dev/null @@ -1,6 +0,0 @@ -@{ - ViewData["Title"] = "Privacy Policy"; -} -

@ViewData["Title"]

- -

Use this page to detail your site's privacy policy.

diff --git a/UniversityProvider/Views/Home/Registration.cshtml b/UniversityProvider/Views/Home/Registration.cshtml new file mode 100644 index 0000000..e1dd794 --- /dev/null +++ b/UniversityProvider/Views/Home/Registration.cshtml @@ -0,0 +1,5 @@ +@* + For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 +*@ +@{ +} diff --git a/UniversityProvider/Views/Home/Students.cshtml b/UniversityProvider/Views/Home/Students.cshtml new file mode 100644 index 0000000..e1dd794 --- /dev/null +++ b/UniversityProvider/Views/Home/Students.cshtml @@ -0,0 +1,5 @@ +@* + For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 +*@ +@{ +}