Skip to content

Commit d5947ea

Browse files
committed
Schema update
1 parent a4a003d commit d5947ea

File tree

5 files changed

+1131
-0
lines changed

5 files changed

+1131
-0
lines changed

src/ECER.Utilities.DataverseSdk/Model/EcerContext.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,17 @@ public System.Linq.IQueryable<ECER.Utilities.DataverseSdk.Model.ecer_ICRAEligibi
535535
}
536536
}
537537

538+
/// <summary>
539+
/// Gets a binding to the set of all <see cref="ECER.Utilities.DataverseSdk.Model.ecer_icraeligibilityassessmentbpf"/> entities.
540+
/// </summary>
541+
public System.Linq.IQueryable<ECER.Utilities.DataverseSdk.Model.ecer_icraeligibilityassessmentbpf> ecer_icraeligibilityassessmentbpfSet
542+
{
543+
get
544+
{
545+
return this.CreateQuery<ECER.Utilities.DataverseSdk.Model.ecer_icraeligibilityassessmentbpf>();
546+
}
547+
}
548+
538549
/// <summary>
539550
/// Gets a binding to the set of all <see cref="ECER.Utilities.DataverseSdk.Model.ecer_identificationtype"/> entities.
540551
/// </summary>

src/ECER.Utilities.DataverseSdk/Model/Entities/ecer_ECEProgramRepresentative.cs

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ public partial class Fields
6060
public const string CreatedOnBehalfBy = "createdonbehalfby";
6161
public const string CreatedOnBehalfByName = "createdonbehalfbyname";
6262
public const string CreatedOnBehalfByYomiName = "createdonbehalfbyyominame";
63+
public const string ecer_AccessToPortal = "ecer_accesstoportal";
64+
public const string ecer_accesstoportalName = "ecer_accesstoportalname";
6365
public const string ecer_Addby = "ecer_addby";
6466
public const string ecer_AddbyName = "ecer_addbyname";
6567
public const string ecer_authentication_eceprogramrepresentative = "ecer_authentication_eceprogramrepresentative";
@@ -80,12 +82,14 @@ public partial class Fields
8082
public const string ecer_LastInviteSentDate = "ecer_lastinvitesentdate";
8183
public const string ecer_LastName = "ecer_lastname";
8284
public const string ecer_Name = "ecer_name";
85+
public const string ecer_PhoneExtension = "ecer_phoneextension";
8386
public const string ecer_PhoneNumber = "ecer_phonenumber";
8487
public const string ecer_portalinvitation_psiprogramrepresentativeid = "ecer_portalinvitation_psiprogramrepresentativeid";
8588
public const string ecer_PostSecondaryInstitute = "ecer_postsecondaryinstitute";
8689
public const string ecer_PostSecondaryInstituteName = "ecer_postsecondaryinstitutename";
8790
public const string ecer_postsecondaryinstituteprogramapplicaiton_PSIProgramRepresentative_ecer_eceprogramrepresentativ = "ecer_postsecondaryinstituteprogramapplicaiton_PSIProgramRepresentative_ecer_eceprogramrepresentativ";
8891
public const string ecer_postsecondaryinstitutesitevisit_PSIProgramRepresentative_ecer_eceprogramrepresentative = "ecer_postsecondaryinstitutesitevisit_PSIProgramRepresentative_ecer_eceprogramrepresentative";
92+
public const string ecer_PreferredFirstName = "ecer_preferredfirstname";
8993
public const string ecer_RepresentativeRole = "ecer_representativerole";
9094
public const string ecer_representativeroleName = "ecer_representativerolename";
9195
public const string ecer_Role = "ecer_role";
@@ -266,6 +270,38 @@ public string CreatedOnBehalfByYomiName
266270
}
267271
}
268272

273+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_accesstoportal")]
274+
public virtual ecer_AccessToPortal? ecer_AccessToPortal
275+
{
276+
[System.Diagnostics.DebuggerNonUserCode()]
277+
get
278+
{
279+
return ((ecer_AccessToPortal?)(EntityOptionSetEnum.GetEnum(this, "ecer_accesstoportal")));
280+
}
281+
[System.Diagnostics.DebuggerNonUserCode()]
282+
set
283+
{
284+
this.SetAttributeValue("ecer_accesstoportal", value.HasValue ? new Microsoft.Xrm.Sdk.OptionSetValue((int)value) : null);
285+
}
286+
}
287+
288+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_accesstoportalname")]
289+
public string ecer_accesstoportalName
290+
{
291+
[System.Diagnostics.DebuggerNonUserCode()]
292+
get
293+
{
294+
if (this.FormattedValues.Contains("ecer_accesstoportal"))
295+
{
296+
return this.FormattedValues["ecer_accesstoportal"];
297+
}
298+
else
299+
{
300+
return default(string);
301+
}
302+
}
303+
}
304+
269305
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_addby")]
270306
public Microsoft.Xrm.Sdk.EntityReference ecer_Addby
271307
{
@@ -520,6 +556,21 @@ public string ecer_Name
520556
}
521557
}
522558

