コード例 #1
0
 public ProfileProductionDataRequest(
     long?projectID,
     Guid?callId,
     ProductionDataType profileType,
     FilterResult filter,
     long?filterID,
     DesignDescriptor alignmentDesign,
     ProfileGridPoints gridPoints,
     ProfileLLPoints wgs84Points,
     double?startStation,
     double?endStation,
     LiftBuildSettings liftBuildSettings,
     bool returnAllPassesAndLayers
     )
 {
     ProjectId                = projectID;
     CallId                   = callId;
     ProfileType              = profileType;
     Filter                   = filter;
     FilterID                 = filterID;
     AlignmentDesign          = alignmentDesign;
     GridPoints               = gridPoints;
     WGS84Points              = wgs84Points;
     this.StartStation        = startStation;
     EndStation               = endStation;
     LiftBuildSettings        = liftBuildSettings;
     ReturnAllPassesAndLayers = returnAllPassesAndLayers;
 }
コード例 #2
0
 public CompactionProfileProductionDataRequest(
     long?projectID,
     Guid?projectUid,
     Guid?callId,
     ProductionDataType profileType,
     FilterResult filter,
     long?filterID,
     DesignDescriptor alignmentDesign,
     ProfileGridPoints gridPoints,
     ProfileLLPoints wgs84Points,
     double startStation,
     double endStation,
     LiftBuildSettings liftBuildSettings,
     bool returnAllPassesAndLayers,
     DesignDescriptor cutFillDesignDescriptor,
     FilterResult baseFilter,
     FilterResult topFilter,
     VolumeCalcTypes?volumeCalcType,
     DesignDescriptor volumeDesignDescriptor,
     bool explicitFilters = false
     )
 {
     ProjectId                = projectID;
     ProjectUid               = projectUid;
     CallId                   = callId;
     ProfileType              = profileType;
     Filter                   = filter;
     FilterID                 = filterID;
     AlignmentDesign          = alignmentDesign;
     GridPoints               = gridPoints;
     WGS84Points              = wgs84Points;
     base.StartStation        = startStation;
     EndStation               = endStation;
     LiftBuildSettings        = liftBuildSettings;
     ReturnAllPassesAndLayers = returnAllPassesAndLayers;
     CutFillDesignDescriptor  = cutFillDesignDescriptor;
     BaseFilter               = baseFilter;
     TopFilter                = topFilter;
     VolumeCalcType           = volumeCalcType;
     VolumeDesignDescriptor   = volumeDesignDescriptor;
     ExplicitFilters          = explicitFilters;
 }