Hotel.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код был создан из шаблона.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace WpfApp3
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class Hotel
  14. {
  15. public Hotel()
  16. {
  17. this.HotelComment = new HashSet<HotelComment>();
  18. this.Type = new HashSet<Type>();
  19. }
  20. public int id { get; set; }
  21. public string Name { get; set; }
  22. public string CountOfStars { get; set; }
  23. public string CountryCode { get; set; }
  24. public virtual Country Country { get; set; }
  25. public virtual ICollection<HotelComment> HotelComment { get; set; }
  26. public virtual ICollection<Type> Type { get; set; }
  27. }
  28. }