Stations.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код был создан из шаблона.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace Control_DB_Railway
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class Stations
  14. {
  15. public Stations()
  16. {
  17. this.Roads = new HashSet<Roads>();
  18. }
  19. public int stationID { get; set; }
  20. public int typeStationID { get; set; }
  21. public string nameStation { get; set; }
  22. public byte[] image { get; set; }
  23. public bool overheadTransition { get; set; }
  24. public string location { get; set; }
  25. public virtual TypeStation TypeStation { get; set; }
  26. public virtual ICollection<Roads> Roads { get; set; }
  27. }
  28. }