-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathERO.cs
75 lines (71 loc) · 3.48 KB
/
ERO.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//------------------------------------------------------------------------------
// <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 QA_Tools
{
using System;
using System.Collections.Generic;
public partial class ERO
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public ERO()
{
this.EROLinkings = new HashSet<EROLinking>();
this.FeeSplits = new HashSet<FeeSplit>();
}
public int Id { get; set; }
public string EFIN { get; set; }
public string LatestEnrollYear { get; set; }
public string CompanyName { get; set; }
public string EIN { get; set; }
public string OwnersSSN { get; set; }
public Nullable<System.DateTime> OwnersDOB { get; set; }
public string AvailableforReconsideration { get; set; }
public string ProcessInd { get; set; }
public Nullable<bool> BeingReviewed { get; set; }
public string StationID { get; set; }
public Nullable<bool> SendToRiskInd { get; set; }
public Nullable<bool> UserReviewedInd { get; set; }
public string Appealed { get; set; }
public Nullable<bool> fRiskHitFound { get; set; }
public Nullable<bool> fRiskHitReviewed { get; set; }
public string ForceOptIn { get; set; }
public string NoCheckPrinting { get; set; }
public string DoNotCall { get; set; }
public string SARNASSummary { get; set; }
public string SARNAPSummary { get; set; }
public string SARCVI { get; set; }
public string sFeeAdvanceReview { get; set; }
public string CRMCompanyName { get; set; }
public string CRMPhoneNumber { get; set; }
public string ComplianceEmailAddress { get; set; }
public string ComplianceESSInd { get; set; }
public string SiteGroupCode { get; set; }
public string ACHHoldFlag { get; set; }
public string RejectRecordsInd { get; set; }
public string NoAddressUpdateInd { get; set; }
public System.DateTime RecordCreate { get; set; }
public System.DateTime LastUpdate { get; set; }
public string IntuitCAN { get; set; }
public string IntuitFirmName { get; set; }
public string SFAccountID { get; set; }
public Nullable<System.DateTime> SFLastIncluded { get; set; }
public string Reserved { get; set; }
public string PromoCode { get; set; }
public string PNACompanyName { get; set; }
public string PNAWebURL { get; set; }
public Nullable<decimal> PNAPhone { get; set; }
public Nullable<long> ShopId { get; set; }
public Nullable<bool> RiskLockInd { get; set; }
public Nullable<int> DisbursementPreferenceId { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<EROLinking> EROLinkings { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<FeeSplit> FeeSplits { get; set; }
}
}