From 6820d3e03eec6295dde7d6f1f7b8ac6c5771806d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=88=D0=B8=D0=BD=20=D0=9C=D0=B0=D0=BA=D1=81?= =?UTF-8?q?=D0=B8=D0=BC?= Date: Wed, 17 May 2023 15:59:27 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BE=D1=82=D0=BE=D0=B1=D1=80=D0=B0=D0=B6=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=B8=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F=20=D0=BC=D0=B5=D1=82=D1=80=D0=B4=D0=BE=D1=82=D0=B5?= =?UTF-8?q?=D0=BB=D1=8F=20(=D0=BD=D1=83=20=D0=B8=20=D1=81=D0=BB=D0=BE?= =?UTF-8?q?=D0=B2=D0=BE=20=D0=BA=D0=BE=D0=BD=D0=B5=D1=87=D0=BD=D0=BE)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/Home/FormationDinner.cshtml | 58 --------------- ...rmationOfDinnerInConferenceBookings.cshtml | 43 ----------- .../Views/Home/Privacy.cshtml | 73 +++++++++++++++++++ .../Views/Home/Report.cshtml | 47 ------------ .../Views/Home/ShapingDinnerIntoRooms.cshtml | 38 ---------- .../Views/Shared/_Layout.cshtml | 12 +-- 6 files changed, 79 insertions(+), 192 deletions(-) delete mode 100644 Hotel/HostrelHeadwaiterApp/Views/Home/FormationDinner.cshtml delete mode 100644 Hotel/HostrelHeadwaiterApp/Views/Home/FormationOfDinnerInConferenceBookings.cshtml create mode 100644 Hotel/HostrelHeadwaiterApp/Views/Home/Privacy.cshtml delete mode 100644 Hotel/HostrelHeadwaiterApp/Views/Home/Report.cshtml delete mode 100644 Hotel/HostrelHeadwaiterApp/Views/Home/ShapingDinnerIntoRooms.cshtml diff --git a/Hotel/HostrelHeadwaiterApp/Views/Home/FormationDinner.cshtml b/Hotel/HostrelHeadwaiterApp/Views/Home/FormationDinner.cshtml deleted file mode 100644 index 1befa76..0000000 --- a/Hotel/HostrelHeadwaiterApp/Views/Home/FormationDinner.cshtml +++ /dev/null @@ -1,58 +0,0 @@ -@using HotelContracts.ViewModels - - -@model List - -@{ - ViewData["Title"] = "FormationDinner"; -} - -
-

Форматирование обедов

-
- - -
- @{ - if (Model == null) - { -

Авторизируйтесь

- return; - } - -

- Создать заказ -

- - - - - - - - - - @foreach (var item in Model) - { - - - - - - } - -
- Номер - - Имя - - Цена -
- @Html.DisplayFor(modelItem => item.Id) - - @Html.DisplayFor(modelItem => item.DinnerName) - - @Html.DisplayFor(modelItem => item.DinnerPrice) -
- } -
\ No newline at end of file diff --git a/Hotel/HostrelHeadwaiterApp/Views/Home/FormationOfDinnerInConferenceBookings.cshtml b/Hotel/HostrelHeadwaiterApp/Views/Home/FormationOfDinnerInConferenceBookings.cshtml deleted file mode 100644 index b0c7b00..0000000 --- a/Hotel/HostrelHeadwaiterApp/Views/Home/FormationOfDinnerInConferenceBookings.cshtml +++ /dev/null @@ -1,43 +0,0 @@ -@{ - ViewData["Title"] = "FormationOfDinnerInConferenceBookings"; -} - -
-

Формирование обеда в брони по конференциям

-
- - -
- - -
-
- - - -
-
- - - -
- - \ No newline at end of file diff --git a/Hotel/HostrelHeadwaiterApp/Views/Home/Privacy.cshtml b/Hotel/HostrelHeadwaiterApp/Views/Home/Privacy.cshtml new file mode 100644 index 0000000..ae95345 --- /dev/null +++ b/Hotel/HostrelHeadwaiterApp/Views/Home/Privacy.cshtml @@ -0,0 +1,73 @@ +@using HotelContracts.ViewModels + +@model HeadwaiterViewModel + +@{ + ViewData["Title"] = "Privacy"; +} +
+

Мои данные

+
+
+
+
+
+ + +
+
+ +
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
+
+
\ No newline at end of file diff --git a/Hotel/HostrelHeadwaiterApp/Views/Home/Report.cshtml b/Hotel/HostrelHeadwaiterApp/Views/Home/Report.cshtml deleted file mode 100644 index 31d8287..0000000 --- a/Hotel/HostrelHeadwaiterApp/Views/Home/Report.cshtml +++ /dev/null @@ -1,47 +0,0 @@ -@{ - ViewData["Title"] = "Report"; -} - -
-

Создание отчёта

-
-
-
-
-
-
С
-
-
-
- - -
-
-
-
по
-
-
-
- - -
-
-
-
- -
-
-
-
-
-
Отчёт:
-
-
\ No newline at end of file diff --git a/Hotel/HostrelHeadwaiterApp/Views/Home/ShapingDinnerIntoRooms.cshtml b/Hotel/HostrelHeadwaiterApp/Views/Home/ShapingDinnerIntoRooms.cshtml deleted file mode 100644 index 8599fea..0000000 --- a/Hotel/HostrelHeadwaiterApp/Views/Home/ShapingDinnerIntoRooms.cshtml +++ /dev/null @@ -1,38 +0,0 @@ -@{ - ViewData["Title"] = "ShapingDinnerIntoRooms"; -} - -
- - -
-
- - - -
-
- - - -
- - \ No newline at end of file diff --git a/Hotel/HostrelHeadwaiterApp/Views/Shared/_Layout.cshtml b/Hotel/HostrelHeadwaiterApp/Views/Shared/_Layout.cshtml index 222d6b3..e1d2194 100644 --- a/Hotel/HostrelHeadwaiterApp/Views/Shared/_Layout.cshtml +++ b/Hotel/HostrelHeadwaiterApp/Views/Shared/_Layout.cshtml @@ -21,22 +21,22 @@