123456789101112131415161718192021222324252627282930313233343536373839 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace bobrovTounApp
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Tour
- {
- internal object types;
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Tour()
- {
- this.Hotel = new HashSet<Hotel>();
- this.type = new HashSet<type>();
- }
-
- public int id { get; set; }
- public Nullable<int> TicketCount { get; set; }
- public string Name { get; set; }
- public string Description { get; set; }
- public string ImagePreview { get; set; }
- public Nullable<decimal> Price { get; set; }
- public Nullable<bool> isActual { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Hotel> Hotel { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<type> type { get; set; }
- }
- }
|