namespace praktika_2 { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("employye")] public partial class employye { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public employye() { info_move = new HashSet(); material_value_pod_pechat = new HashSet(); } [DatabaseGenerated(DatabaseGeneratedOption.None)] public int id { get; set; } public string FIO { get; set; } public int? id_build { get; set; } public virtual building building { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection info_move { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection material_value_pod_pechat { get; set; } } }