MapTo/test/TestConsoleApp/Data/Models/Employee.cs

22 lines
368 B
C#
Raw Normal View History

2021-02-13 14:27:32 +03:00
using System;
using System.Collections.Generic;
using System.Text;
namespace TestConsoleApp.Data.Models
{
2021-12-08 20:58:21 +03:00
2021-02-13 14:27:32 +03:00
public class Employee
{
2021-12-08 20:58:21 +03:00
public int Id { get; }
2021-02-13 14:27:32 +03:00
2021-12-08 20:58:21 +03:00
public string EmployeeCode { get; }
public Employee(int id, string employeeCode)
{
Id = id;
EmployeeCode = employeeCode;
}
2021-02-13 14:27:32 +03:00
}
}