//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace Common
{
using System;
using System.Collections.Generic;
public partial class Dispatch
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Dispatch()
{
this.DispatchPackages = new HashSet();
}
public int DispatchId { get; set; }
public int InvoiceId { get; set; }
public string BagSeal { get; set; }
public System.DateTime DateCreated { get; set; }
public int OperatorLoginId { get; set; }
public int DispatchStatusId { get; set; }
public Nullable DeliveryId { get; set; }
public Nullable DateDelivered { get; set; }
public virtual Invoice Invoice { get; set; }
public virtual OperatorLogin OperatorLogin { get; set; }
public virtual DispatchStatu DispatchStatu { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection DispatchPackages { get; set; }
}
}