Class TourStop
Represents a tour stop
Inheritance
System.Object
TourStop
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.PlugIn.Logistics.Disposition
Assembly: Simplic.PlugIn.Logistics.dll
Syntax
public class TourStop
Properties
| Improve this Doc View SourceAddressId
Gets or sets the contact id / address id
Declaration
public Guid AddressId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
ArrivalDate
Gets or sets the arrival date of a tour
Declaration
public DateTime ArrivalDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
ArrivalTime
Gets or sets the arrival time of a tour
Declaration
public TimeSpan ArrivalTime { get; set; }
Property Value
Type | Description |
---|---|
System.TimeSpan |
DateArrived
Gets or sets the date when the stop has finished
Declaration
public DateTime DateArrived { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
DurationInMinutes
Gets or sets the duration in minutes
Declaration
public int DurationInMinutes { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Id
Gets or sets the id of the stop
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsDeleted
Gets or sets whether the stop is deleted or not
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsFinished
Gets or sets wheter the stop has finished or not
Declaration
public bool IsFinished { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
OrderNr
Gets or sets the order number within the tour
Declaration
public int OrderNr { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
TimeArrived
Gets or sets the time, when the stop has finished
Declaration
public TimeSpan TimeArrived { get; set; }
Property Value
Type | Description |
---|---|
System.TimeSpan |
Title
Gets or sets the title of the stop
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TourId
Gets or sets the tour id
Declaration
public Guid TourId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |