1234567891011121314151617181920212223242526272829 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код был создан из шаблона.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace Control_DB_Railway
- {
- using System;
- using System.Collections.Generic;
-
- public partial class TypeStation
- {
- public TypeStation()
- {
- this.Stations = new HashSet<Stations>();
- }
-
- public int typeStationID { get; set; }
- public string nameTypeStation { get; set; }
- public bool passagerService { get; set; }
-
- public virtual ICollection<Stations> Stations { get; set; }
- }
- }
|