Class SampleShipment
- Namespace
- Skyware.Lis.EventsModel.SampleTracking
- Assembly
- Skyware.Lis.EventsModel.dll
Occurs when set of samples is transfered from one to another Location
public class SampleShipment : BaseMessage
- Inheritance
-
SampleShipment
- Inherited Members
Properties
DefaultAddress
Default address where message should be send.
public override string DefaultAddress { get; }
Property Value
IsSent
True if shipment is sent, false if it is received
public bool IsSent { get; set; }
Property Value
Received
Date and time the shipment is received
public DateTime? Received { get; set; }
Property Value
Receiver
Intended delivery Location
public Location Receiver { get; set; }
Property Value
Samples
Shipment's content (collection of Sample)
public IEnumerable<Sample> Samples { get; set; }
Property Value
Sender
Sending Location
public Location Sender { get; set; }
Property Value
Sent
Date and time the shipment is sent
public DateTime Sent { get; set; }
Property Value
ShipmentId
Identifier in the LIS iLab
public int ShipmentId { get; set; }