namespace IWareDataAccess.EF
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class BASE_INTYPE
|
{
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
public BASE_INTYPE()
|
{
|
BASE_CONTAINER_VS_ITEM = new HashSet<BASE_CONTAINER_VS_ITEM>();
|
}
|
|
public int ID { get; set; }
|
|
[StringLength(50)]
|
public string INTYPE { get; set; }
|
|
[StringLength(50)]
|
public string STORENAME { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
public virtual ICollection<BASE_CONTAINER_VS_ITEM> BASE_CONTAINER_VS_ITEM { get; set; }
|
}
|
}
|