-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathPerson.cs
More file actions
27 lines (25 loc) · 794 Bytes
/
Person.cs
File metadata and controls
27 lines (25 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Text;
namespace Dapper.GraphQL.Test.Models
{
public class Person
{
public Person CareerCounselor { get; set; }
public IList<Company> Companies { get; set; }
public IList<Email> Emails { get; set; }
public string FirstName { get; set; }
public int Id { get; set; }
public string LastName { get; set; }
public int MergedToPersonId { get; set; }
public IList<Phone> Phones { get; set; }
public Person Supervisor { get; set; }
public DateTime CreateDate { get; set; }
public Person()
{
Companies = new List<Company>();
Emails = new List<Email>();
Phones = new List<Phone>();
}
}
}