public partial class DestinationOrder : Order { public CoordinateVector Destination { get; set; } public DestinationOrder(OrderType type, CoordinateVector destination) { this.Category = OrderCategory.DESTINATION; this.Type = type; this.Destination = destination; } }