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"; }