Class VehicleInsurance
Inheritance
System.Object
VehicleInsurance
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.Logistics.Vehicle
Assembly: Simplic.Logistics.Vehicle.dll
Syntax
public class VehicleInsurance
Properties
| Improve this Doc View SourceAnnualPremium
Gets or sets the amount of the annual premium.
Declaration
public decimal AnnualPremium { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
EndDate
Gets or sets the ending date of the insurance.
Declaration
public DateTime EndDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Guid
Gets or sets the unique identifier of the vehicleinsurance. If no guid is given, a new one is created.
Declaration
public Guid Guid { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
InsuranceTypeGuid
Gets or sets the guid of the insurance type.
Declaration
public Guid InsuranceTypeGuid { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsDeleted
Gets or sets if this insurance is deleted.
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
PremiumSum
Gets or sets the sum of the insurance premium over the complete daterange.
Declaration
public decimal PremiumSum { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
StartDate
Gets or sets the starting date of the insurance.
Declaration
public DateTime StartDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
VehicleGuid
Gets or sets the Guid of the related vehicle.
Declaration
public Guid VehicleGuid { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |