From 8f03f3eb4491d6edaecccac62147b333808d4655 Mon Sep 17 00:00:00 2001 From: sofiaivv Date: Fri, 3 May 2024 04:07:14 +0400 Subject: [PATCH] =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=81(=D0=B8=D0=BA)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LawCompany/LawCompany.sln | 4 ++-- LawCompany/LawCompanyGuarantorApp/Program.cs | 2 ++ .../LawCompanyGuarantorApp/Views/Home/Consultation.cshtml | 4 +++- LawCompany/LawCompanyGuarantorApp/Views/Home/Hearings.cshtml | 4 +++- LawCompany/LawCompanyGuarantorApp/Views/Home/Lawyers.cshtml | 4 +++- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/LawCompany/LawCompany.sln b/LawCompany/LawCompany.sln index 2b71df6..c299253 100644 --- a/LawCompany/LawCompany.sln +++ b/LawCompany/LawCompany.sln @@ -13,9 +13,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LawCompanyRestApi", "LawCom EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LawCompanyDataModels", "LawCompanyDataModels\LawCompanyDataModels.csproj", "{D16E073F-6E02-410D-89DC-67ECE1E1A0A6}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LawCompanyExecutorApp", "LawCompanyExecutorApp\LawCompanyExecutorApp.csproj", "{025CE232-A2BE-4952-B389-083334221FF2}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LawCompanyExecutorApp", "LawCompanyExecutorApp\LawCompanyExecutorApp.csproj", "{025CE232-A2BE-4952-B389-083334221FF2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LawCompanyGuarantorApp", "LawCompanyGuarantorApp\LawCompanyGuarantorApp.csproj", "{FEE8AD88-5C23-407A-9557-9E2F25C014E7}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LawCompanyGuarantorApp", "LawCompanyGuarantorApp\LawCompanyGuarantorApp.csproj", "{FEE8AD88-5C23-407A-9557-9E2F25C014E7}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/LawCompany/LawCompanyGuarantorApp/Program.cs b/LawCompany/LawCompanyGuarantorApp/Program.cs index d1632a1..69f5bf3 100644 --- a/LawCompany/LawCompanyGuarantorApp/Program.cs +++ b/LawCompany/LawCompanyGuarantorApp/Program.cs @@ -1,3 +1,5 @@ +using LawCompanyGuarantorApp; + var builder = WebApplication.CreateBuilder(args); // Add services to the container. diff --git a/LawCompany/LawCompanyGuarantorApp/Views/Home/Consultation.cshtml b/LawCompany/LawCompanyGuarantorApp/Views/Home/Consultation.cshtml index 32f38e1..8b27d6c 100644 --- a/LawCompany/LawCompanyGuarantorApp/Views/Home/Consultation.cshtml +++ b/LawCompany/LawCompanyGuarantorApp/Views/Home/Consultation.cshtml @@ -1,4 +1,6 @@ -@{ +@using LawCompanyContracts.ViewModels +@model List +@{ ViewData["Title"] = "Create Consultation"; Layout = "~/Views/Shared/_LayoutGuarantor.cshtml"; } diff --git a/LawCompany/LawCompanyGuarantorApp/Views/Home/Hearings.cshtml b/LawCompany/LawCompanyGuarantorApp/Views/Home/Hearings.cshtml index d138978..a8146d4 100644 --- a/LawCompany/LawCompanyGuarantorApp/Views/Home/Hearings.cshtml +++ b/LawCompany/LawCompanyGuarantorApp/Views/Home/Hearings.cshtml @@ -1,4 +1,6 @@ -@{ +@using LawCompanyContracts.ViewModels +@model List +@{ ViewData["Title"] = "Create Hearing"; Layout = "~/Views/Shared/_LayoutGuarantor.cshtml"; } diff --git a/LawCompany/LawCompanyGuarantorApp/Views/Home/Lawyers.cshtml b/LawCompany/LawCompanyGuarantorApp/Views/Home/Lawyers.cshtml index cb0c600..39c5889 100644 --- a/LawCompany/LawCompanyGuarantorApp/Views/Home/Lawyers.cshtml +++ b/LawCompany/LawCompanyGuarantorApp/Views/Home/Lawyers.cshtml @@ -1,4 +1,6 @@ -@{ +@using LawCompanyContracts.ViewModels +@model List +@{ ViewData["Title"] = "Юристы"; Layout = "~/Views/Shared/_LayoutGuarantor.cshtml"; }