- namespace АвтотранспортноеПредприятие.Models
- {
- public class Driver
- {
- public int driver_id { get; set; }
- public int employee_id { get; set; }
- public string driver_license { get; set; }
- public string license_category { get; set; }
- public int garage_id { get; set; }
- public string FullName => $"Водитель №{driver_id} (кат.{license_category})";
- }
- }
|