blob: 8921ddb6768134f9af5048d4e4e46bc4d9ecdbe4 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
//------------------------------------------------------------------------------
// <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 Tango.DAL.Remote.DB
{
using System;
using System.Collections.Generic;
public partial class USER
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public USER()
{
this.ACTION_LOGS = new HashSet<ACTION_LOGS>();
this.FSE_VERSIONS = new HashSet<FSE_VERSIONS>();
this.JOBS = new HashSet<JOB>();
this.MACHINE_STUDIO_VERSIONS = new HashSet<MACHINE_STUDIO_VERSIONS>();
this.MACHINES_EVENTS = new HashSet<MACHINES_EVENTS>();
this.TANGO_VERSIONS = new HashSet<TANGO_VERSIONS>();
this.USERS_ROLES = new HashSet<USERS_ROLES>();
}
public int ID { get; set; }
public string GUID { get; set; }
public System.DateTime LAST_UPDATED { get; set; }
public bool DELETED { get; set; }
public string EMAIL { get; set; }
public string PASSWORD { get; set; }
public string ORGANIZATION_GUID { get; set; }
public string CONTACT_GUID { get; set; }
public string ADDRESS_GUID { get; set; }
public Nullable<System.DateTime> LAST_LOGIN { get; set; }
public bool PASSWORD_CHANGE_REQUIRED { get; set; }
public bool PREVENT_REMOTE_MACHINE_ACCESS { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<ACTION_LOGS> ACTION_LOGS { get; set; }
public virtual ADDRESS ADDRESS { get; set; }
public virtual CONTACT CONTACT { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<FSE_VERSIONS> FSE_VERSIONS { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<JOB> JOBS { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<MACHINE_STUDIO_VERSIONS> MACHINE_STUDIO_VERSIONS { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<MACHINES_EVENTS> MACHINES_EVENTS { get; set; }
public virtual ORGANIZATION ORGANIZATION { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<TANGO_VERSIONS> TANGO_VERSIONS { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<USERS_ROLES> USERS_ROLES { get; set; }
}
}
|