-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.cs
39 lines (35 loc) · 1.46 KB
/
User.cs
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
28
29
30
31
32
33
34
35
36
37
38
39
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace DashboardApp
{
using System;
using System.Collections.Generic;
public partial class User
{
public User()
{
this.Comments = new HashSet<Comment>();
this.Orders = new HashSet<Order>();
this.SupportTickets = new HashSet<SupportTicket>();
this.Tasks = new HashSet<Task>();
this.Tasks1 = new HashSet<Task>();
}
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public System.DateTime CreateDate { get; set; }
public System.Data.Entity.Spatial.DbGeography Location { get; set; }
public virtual ICollection<Comment> Comments { get; set; }
public virtual ICollection<Order> Orders { get; set; }
public virtual ICollection<SupportTicket> SupportTickets { get; set; }
public virtual ICollection<Task> Tasks { get; set; }
public virtual ICollection<Task> Tasks1 { get; set; }
}
}