From 39993cd0e0dc0bd1dd812536617c4368b7c9c73d Mon Sep 17 00:00:00 2001 From: platoff aeeee Date: Thu, 30 May 2024 06:46:56 +0400 Subject: [PATCH] mm --- .../TravelCompany/Properties/launchSettings.json | 12 ++++++++++++ .../Properties/launchSettings.json | 12 ++++++++++++ .../ViewModels/ReportExcursionTripViewModel.cs | 12 ++++++++++++ .../ViewModels/ReportTripPeriodViewModel.cs | 14 ++++++++++++++ .../Properties/launchSettings.json | 12 ++++++++++++ 5 files changed, 62 insertions(+) create mode 100644 TravelCompany/TravelCompany/Properties/launchSettings.json create mode 100644 TravelCompany/TravelCompanyBusinessLogic/Properties/launchSettings.json create mode 100644 TravelCompany/TravelCompanyContracts/ViewModels/ReportExcursionTripViewModel.cs create mode 100644 TravelCompany/TravelCompanyContracts/ViewModels/ReportTripPeriodViewModel.cs create mode 100644 TravelCompany/TravelCompanyDataModels/Properties/launchSettings.json diff --git a/TravelCompany/TravelCompany/Properties/launchSettings.json b/TravelCompany/TravelCompany/Properties/launchSettings.json new file mode 100644 index 0000000..1942369 --- /dev/null +++ b/TravelCompany/TravelCompany/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "TravelCompany": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:62363;http://localhost:62364" + } + } +} \ No newline at end of file diff --git a/TravelCompany/TravelCompanyBusinessLogic/Properties/launchSettings.json b/TravelCompany/TravelCompanyBusinessLogic/Properties/launchSettings.json new file mode 100644 index 0000000..4fe5ee2 --- /dev/null +++ b/TravelCompany/TravelCompanyBusinessLogic/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "TravelCompanyBusinessLogic": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:62365;http://localhost:62366" + } + } +} \ No newline at end of file diff --git a/TravelCompany/TravelCompanyContracts/ViewModels/ReportExcursionTripViewModel.cs b/TravelCompany/TravelCompanyContracts/ViewModels/ReportExcursionTripViewModel.cs new file mode 100644 index 0000000..56f3718 --- /dev/null +++ b/TravelCompany/TravelCompanyContracts/ViewModels/ReportExcursionTripViewModel.cs @@ -0,0 +1,12 @@ +using TravelCompanyContracts.ViewModels.Contractor.ViewModels; +using TravelCompanyContracts.ViewModels.Guarantor.ViewModels; + +namespace TravelCompanyContracts.ViewModels +{ + public class ReportExcursionTripViewModel + { + public ExcursionViewModel Excursion { get; set; } = new(); + + public HashSet Trips { get; set; } = new(); + } +} diff --git a/TravelCompany/TravelCompanyContracts/ViewModels/ReportTripPeriodViewModel.cs b/TravelCompany/TravelCompanyContracts/ViewModels/ReportTripPeriodViewModel.cs new file mode 100644 index 0000000..4e04b5e --- /dev/null +++ b/TravelCompany/TravelCompanyContracts/ViewModels/ReportTripPeriodViewModel.cs @@ -0,0 +1,14 @@ +using TravelCompanyContracts.ViewModels.Contractor.ViewModels; +using TravelCompanyContracts.ViewModels.Guarantor.ViewModels; + +namespace TravelCompanyContracts.ViewModels +{ + public class ReportTripPeriodViewModel + { + public TripViewModel Trip { get; set; } = new(); + + public HashSet ExcursionGroups { get; set; } = new(); + + public HashSet Guides { get; set; } = new(); + } +} diff --git a/TravelCompany/TravelCompanyDataModels/Properties/launchSettings.json b/TravelCompany/TravelCompanyDataModels/Properties/launchSettings.json new file mode 100644 index 0000000..a498b08 --- /dev/null +++ b/TravelCompany/TravelCompanyDataModels/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "TravelCompanyDataModels": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:62367;http://localhost:62368" + } + } +} \ No newline at end of file