559+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_phoneextension")]
560+
public string ecer_PhoneExtension
561+
{
562+
[System.Diagnostics.DebuggerNonUserCode()]
563+
get
564+
{
565+
return this.GetAttributeValue<string>("ecer_phoneextension");
566+
}
567+
[System.Diagnostics.DebuggerNonUserCode()]
568+
set
569+
{
570+
this.SetAttributeValue("ecer_phoneextension", value);
571+
}
572+
}
573+
523574
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_phonenumber")]
524575
public string ecer_PhoneNumber
525576
{
@@ -567,6 +618,21 @@ public string ecer_PostSecondaryInstituteName
567618
}
568619
}
569620

621+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_preferredfirstname")]
622+
public string ecer_PreferredFirstName
623+
{
624+
[System.Diagnostics.DebuggerNonUserCode()]
625+
get
626+
{
627+
return this.GetAttributeValue<string>("ecer_preferredfirstname");
628+
}
629+
[System.Diagnostics.DebuggerNonUserCode()]
630+
set
631+
{
632+
this.SetAttributeValue("ecer_preferredfirstname", value);
633+
}
634+
}
635+
570636
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_representativerole")]
571637
public virtual ecer_RepresentativeRole? ecer_RepresentativeRole
572638
{

src/ECER.Utilities.DataverseSdk/Model/Entities/ecer_ICRAEligibilityAssessment.cs

Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ public enum ecer_ICRAEligibilityAssessment_StatusCode
5353
[System.Runtime.Serialization.EnumMemberAttribute()]
5454
InReview = 621870004,
5555

56+
[System.Runtime.Serialization.EnumMemberAttribute()]
57+
ReadyforAssessment = 621870007,
58+
5659
[System.Runtime.Serialization.EnumMemberAttribute()]
5760
ReadyforReview = 621870003,
5861

@@ -71,6 +74,7 @@ public partial class ecer_ICRAEligibilityAssessment : Microsoft.Xrm.Sdk.Entity
7174
/// </summary>
7275
public partial class Fields
7376
{
77+
public const string bpf_ecer_icraeligibilityassessment_ecer_icraeligibilityassessmentbpf = "bpf_ecer_icraeligibilityassessment_ecer_icraeligibilityassessmentbpf";
7478
public const string CreatedBy = "createdby";
7579
public const string CreatedByName = "createdbyname";
7680
public const string CreatedByYomiName = "createdbyyominame";
@@ -92,13 +96,19 @@ public partial class Fields
9296
public const string ecer_CertificateReceived = "ecer_certificatereceived";
9397
public const string ecer_CertificateReceivedDate = "ecer_certificatereceiveddate";
9498
public const string ecer_certificatereceivedName = "ecer_certificatereceivedname";
99+
public const string ecer_CertificateReviewed = "ecer_certificatereviewed";
100+
public const string ecer_certificatereviewedName = "ecer_certificatereviewedname";
95101
public const string ecer_communication_ICRAEligibilityAssessmentId = "ecer_communication_ICRAEligibilityAssessmentId";
96102
public const string ecer_CountryId = "ecer_countryid";
97103
public const string ecer_CountryIdName = "ecer_countryidname";
98104
public const string ecer_DateSigned = "ecer_datesigned";
99105
public const string ecer_EmploymentReferenceReceived = "ecer_employmentreferencereceived";
100106
public const string ecer_EmploymentReferenceReceivedDate = "ecer_employmentreferencereceiveddate";
101107
public const string ecer_employmentreferencereceivedName = "ecer_employmentreferencereceivedname";
108+
public const string ecer_EmploymentReferenceReviewed = "ecer_employmentreferencereviewed";
109+
public const string ecer_employmentreferencereviewedName = "ecer_employmentreferencereviewedname";
110+
public const string ecer_GenerateApplication = "ecer_generateapplication";
111+
public const string ecer_generateapplicationName = "ecer_generateapplicationname";
102112
public const string ecer_icraeligibilityassessment_ApplicantId = "ecer_icraeligibilityassessment_ApplicantId";
103113
public const string ecer_icraeligibilityassessment_ApplicationId = "ecer_icraeligibilityassessment_ApplicationId";
104114
public const string ecer_icraeligibilityassessment_CountryId = "ecer_icraeligibilityassessment_CountryId";
@@ -126,11 +136,14 @@ public partial class Fields
126136
public const string OwningBusinessUnitName = "owningbusinessunitname";
127137
public const string OwningTeam = "owningteam";
128138
public const string OwningUser = "owninguser";
139+
public const string processid = "processid";
140+
public const string stageid = "stageid";
129141
public const string StateCode = "statecode";
130142
public const string statecodeName = "statecodename";
131143
public const string StatusCode = "statuscode";
132144
public const string statuscodeName = "statuscodename";
133145
public const string TimeZoneRuleVersionNumber = "timezoneruleversionnumber";
146+
public const string traversedpath = "traversedpath";
134147
public const string UTCConversionTimeZoneCode = "utcconversiontimezonecode";
135148
public const string VersionNumber = "versionnumber";
136149
}
@@ -491,6 +504,38 @@ public string ecer_certificatereceivedName
491504
}
492505
}
493506

