mm
This commit is contained in:
parent
058652dd90
commit
39993cd0e0
12
TravelCompany/TravelCompany/Properties/launchSettings.json
Normal file
12
TravelCompany/TravelCompany/Properties/launchSettings.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"profiles": {
|
||||
"TravelCompany": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"applicationUrl": "https://localhost:62363;http://localhost:62364"
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
{
|
||||
"profiles": {
|
||||
"TravelCompanyBusinessLogic": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"applicationUrl": "https://localhost:62365;http://localhost:62366"
|
||||
}
|
||||
}
|
||||
}
|
@ -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();
|
||||
}
|
||||
}
|
@ -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();
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
{
|
||||
"profiles": {
|
||||
"TravelCompanyDataModels": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"applicationUrl": "https://localhost:62367;http://localhost:62368"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user