//------------------------------------------------------------------------------ // // 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 Associations { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Associations() { this.Members = new HashSet(); this.Routes = new HashSet(); this.Licences = new HashSet(); } public long AssociationID { get; set; } public short AssociationStatusID { get; set; } public int AssociationModeID { get; set; } public short AssociationTypeID { get; set; } public long RegionID { get; set; } public string AssociationName { get; set; } public string AssociationNameAbbrev { get; set; } public string RegistrationNumber { get; set; } public string PostalAddress { get; set; } public string PostalAddressCode { get; set; } public string PhysicalAddress { get; set; } public string PhysicalAddressCode { get; set; } public bool PostalAddressIsDomicilium { get; set; } public string BusRegNumber { get; set; } public string TaxNumber { get; set; } public string TelNumber { get; set; } public string FaxNumber { get; set; } public string CellNumber { get; set; } public string EmailAddress { get; set; } public string ReferenceNumber { get; set; } public Nullable OlasID { get; set; } public Nullable LtpsID { get; set; } public Nullable ActiveMemberCount { get; set; } public Nullable NeoID { get; set; } public Nullable AdjudicationOfficeLocationID { get; set; } public virtual AssociationModes Mode { get; set; } public virtual AssociationTypes Type { get; set; } public virtual Region Region { get; set; } public virtual AssociationStatus Status { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Members { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Routes { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Licences { get; set; } } }