507+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_certificatereviewed")]
508+
public System.Nullable<bool> ecer_CertificateReviewed
509+
{
510+
[System.Diagnostics.DebuggerNonUserCode()]
511+
get
512+
{
513+
return this.GetAttributeValue<System.Nullable<bool>>("ecer_certificatereviewed");
514+
}
515+
[System.Diagnostics.DebuggerNonUserCode()]
516+
set
517+
{
518+
this.SetAttributeValue("ecer_certificatereviewed", value);
519+
}
520+
}
521+
522+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_certificatereviewedname")]
523+
public string ecer_certificatereviewedName
524+
{
525+
[System.Diagnostics.DebuggerNonUserCode()]
526+
get
527+
{
528+
if (this.FormattedValues.Contains("ecer_certificatereviewed"))
529+
{
530+
return this.FormattedValues["ecer_certificatereviewed"];
531+
}
532+
else
533+
{
534+
return default(string);
535+
}
536+
}
537+
}
538+
494539
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_countryid")]
495540
public Microsoft.Xrm.Sdk.EntityReference ecer_CountryId
496541
{
@@ -585,6 +630,70 @@ public string ecer_employmentreferencereceivedName
585630
}
586631
}
587632

633+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_employmentreferencereviewed")]
634+
public System.Nullable<bool> ecer_EmploymentReferenceReviewed
635+
{
636+
[System.Diagnostics.DebuggerNonUserCode()]
637+
get
638+
{
639+
return this.GetAttributeValue<System.Nullable<bool>>("ecer_employmentreferencereviewed");
640+
}
641+
[System.Diagnostics.DebuggerNonUserCode()]
642+
set
643+
{
644+
this.SetAttributeValue("ecer_employmentreferencereviewed", value);
645+
}
646+
}
647+
648+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_employmentreferencereviewedname")]
649+
public string ecer_employmentreferencereviewedName
650+
{
651+
[System.Diagnostics.DebuggerNonUserCode()]
652+
get
653+
{
654+
if (this.FormattedValues.Contains("ecer_employmentreferencereviewed"))
655+
{
656+
return this.FormattedValues["ecer_employmentreferencereviewed"];
657+
}
658+
else
659+
{
660+
return default(string);
661+
}
662+
}
663+
}
664+
665+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_generateapplication")]
666+
public System.Nullable<bool> ecer_GenerateApplication
667+
{
668+
[System.Diagnostics.DebuggerNonUserCode()]
669+
get
670+
{
671+
return this.GetAttributeValue<System.Nullable<bool>>("ecer_generateapplication");
672+
}
673+
[System.Diagnostics.DebuggerNonUserCode()]
674+
set
675+
{
676+
this.SetAttributeValue("ecer_generateapplication", value);
677+
}
678+
}
679+
680+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("ecer_generateapplicationname")]
681+
public string ecer_generateapplicationName
682+
{
683+
[System.Diagnostics.DebuggerNonUserCode()]
684+
get
685+
{
686+
if (this.FormattedValues.Contains("ecer_generateapplication"))
687+
{
688+
return this.FormattedValues["ecer_generateapplication"];
689+
}
690+
else
691+
{
692+
return default(string);
693+
}
694+
}
695+
}
696+
588697
/// <summary>
589698
/// Unique identifier for entity instances
590699
/// </summary>
@@ -950,6 +1059,43 @@ public Microsoft.Xrm.Sdk.EntityReference OwningUser
9501059
}
9511060
}
9521061

