TypeStation.cs 1.1 KB

1234567891011121314151617181920212223242526272829
  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 TypeStation
  14. {
  15. public TypeStation()
  16. {
  17. this.Stations = new HashSet<Stations>();
  18. }
  19. public int typeStationID { get; set; }
  20. public string nameTypeStation { get; set; }
  21. public bool passagerService { get; set; }
  22. public virtual ICollection<Stations> Stations { get; set; }
  23. }
  24. }