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