1062+
/// <summary>
1063+
/// Contains the id of the process associated with the entity.
1064+
/// </summary>
1065+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("processid")]
1066+
public System.Nullable<System.Guid> processid
1067+
{
1068+
[System.Diagnostics.DebuggerNonUserCode()]
1069+
get
1070+
{
1071+
return this.GetAttributeValue<System.Nullable<System.Guid>>("processid");
1072+
}
1073+
[System.Diagnostics.DebuggerNonUserCode()]
1074+
set
1075+
{
1076+
this.SetAttributeValue("processid", value);
1077+
}
1078+
}
1079+
1080+
/// <summary>
1081+
/// Contains the id of the stage where the entity is located.
1082+
/// </summary>
1083+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("stageid")]
1084+
[System.Obsolete("This attribute is deprecated.")]
1085+
public System.Nullable<System.Guid> stageid
1086+
{
1087+
[System.Diagnostics.DebuggerNonUserCode()]
1088+
get
1089+
{
1090+
return this.GetAttributeValue<System.Nullable<System.Guid>>("stageid");
1091+
}
1092+
[System.Diagnostics.DebuggerNonUserCode()]
1093+
set
1094+
{
1095+
this.SetAttributeValue("stageid", value);
1096+
}
1097+
}
1098+
9531099
/// <summary>
9541100
/// Status of the ICRA Eligibility Assessment
9551101
/// </summary>
@@ -1038,6 +1184,25 @@ public System.Nullable<int> TimeZoneRuleVersionNumber
10381184
}
10391185
}
10401186

1187+
/// <summary>
1188+
/// A comma separated list of string values representing the unique identifiers of stages in a Business Process Flow Instance in the order that they occur.
1189+
/// </summary>
1190+
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("traversedpath")]
1191+
[System.Obsolete("This attribute is deprecated.")]
1192+
public string traversedpath
1193+
{
1194+
[System.Diagnostics.DebuggerNonUserCode()]
1195+
get
1196+
{
1197+
return this.GetAttributeValue<string>("traversedpath");
1198+
}
1199+
[System.Diagnostics.DebuggerNonUserCode()]
1200+
set
1201+
{
1202+
this.SetAttributeValue("traversedpath", value);
1203+
}
1204+
}
1205+
10411206
/// <summary>
10421207
/// Time zone code that was in use when the record was created.
10431208
/// </summary>
@@ -1069,6 +1234,24 @@ public System.Nullable<long> VersionNumber
10691234
}
10701235
}
10711236

1237+
/// <summary>
1238+
/// 1:N bpf_ecer_icraeligibilityassessment_ecer_icraeligibilityassessmentbpf
1239+
/// </summary>
1240+
[Microsoft.Xrm.Sdk.RelationshipSchemaNameAttribute("bpf_ecer_icraeligibilityassessment_ecer_icraeligibilityassessmentbpf")]
1241+
public System.Collections.Generic.IEnumerable<ECER.Utilities.DataverseSdk.Model.ecer_icraeligibilityassessmentbpf> bpf_ecer_icraeligibilityassessment_ecer_icraeligibilityassessmentbpf
1242+
{
1243+
[System.Diagnostics.DebuggerNonUserCode()]
1244+
get
1245+
{
1246+
return this.GetRelatedEntities<ECER.Utilities.DataverseSdk.Model.ecer_icraeligibilityassessmentbpf>("bpf_ecer_icraeligibilityassessment_ecer_icraeligibilityassessmentbpf", null);
1247+
}
1248+
[System.Diagnostics.DebuggerNonUserCode()]
1249+
set
1250+
{
1251+
this.SetRelatedEntities<ECER.Utilities.DataverseSdk.Model.ecer_icraeligibilityassessmentbpf>("bpf_ecer_icraeligibilityassessment_ecer_icraeligibilityassessmentbpf", null, value);
1252+
}
1253+
}
1254+
10721255
/// <summary>
10731256
/// 1:N ecer_bcgov_documenturl_icraeligibilityassessmentid
10741257
/// </summary>

0 commit comments

Comments
 (0)