This commit is contained in:
platoff aeeee 2024-05-30 06:46:56 +04:00
parent 058652dd90
commit 39993cd0e0
5 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{
"profiles": {
"TravelCompany": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:62363;http://localhost:62364"
}
}
}

View File

@ -0,0 +1,12 @@
{
"profiles": {
"TravelCompanyBusinessLogic": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:62365;http://localhost:62366"
}
}
}

View File

@ -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<TripViewModel> Trips { get; set; } = new();
}
}

View File

@ -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<ExcursionGroupViewModel> ExcursionGroups { get; set; } = new();
public HashSet<GuideViewModel> Guides { get; set; } = new();
}
}

View File

@ -0,0 +1,12 @@
{
"profiles": {
"TravelCompanyDataModels": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:62367;http://localhost:62368"
}
}
}