56
1
using System;
2
using AutoMapper;
3
using System.Collections.Generic;
4
5
public class Person
6
{
7
public string FirstName { get; set; }
8
public string LastName { get; set; }
9
public int Age { get; set; }
10
public string DateOfBirth { get; set; }
11
12
13
}
14
15
16
public class PersonVM
17
{
18
public string FirstName { get; set; }
19
public string LastName { get; set; }
20
public int Age { get; set; }
21
public DateTime DateOfBirth { get; set; }
22
23
24
Cached Result