//------------------------------------------------------------------------------
//
// 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 Neo.LegitimateLicences.Data.Models
{
using System.Web.Script.Serialization;
using System;
using System.Collections.Generic;
public partial class StationeryBatch
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public StationeryBatch()
{
this.Stationeries = new HashSet();
}
public long StationeryBatchID { get; set; }
public short StationeryBatchStatusID { get; set; }
public short StationeryBatchTypeID { get; set; }
public string FromNumber { get; set; }
public string ToNumber { get; set; }
public Nullable OfficeLocationID { get; set; }
public Nullable ReceivedDate { get; set; }
public Nullable ReceivedByID { get; set; }
public string ExternalPartyDescription { get; set; }
public string ExternalPartyContactName { get; set; }
public string ExternalPartyContactEmail { get; set; }
public System.DateTime CreatedDate { get; set; }
public long CreatedByID { get; set; }
public string LastNumberIssued { get; set; }
public string BatchNumber { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection Stationeries { get; set; }
}
}