12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace InvestTracker.Entities;
- public partial class Employee
- {
- public int Id { get; set; }
- public string Surname { get; set; } = null!;
- public string Name { get; set; } = null!;
- public string? Patronymic { get; set; }
- public string Phone { get; set; } = null!;
- public string Email { get; set; } = null!;
- public DateTime Birthday { get; set; }
- public int TitleId { get; set; }
- public virtual Title Title { get; set; } = null!;
- }
|