12345678910111213141516171819202122232425262728293031323334353637 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace PsychoTest
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Tests
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Tests()
- {
- this.Questions = new HashSet<Questions>();
- this.Results = new HashSet<Results>();
- }
-
- public int Test_id { get; set; }
- public string Test_name { get; set; }
- public Nullable<int> Questions_count { get; set; }
- public string Description { get; set; }
- public byte[] Image { get; set; }
- public Nullable<int> Id_category { get; set; }
-
- public virtual Categories Categories { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Questions> Questions { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Results> Results { get; set; }
- }
- }
|