From 5eeb14e167e8feac7130d92bc95f1e2a7e783501 Mon Sep 17 00:00:00 2001 From: sofiaivv Date: Fri, 3 May 2024 02:24:54 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BA=D0=BE=D0=BD=D1=82=D1=80=D0=BE=D0=BB?= =?UTF-8?q?=D0=BB=D0=B5=D1=80=D1=8B=20(Rest=20API)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LawCompanyRestApi/Controllers/ConsultationController.cs | 6 ++++++ .../LawCompanyRestApi/Controllers/GuarantorController.cs | 6 ++++++ .../LawCompanyRestApi/Controllers/HearingController.cs | 6 ++++++ .../LawCompanyRestApi/Controllers/LawyerController.cs | 6 ++++++ LawCompany/LawCompanyRestApi/Properties/launchSettings.json | 2 +- 5 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 LawCompany/LawCompanyRestApi/Controllers/ConsultationController.cs create mode 100644 LawCompany/LawCompanyRestApi/Controllers/GuarantorController.cs create mode 100644 LawCompany/LawCompanyRestApi/Controllers/HearingController.cs create mode 100644 LawCompany/LawCompanyRestApi/Controllers/LawyerController.cs diff --git a/LawCompany/LawCompanyRestApi/Controllers/ConsultationController.cs b/LawCompany/LawCompanyRestApi/Controllers/ConsultationController.cs new file mode 100644 index 0000000..2460d02 --- /dev/null +++ b/LawCompany/LawCompanyRestApi/Controllers/ConsultationController.cs @@ -0,0 +1,6 @@ +namespace LawCompanyRestApi.Controllers +{ + public class ConsultationController + { + } +} diff --git a/LawCompany/LawCompanyRestApi/Controllers/GuarantorController.cs b/LawCompany/LawCompanyRestApi/Controllers/GuarantorController.cs new file mode 100644 index 0000000..1017c3a --- /dev/null +++ b/LawCompany/LawCompanyRestApi/Controllers/GuarantorController.cs @@ -0,0 +1,6 @@ +namespace LawCompanyRestApi.Controllers +{ + public class GuarantorController + { + } +} diff --git a/LawCompany/LawCompanyRestApi/Controllers/HearingController.cs b/LawCompany/LawCompanyRestApi/Controllers/HearingController.cs new file mode 100644 index 0000000..163b7b9 --- /dev/null +++ b/LawCompany/LawCompanyRestApi/Controllers/HearingController.cs @@ -0,0 +1,6 @@ +namespace LawCompanyRestApi.Controllers +{ + public class HearingController + { + } +} diff --git a/LawCompany/LawCompanyRestApi/Controllers/LawyerController.cs b/LawCompany/LawCompanyRestApi/Controllers/LawyerController.cs new file mode 100644 index 0000000..0baed0c --- /dev/null +++ b/LawCompany/LawCompanyRestApi/Controllers/LawyerController.cs @@ -0,0 +1,6 @@ +namespace LawCompanyRestApi.Controllers +{ + public class LawyerController + { + } +} diff --git a/LawCompany/LawCompanyRestApi/Properties/launchSettings.json b/LawCompany/LawCompanyRestApi/Properties/launchSettings.json index 303eb33..ecbcf48 100644 --- a/LawCompany/LawCompanyRestApi/Properties/launchSettings.json +++ b/LawCompany/LawCompanyRestApi/Properties/launchSettings.json @@ -1,6 +1,6 @@ { "profiles": { - "LawFirmRestApi": { + "LawCompanyRestApi": { "commandName": "Project", "launchBrowser": true, "launchUrl": "swagger",