12345678910111213141516171819202122232425 |
- namespace praktika_2
- {
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Data.Entity.Spatial;
- public partial class tape_work
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public tape_work()
- {
- repair = new HashSet<repair>();
- }
- [DatabaseGenerated(DatabaseGeneratedOption.None)]
- public int id { get; set; }
- public string name_type { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<repair> repair { get; set; }
- }
- }
|