2021-02-13 14:27:32 +03:00
|
|
|
|
using MapTo;
|
|
|
|
|
using TestConsoleApp.Data.Models;
|
|
|
|
|
|
|
|
|
|
namespace TestConsoleApp.ViewModels
|
|
|
|
|
{
|
|
|
|
|
[MapFrom(typeof(Employee))]
|
|
|
|
|
public partial class EmployeeViewModel
|
|
|
|
|
{
|
2021-12-08 01:02:59 +03:00
|
|
|
|
public int Id { get; }
|
2021-02-13 14:27:32 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|