1234567891011121314151617181920212223242526272829303132 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код был создан из шаблона.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace WpfApp3
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Hotel
- {
- public Hotel()
- {
- this.HotelComment = new HashSet<HotelComment>();
- this.Type = new HashSet<Type>();
- }
-
- public int id { get; set; }
- public string Name { get; set; }
- public string CountOfStars { get; set; }
- public string CountryCode { get; set; }
-
- public virtual Country Country { get; set; }
- public virtual ICollection<HotelComment> HotelComment { get; set; }
- public virtual ICollection<Type> Type { get; set; }
- }
- }
|