12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RR2.Class
- {
- public class Employ
- {
- public string FullName { get; set; }
- public string DepartmentName { get; set; }
- public string Position { get; set; }
- public string Phone { get; set; }
- public string Office { get; set; }
- public string Email { get; set; }
- public int DepartmentId { get; set; }
- }
- }
|