Driver.cs 448 B

12345678910111213
  1. namespace АвтотранспортноеПредприятие.Models
  2. {
  3. public class Driver
  4. {
  5. public int driver_id { get; set; }
  6. public int employee_id { get; set; }
  7. public string driver_license { get; set; }
  8. public string license_category { get; set; }
  9. public int garage_id { get; set; }
  10. public string FullName => $"Водитель №{driver_id} (кат.{license_category})";
  11. }
  12. }