From e38ac57009674d80d80143b521394ddc0cfc7b3b Mon Sep 17 00:00:00 2001 From: Timaqt Date: Tue, 2 Jul 2024 15:50:02 -0700 Subject: [PATCH 01/33] EMBCESSMOD-4980 - Support start date and time automatically set to the next available slot based on the current ESS file (+ 1 minute) or defaults to current date/time --- .../support-details.component.ts | 71 +++++++++++++++---- 1 file changed, 57 insertions(+), 14 deletions(-) diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.ts index 0c673d79b..064b46465 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.ts @@ -173,6 +173,16 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { }; ngOnInit(): void { + this.supportListSubscription = this.stepSupportsService.getExistingSupportList().subscribe({ + next: (supports) => { + this.existingSupports = supports; + }, + error: (error) => { + this.alertService.clearAlert(); + this.alertService.setAlert('danger', globalConst.supportListerror); + } + }); + this.createSupportDetailsForm(); this.supportDetailsForm.get('noOfDays').valueChanges.subscribe((value) => { this.updateValidToDate(value); @@ -197,16 +207,6 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { } this.calculateNoOfDays(); - - this.supportListSubscription = this.stepSupportsService.getExistingSupportList().subscribe({ - next: (supports) => { - this.existingSupports = supports; - }, - error: (error) => { - this.alertService.clearAlert(); - this.alertService.setAlert('danger', globalConst.supportListerror); - } - }); } ngOnDestroy(): void { @@ -439,7 +439,6 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { } mapSubCategoryToCategory(subCategory: SupportSubCategory): SupportCategory { - console.debug(subCategory); switch (subCategory) { case SupportSubCategory.Food_Groceries: return SupportCategory.Food; @@ -547,7 +546,7 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { } else { return this.stepSupportsService?.supportDetails?.fromDate ? this.stepSupportsService?.supportDetails?.fromDate - : new Date(this.dateConversionService.convertStringToDate(this.datePipe.transform(Date.now(), 'dd-MMM-yyyy'))); + : this.createFromDate(); } } @@ -559,9 +558,53 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { } else { return this.stepSupportsService?.supportDetails?.fromTime ? this.stepSupportsService?.supportDetails?.fromTime - : this.currentTime; + : this.setDefaultTimes(); } } + private createFromDate() { + let existingSupports = this.existingSupports.filter((x) => x.status !== SupportStatus.Cancelled.toString()); + + const category: SupportCategory = + SupportCategory[this.stepSupportsService.supportTypeToAdd.value] || + this.mapSubCategoryToCategory(SupportSubCategory[this.stepSupportsService.supportTypeToAdd.value]); + + const largestTo = existingSupports + .filter((support) => support.category === category) + .reduce( + (maxTo, support) => { + const supportTo = moment(support.to); + return supportTo.isAfter(maxTo) ? new Date(supportTo.toDate().getTime() + 60000) : maxTo; + }, + new Date(this.dateConversionService.convertStringToDate(this.datePipe.transform(Date.now(), 'dd-MMM-yyyy'))) + ); + + return largestTo; + } + + private setDefaultTimes() { + let existingSupports = this.existingSupports.filter((x) => x.status !== SupportStatus.Cancelled.toString()); + + const category: SupportCategory = + SupportCategory[this.stepSupportsService.supportTypeToAdd.value] || + this.mapSubCategoryToCategory(SupportSubCategory[this.stepSupportsService.supportTypeToAdd.value]); + const maxToDate = existingSupports + .filter((support) => support.category === category) + .map((support) => new Date(support.to)) // Convert to Date objects + .reduce((max, date) => (date > max ? date : max), new Date(-8640000000000000)); // Compare dates and get the max + + // Add one minute to the maxToDate + const maxToDatePlusOneMinute = new Date(maxToDate.getTime() + 60000); + + // Get the current time + const currentDateTime = new Date(); + currentDateTime.setSeconds(0); + + // Compare and get the later time between maxToDatePlusOneMinute and currentTime + const finalTime = maxToDatePlusOneMinute > currentDateTime ? maxToDatePlusOneMinute : currentDateTime; + const largestToTime = finalTime.toTimeString().split(' ')[0]; + + return largestToTime; + } private setToTime() { if (this.evacueeSessionService.isPaperBased) { @@ -569,7 +612,7 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { } else { return this.stepSupportsService?.supportDetails?.toTime ? this.stepSupportsService?.supportDetails?.toTime - : this.currentTime; + : this.setDefaultTimes(); } } From 6148fff895fbf22678d82aff47b885cb0fd7abe2 Mon Sep 17 00:00:00 2001 From: Timaqt Date: Wed, 3 Jul 2024 21:18:17 -0700 Subject: [PATCH 02/33] EMBCESSMOD-5593 - Shelter Allowance Referral Form Content Updates --- .../ReferralPrinting/Views/Css.hbs | 9 +++++++++ .../ShelterAllowanceAdditionalInfoPartial.hbs | 4 ++-- .../ShelterAllowanceSupplierPartial.hbs | 13 ++++++++----- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/Css.hbs b/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/Css.hbs index 8b439d3ee..824d54e2b 100644 --- a/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/Css.hbs +++ b/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/Css.hbs @@ -612,5 +612,14 @@ border: 2px solid #000; height: 80px; margin-left: 20px; + position: relative; + } + + .corner-text { + position: absolute; + top: 0; + left: 0; + padding: 5px; + background-color: white; } \ No newline at end of file diff --git a/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/ShelterAllowance/ShelterAllowanceAdditionalInfoPartial.hbs b/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/ShelterAllowance/ShelterAllowanceAdditionalInfoPartial.hbs index c8d2a3941..a365a7ede 100644 --- a/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/ShelterAllowance/ShelterAllowanceAdditionalInfoPartial.hbs +++ b/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/ShelterAllowance/ShelterAllowanceAdditionalInfoPartial.hbs @@ -2,13 +2,13 @@

Payee information

+

The payee is the evacuee who will receive the shelter allowance by cheque.

Please complete before sending to Ministry of Emergency Management and Climate Readiness (EMCR).


{{ ContactName }}

{{ ContactPhone }}

{{ ContactEmail }}

-

Address cheque to be mailed to:

-
+
Address cheque to be mailed to:
\ No newline at end of file diff --git a/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/ShelterAllowance/ShelterAllowanceSupplierPartial.hbs b/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/ShelterAllowance/ShelterAllowanceSupplierPartial.hbs index 26bb56018..5c19239ea 100644 --- a/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/ShelterAllowance/ShelterAllowanceSupplierPartial.hbs +++ b/ess/src/API/EMBC.ESS/Engines/Supporting/SupportGeneration/ReferralPrinting/Views/ShelterAllowance/ShelterAllowanceSupplierPartial.hbs @@ -1,18 +1,21 @@ -

Reimbursement instructions

+

Claim instructions

\ No newline at end of file From 2106030bfa91f4746bd6fcc22ea0d89813082e59 Mon Sep 17 00:00:00 2001 From: Timaqt Date: Wed, 3 Jul 2024 23:33:44 -0700 Subject: [PATCH 03/33] EMBCESSMOD-5596 - Shelter Allowance Support Creation Updates - per-populated Payee Name --- .../shelter-allowance-delivery.component.html | 33 ++++++++++++------- .../shelter-allowance-delivery.component.scss | 12 +++++++ .../shelter-allowance-delivery.component.ts | 12 ++++++- 3 files changed, 44 insertions(+), 13 deletions(-) diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html index 640b97cc7..918987b29 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html @@ -1,4 +1,20 @@
+
+
+
+

+ Important information about Shelter Allowance referral +
+

  • Support is provided by cheque issued to the evacuee
  • +
  • + It can take 6-8 weeks to receive payment/cheque from the date the Referral
    + form is received by EMCR +
  • +

    +
    +
    +
    +

    Payee Details

    @@ -7,23 +23,16 @@
    -

    Full Name (including middle name if applicable)

    -

    Enter the name of the individual to whom reimbursement should be issued.

    +

    Full Name

    +

    Name of evacuee to whom cheque will be issued.

    - - Full Name - - @if ( - supportDeliveryFormControl?.hostName.invalid && - supportDeliveryFormControl?.hostName.hasError('whitespaceError') - ) { - Full Name is required - } - +

    + +

    diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.scss b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.scss index 0d41b399e..06ad140d8 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.scss +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.scss @@ -2,3 +2,15 @@ color: #234075; font-size: 21px; } +.information-notes { + background-color: rgba(35, 64, 117, 1); + width: 41%; + color: white; + margin-top: 20px; + padding: 20px; + margin-bottom: 40px; +} +.primary-paragraph { + margin-top: 10px; + margin-bottom: 10px; +} \ No newline at end of file diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.ts index 946d0591c..ca586f6dd 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.ts @@ -6,6 +6,7 @@ import { IMaskDirective } from 'angular-imask'; import { MatInput } from '@angular/material/input'; import { MatFormField, MatLabel, MatError } from '@angular/material/form-field'; +import { AppBaseService } from 'src/app/core/services/helper/appBase.service'; @Component({ selector: 'app-shelter-allowance-delivery', @@ -20,7 +21,7 @@ export class ShelterAllowanceDeliveryComponent implements OnInit, OnChanges { readonly phoneMask = globalConst.phoneMask; - constructor() {} + constructor(public appBaseService: AppBaseService) {} ngOnInit(): void { this.detailsForm @@ -36,6 +37,15 @@ export class ShelterAllowanceDeliveryComponent implements OnInit, OnChanges { .subscribe((value) => { this.detailsForm.get('hostPhone').updateValueAndValidity(); }); + + this.detailsForm + .get('hostName') + .setValue( + this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantLastName + + ' ' + + this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantFirstName + ); + this.detailsForm.get('hostName').disable(); } ngOnChanges(changes: SimpleChanges): void { From 73e7bb7fb54e6da1b65114b9e9e48e492007755c Mon Sep 17 00:00:00 2001 From: Timaqt Date: Fri, 5 Jul 2024 11:56:49 -0700 Subject: [PATCH 04/33] EMBCESSMOD-5619 - Content Updated for Shelter Allowance form --- .../shelter-allowance-delivery.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html index 918987b29..8766a9fa4 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html @@ -40,7 +40,7 @@

    Contact Information

    - Please provide at least 1 point of contact for the individual to whom reimbursement should be issued. + Please provide at least 1 point of contact for the evacuee to whom the cheque will be issued.

    From 80268d6ba80df36e88f9fc7f3308965e79d6bb1b Mon Sep 17 00:00:00 2001 From: Timaqt Date: Wed, 10 Jul 2024 20:39:57 -0700 Subject: [PATCH 05/33] EMBCESSMOD-5621 - Time issue fixed for DateTime conversion --- .../src/app/core/services/utility/dateConversion.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/responders/src/UI/embc-responder/src/app/core/services/utility/dateConversion.service.ts b/responders/src/UI/embc-responder/src/app/core/services/utility/dateConversion.service.ts index fd9c41041..fbf742900 100644 --- a/responders/src/UI/embc-responder/src/app/core/services/utility/dateConversion.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/services/utility/dateConversion.service.ts @@ -19,6 +19,7 @@ export class DateConversionService { createDateTimeString(date: string, time: string) { if (time && date) { const dateToDate = new Date(date); + dateToDate.setHours(0, 0, 0, 0); const hours = +time.split(':', 1).pop(); const minutes = +time.split(':', 2).pop(); From 4cc371985493078e3aaab32b79856f38d57a047c Mon Sep 17 00:00:00 2001 From: TimaQT <158625845+TimaQT@users.noreply.github.com> Date: Thu, 11 Jul 2024 12:51:35 -0700 Subject: [PATCH 06/33] EMBCESSMOD-5620, EMBCESSMOD-5622 - Support Delivery page issues (#2376) --- .../existing-support-details.component.ts | 1 + .../shelter-allowance-delivery.component.html | 17 ++++++++--------- .../shelter-allowance-delivery.component.ts | 18 ++++++++++-------- 3 files changed, 19 insertions(+), 17 deletions(-) diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/existing-support-details/existing-support-details.component.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/existing-support-details/existing-support-details.component.ts index 5f8090cb8..253e6eb62 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/existing-support-details/existing-support-details.component.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/existing-support-details/existing-support-details.component.ts @@ -412,6 +412,7 @@ export class ExistingSupportDetailsComponent implements OnInit { } getFirstLastNameFormatted(firstName: string, lastName: string): string { + if (!firstName && !lastName) return ''; return lastName.toUpperCase() + ', ' + firstName.charAt(0).toUpperCase() + firstName.slice(1).toLowerCase(); } } diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html index 8766a9fa4..c5fb6a646 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.html @@ -2,15 +2,14 @@
    -

    - Important information about Shelter Allowance referral +

    + Important Information about Shelter Allowance referral
    -
  • Support is provided by cheque issued to the evacuee
  • -
  • - It can take 6-8 weeks to receive payment/cheque from the date the Referral
    - form is received by EMCR -
  • -

    +
      +
    • Support is provided by cheque issued to the evacuee
    • +
    • It can take 6-8 weeks to receive payment/cheque from the date the Referral form is received by EMCR
    • +
    +
    @@ -31,7 +30,7 @@

    - + {{ detailsForm.get('hostName').value }}

    diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.ts index ca586f6dd..3ec72b671 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-delivery/delivery-types/shelter-allowance-delivery/shelter-allowance-delivery.component.ts @@ -37,15 +37,17 @@ export class ShelterAllowanceDeliveryComponent implements OnInit, OnChanges { .subscribe((value) => { this.detailsForm.get('hostPhone').updateValueAndValidity(); }); + let fullName = ''; + if (!this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantFirstName) + fullName = this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantLastName.toUpperCase(); + else + fullName = + this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantLastName.toUpperCase() + + ', ' + + this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantFirstName.charAt(0).toUpperCase() + + this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantFirstName.slice(1).toLowerCase(); - this.detailsForm - .get('hostName') - .setValue( - this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantLastName + - ' ' + - this.appBaseService?.appModel?.selectedEssFile?.primaryRegistrantFirstName - ); - this.detailsForm.get('hostName').disable(); + this.detailsForm.get('hostName').setValue(fullName); } ngOnChanges(changes: SimpleChanges): void { From 5c352c5a50da20ab4035cfdd96b053363976f236 Mon Sep 17 00:00:00 2001 From: TimaQT <158625845+TimaQT@users.noreply.github.com> Date: Fri, 12 Jul 2024 08:31:53 -0700 Subject: [PATCH 07/33] EMBCESSMOD-5627 - Task Start/End Date/Time validated against support interval (#2380) --- .../support-details.component.html | 34 +++++- .../support-details.component.ts | 113 ++++++++++++++++-- 2 files changed, 136 insertions(+), 11 deletions(-) diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.html b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.html index 3070bda62..89204186d 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.html @@ -237,7 +237,14 @@ ) { Please enter a valid date } - + @if ( + supportDetailsFormControl.fromDate.invalid && + supportDetailsFormControl.fromDate.hasError('invalidTaskDateTime') + ) { + The date and time must be within the Task's Start and End Date and Time + } @if ( supportDetailsFormControl.fromDate.invalid && supportDetailsFormControl.fromDate.hasError('required') @@ -262,6 +269,14 @@ ) { From Time is required } + @if ( + supportDetailsFormControl.fromTime.invalid && + supportDetailsFormControl.fromTime.hasError('invalidTaskDateTime') + ) { + The date and time must be within the Task's Start and End Date and Time + }
    @@ -308,7 +323,14 @@ ) { Please enter a valid date } - + @if ( + supportDetailsFormControl.toDate.invalid && + supportDetailsFormControl.toDate.hasError('invalidTaskDateTime') + ) { + The date and time must be within the Task's Start and End Date and Time + } @if ( supportDetailsFormControl.toDate.invalid && supportDetailsFormControl.toDate.hasError('required') @@ -333,6 +355,14 @@ ) { To Time Required } + @if ( + supportDetailsFormControl.toTime.invalid && + supportDetailsFormControl.toTime.hasError('invalidTaskDateTime') + ) { + The date and time must be within the Task's Start and End Date and Time + } diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.ts index 064b46465..e173cb240 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/support-components/support-details/support-details.component.ts @@ -1,5 +1,5 @@ import { DatePipe, NgStyle, UpperCasePipe, TitleCasePipe } from '@angular/common'; -import { Component, OnDestroy, OnInit } from '@angular/core'; +import { ChangeDetectionStrategy, Component, OnDestroy, OnInit } from '@angular/core'; import { AbstractControl, UntypedFormArray, @@ -8,7 +8,9 @@ import { UntypedFormGroup, Validators, FormsModule, - ReactiveFormsModule + ReactiveFormsModule, + ValidatorFn, + ValidationErrors } from '@angular/forms'; import { Router } from '@angular/router'; import { CustomValidationService } from 'src/app/core/services/customValidation.service'; @@ -58,6 +60,7 @@ import { MatCard, MatCardContent } from '@angular/material/card'; templateUrl: './support-details.component.html', styleUrls: ['./support-details.component.scss'], standalone: true, + changeDetection: ChangeDetectionStrategy.OnPush, imports: [ MatCard, MatCardContent, @@ -139,6 +142,65 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { this.currentTime = this.datePipe.transform(Date.now(), 'HH:mm'); } + compareTaskDateTimeValidator({ controlType, other }: { controlType: 'date' | 'time'; other: string }): ValidatorFn { + return (control: AbstractControl): ValidationErrors | null => { + let isValid = false; + const error = { invalidTaskDateTime: true }; + const otherControl = this.supportDetailsForm?.get(other); + // no need to validate if one of the controls does not have a value + if ( + control?.value === null || + control?.value === '' || + control?.value === undefined || + otherControl?.value === null || + otherControl?.value === '' || + otherControl?.value === undefined + ) { + isValid = true; + } else { + let controlDate; + if (controlType === 'date') { + controlDate = this.dateConversionService.createDateTimeString(control.value, otherControl.value); + } else if (controlType === 'time') { + controlDate = this.dateConversionService.createDateTimeString(otherControl.value, control.value); + } + + if (this.evacueeSessionService?.evacFile?.task?.from && this.evacueeSessionService?.evacFile?.task?.to) { + const from = moment(this.evacueeSessionService?.evacFile?.task?.from); + const to = moment(this.evacueeSessionService?.evacFile?.task?.to); + + isValid = moment(controlDate).isBetween(from, to, 'm', '[]'); + } else isValid = true; + } + if (!isValid) { + otherControl?.setErrors(error); + control?.setErrors(error); + } else { + if (control.errors) { + const errors = { ...control.errors }; // Copy the errors object + delete errors['invalidTaskDateTime']; // Remove the specific error + + if (Object.keys(errors).length === 0) { + control.setErrors(null); // No errors left, set to null + } else { + control.setErrors(errors); // Set the modified errors object + } + if (otherControl.errors) { + const errors = { ...otherControl.errors }; // Copy the errors object + delete errors['invalidTaskDateTime']; // Remove the specific error + + if (Object.keys(errors).length === 0) { + otherControl.setErrors(null); // No errors left, set to null + } else { + otherControl.setErrors(errors); // Set the modified errors object + } + } + } + } + return null; + }; + } + validDateFilter = (d: Date | null): boolean => { const date = d || new Date(); return moment(date).isBetween( @@ -568,7 +630,7 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { SupportCategory[this.stepSupportsService.supportTypeToAdd.value] || this.mapSubCategoryToCategory(SupportSubCategory[this.stepSupportsService.supportTypeToAdd.value]); - const largestTo = existingSupports + let largestTo = existingSupports .filter((support) => support.category === category) .reduce( (maxTo, support) => { @@ -577,6 +639,11 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { }, new Date(this.dateConversionService.convertStringToDate(this.datePipe.transform(Date.now(), 'dd-MMM-yyyy'))) ); + const taskTo = moment(this.evacueeSessionService?.evacFile?.task?.to); + + if (moment(largestTo).isAfter(taskTo)) { + largestTo = taskTo.toDate(); + } return largestTo; } @@ -600,9 +667,14 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { currentDateTime.setSeconds(0); // Compare and get the later time between maxToDatePlusOneMinute and currentTime - const finalTime = maxToDatePlusOneMinute > currentDateTime ? maxToDatePlusOneMinute : currentDateTime; - const largestToTime = finalTime.toTimeString().split(' ')[0]; + let finalTime = maxToDatePlusOneMinute > currentDateTime ? maxToDatePlusOneMinute : currentDateTime; + const taskTo = moment(this.evacueeSessionService?.evacFile?.task?.to); + if (moment(finalTime).isAfter(taskTo)) { + finalTime = taskTo.toDate(); + finalTime.setSeconds(0); + } + const largestToTime = finalTime.toTimeString().split(' ')[0]; return largestToTime; } @@ -621,17 +693,40 @@ export class SupportDetailsComponent implements OnInit, OnDestroy { */ private createSupportDetailsForm(): void { this.supportDetailsForm = this.formBuilder.group({ - fromDate: [this.setFromDate(), [this.customValidation.validDateValidator(), Validators.required]], - fromTime: [this.setFromTime(), [Validators.required]], + fromDate: [ + this.setFromDate(), + [ + this.customValidation.validDateValidator(), + Validators.required, + this.compareTaskDateTimeValidator({ + controlType: 'date', + other: 'fromTime' + }) + ] + ], + fromTime: [ + this.setFromTime(), + [Validators.required, this.compareTaskDateTimeValidator({ controlType: 'time', other: 'fromDate' })] + ], noOfDays: [ this.stepSupportsService?.supportDetails?.noOfDays ? this.stepSupportsService?.supportDetails?.noOfDays : '', [Validators.required] ], toDate: [ this.stepSupportsService?.supportDetails?.toDate ? this.stepSupportsService?.supportDetails?.toDate : '', - [this.customValidation.validDateValidator(), Validators.required] + [ + this.customValidation.validDateValidator(), + Validators.required, + this.compareTaskDateTimeValidator({ + controlType: 'date', + other: 'toTime' + }) + ] + ], + toTime: [ + this.setToTime(), + [Validators.required, this.compareTaskDateTimeValidator({ controlType: 'time', other: 'toDate' })] ], - toTime: [this.setToTime(), [Validators.required]], members: this.formBuilder.array([], [this.customValidation.memberCheckboxValidator()]), referral: this.supportDetailsService.generateDynamicForm(this.stepSupportsService?.supportTypeToAdd?.value), paperSupportNumber: [ From 8440302f55b6bfc537a47ee0b65ba5d534e432de Mon Sep 17 00:00:00 2001 From: TimaQT <158625845+TimaQT@users.noreply.github.com> Date: Wed, 17 Jul 2024 07:47:43 -0700 Subject: [PATCH 08/33] EMBCESSMOD-5601: Added isImportant Flag for Case Notes (#2387) --- .../Dynamics/DynamicsCsdl.xml | 6213 +- .../Connected Services/Dynamics/Reference.cs | 93720 ++++++++-------- .../Resources/Evacuations/Contract.cs | 1 + .../Resources/Evacuations/Mappings.cs | 2 + .../RegistrationsController.Files.cs | 1 + .../configuration/configuration-get-codes.ts | 8 +- .../configuration-get-communities.ts | 8 +- .../configuration-get-state-provinces.ts | 2 +- .../app/core/api/fn/profile/profile-update.ts | 9 +- .../registrations-audit-file-acccess.ts | 4 +- .../registrations-audit-registrant-access.ts | 4 +- .../registrations-cancel-support.ts | 7 - .../registrations-create-file-note.ts | 11 +- .../registrations-create-file.ts | 9 +- ...registrations-create-registrant-profile.ts | 9 +- .../registrations/registrations-get-file.ts | 9 +- .../registrations/registrations-get-files.ts | 17 +- .../registrations-get-registrant-profile.ts | 3 - .../registrations-get-security-phrase.ts | 3 - .../registrations-get-security-questions.ts | 3 - ...gistrations-invite-to-registrant-portal.ts | 4 +- ...ons-link-registrant-to-household-member.ts | 4 +- .../registrations-process-paper-referrals.ts | 11 +- .../registrations-process-supports.ts | 11 +- .../registrations-reprint-support.ts | 15 - ...ations-search-matching-evacuation-files.ts | 10 +- ...gistrations-search-matching-registrants.ts | 10 +- .../registrations-search-supports.ts | 54 +- .../fn/registrations/registrations-search.ts | 10 +- ...gistrations-set-file-note-hidden-status.ts | 11 - .../registrations-set-registrant-verified.ts | 7 - .../registrations-update-file-note-content.ts | 15 +- .../registrations-update-file.ts | 11 +- ...registrations-update-registrant-profile.ts | 11 +- .../registrations-verify-security-phrase.ts | 11 +- ...registrations-verify-security-questions.ts | 11 +- .../registrations-void-support.ts | 11 - .../reports/reports-create-evacuee-report.ts | 12 +- .../reports/reports-create-support-report.ts | 12 +- .../suppliers/suppliers-activate-supplier.ts | 3 - ...suppliers-add-supplier-shared-with-team.ts | 7 - .../fn/suppliers/suppliers-claim-supplier.ts | 3 - .../fn/suppliers/suppliers-create-supplier.ts | 9 +- .../suppliers-deactivate-supplier.ts | 3 - .../suppliers/suppliers-get-supplier-by-id.ts | 3 - .../fn/suppliers/suppliers-get-suppliers.ts | 11 +- ...pliers-remove-supplier-shared-with-team.ts | 7 - .../fn/suppliers/suppliers-remove-supplier.ts | 3 - .../fn/suppliers/suppliers-update-supplier.ts | 11 +- .../app/core/api/fn/tasks/tasks-get-task.ts | 3 - .../app/core/api/fn/tasks/tasks-sign-in.ts | 6 +- ...munities-assignments-assign-communities.ts | 9 +- ...es-assignments-get-assigned-communities.ts | 3 - ...munities-assignments-remove-communities.ts | 5 +- .../fn/teams/teams-activate-team-member.ts | 3 - .../api/fn/teams/teams-create-team-member.ts | 9 +- .../fn/teams/teams-deactivate-team-member.ts | 3 - .../api/fn/teams/teams-delete-team-member.ts | 3 - .../api/fn/teams/teams-get-team-member.ts | 3 - .../fn/teams/teams-get-teams-by-community.ts | 3 - .../api/fn/teams/teams-is-user-name-exists.ts | 2 +- .../api/fn/teams/teams-update-team-member.ts | 11 +- .../embc-responder/src/app/core/api/models.ts | 1 + .../src/app/core/api/models/address.ts | 4 +- .../app/core/api/models/assigned-community.ts | 10 +- .../app/core/api/models/clothing-support.ts | 2 +- .../src/app/core/api/models/code.ts | 9 +- .../src/app/core/api/models/community-code.ts | 2 +- .../app/core/api/models/contact-details.ts | 4 - .../src/app/core/api/models/ess-task.ts | 10 +- .../evacuation-file-household-member.ts | 8 +- ...ion-file-search-result-household-member.ts | 6 +- .../models/evacuation-file-search-result.ts | 10 +- .../api/models/evacuation-file-summary.ts | 4 +- .../models/evacuation-file-task-feature.ts | 2 +- .../core/api/models/evacuation-file-task.ts | 2 +- .../app/core/api/models/evacuation-file.ts | 34 +- .../core/api/models/food-groceries-support.ts | 2 +- .../models/get-security-phrase-response.ts | 2 +- .../models/get-security-questions-response.ts | 2 +- .../models/http-validation-problem-details.ts | 9 + .../core/api/models/incidentals-support.ts | 2 +- .../src/app/core/api/models/interac.ts | 4 +- .../api/models/lodging-allowance-support.ts | 4 +- .../api/models/lodging-billeting-support.ts | 10 +- .../core/api/models/lodging-group-support.ts | 10 +- .../api/models/member-label-description.ts | 6 +- .../src/app/core/api/models/member-label.ts | 6 +- .../api/models/member-role-description.ts | 6 +- .../src/app/core/api/models/member-role.ts | 4 - .../src/app/core/api/models/mutual-aid.ts | 2 +- .../app/core/api/models/needs-assessment.ts | 10 +- .../src/app/core/api/models/note.ts | 1 + .../app/core/api/models/oidc-configuration.ts | 8 +- .../app/core/api/models/outage-information.ts | 2 +- .../src/app/core/api/models/person-details.ts | 4 - .../src/app/core/api/models/pet.ts | 4 - .../app/core/api/models/problem-details.ts | 2 +- .../models/referral-print-request-response.ts | 2 +- .../src/app/core/api/models/referral.ts | 6 +- .../registrant-profile-search-result.ts | 8 +- .../app/core/api/models/registrant-profile.ts | 6 +- .../core/api/models/registration-result.ts | 2 +- .../src/app/core/api/models/search-results.ts | 4 +- .../app/core/api/models/supplier-contact.ts | 8 +- .../app/core/api/models/supplier-list-item.ts | 10 +- .../app/core/api/models/supplier-result.ts | 2 +- .../core/api/models/supplier-team-details.ts | 4 +- .../src/app/core/api/models/supplier-team.ts | 4 +- .../src/app/core/api/models/supplier.ts | 8 +- .../core/api/models/suppliers-list-item.ts | 6 +- .../src/app/core/api/models/task-workflow.ts | 2 +- .../app/core/api/models/team-member-result.ts | 2 +- .../src/app/core/api/models/team-member.ts | 8 +- .../src/app/core/api/models/team.ts | 4 - .../api/models/update-user-profile-request.ts | 4 +- .../src/app/core/api/models/user-profile.ts | 16 +- .../api/services/configuration.service.ts | 25 +- .../app/core/api/services/profile.service.ts | 32 +- .../api/services/registrations.service.ts | 334 +- .../core/api/services/suppliers.service.ts | 92 +- .../app/core/api/services/tasks.service.ts | 16 +- .../team-communities-assignments.service.ts | 34 +- .../app/core/api/services/teams.service.ts | 100 +- .../ess-file-notes.component.html | 5 +- .../ess-file-notes.component.scss | 10 + .../add-notes/add-notes.component.html | 7 + .../add-notes/add-notes.component.ts | 50 +- .../list-notes/list-notes.component.html | 3 + .../list-notes/list-notes.component.scss | 9 + .../notes/notes.component.html | 21 +- .../notes/notes.component.scss | 11 + .../notes/notes.component.spec.ts | 6 +- .../notes-components/notes/notes.module.ts | 3 +- .../wizard/step-notes/step-notes.service.ts | 7 +- .../assets/images/exclamation-mark-red.svg | 4 + .../Events/EvacuationFiles.cs | 1 + 137 files changed, 50537 insertions(+), 50954 deletions(-) create mode 100644 responders/src/UI/embc-responder/src/app/core/api/models/http-validation-problem-details.ts create mode 100644 responders/src/UI/embc-responder/src/assets/images/exclamation-mark-red.svg diff --git a/ess/src/API/EMBC.ESS.Utilities.Dynamics/Connected Services/Dynamics/DynamicsCsdl.xml b/ess/src/API/EMBC.ESS.Utilities.Dynamics/Connected Services/Dynamics/DynamicsCsdl.xml index dcdfa29f6..c345eabb8 100644 --- a/ess/src/API/EMBC.ESS.Utilities.Dynamics/Connected Services/Dynamics/DynamicsCsdl.xml +++ b/ess/src/API/EMBC.ESS.Utilities.Dynamics/Connected Services/Dynamics/DynamicsCsdl.xml @@ -20,30 +20,30 @@ - + - - + + - + - - - + + + - - + + - + @@ -52,17 +52,17 @@ - - - - - - + + + + + + @@ -194,159 +194,159 @@ - - + - - - + + - + + + + + - - - + - - + + - + - + - + - - + - + - - + + + - - - + - + - - - - - + + - + - + + - + + - - - - + + - - - + + - + - - + + + + + - - + + + + + - + + + - - - + + - + + - - + - + - + - - + + - @@ -484,18 +484,18 @@ + - + - @@ -517,7 +517,7 @@ - + @@ -526,7 +526,6 @@ - @@ -536,10 +535,11 @@ + - + @@ -630,29 +630,29 @@ - - + + + + + + - - - - + - + - @@ -672,33 +672,33 @@ + - - + + - - - + + - - - - + + + + - + @@ -739,24 +739,24 @@ - + - + + + + - - - - - + + @@ -838,55 +838,55 @@ - - + + - - + - + - + - - + + - + - + + - + - + + + - - + - + - + - - - + + @@ -1037,33 +1037,33 @@ - + + - + - - + - + + - - + + - - + @@ -1258,12 +1258,12 @@ + - + - @@ -1295,26 +1295,26 @@ + - + - + - - - + + @@ -1383,21 +1383,21 @@ - + - - + + + - + - @@ -1427,6 +1427,7 @@ + @@ -1439,7 +1440,6 @@ - @@ -1469,13 +1469,13 @@ - + - - + + @@ -1484,20 +1484,21 @@ + - - - + + + @@ -1510,12 +1511,11 @@ - - + - + @@ -1572,17 +1572,17 @@ + + + - - - @@ -1648,57 +1648,57 @@ - + + + + - - - + + - + - - + - - - + + + - + - - + + - - + + + - + + - - - @@ -2606,15 +2606,15 @@ - + - + + - @@ -2646,18 +2646,18 @@ - - - + - - - + + + + + @@ -2669,14 +2669,14 @@ - + - - + - + + @@ -2691,7 +2691,6 @@ - @@ -2699,6 +2698,7 @@ + @@ -2706,18 +2706,18 @@ - - - - + + + + - - + + + - @@ -2778,36 +2778,36 @@ - + - - - + + - + + + + + + + - - + + - + + - + - - - - - - @@ -2878,27 +2878,27 @@ - - + + - - + + - + + - - - + + @@ -2940,28 +2940,28 @@ - + + - - + + - - - + + + - + - - + @@ -3016,26 +3016,26 @@ + + - - + - - - + - + - + + @@ -3087,30 +3087,30 @@ - - + + + - + - + + + - + - - + - - - - + + @@ -3163,21 +3163,22 @@ - + + + - - - + + @@ -3186,7 +3187,6 @@ - @@ -3247,29 +3247,29 @@ - + - - - + + - - - + + + + - - - + + + @@ -3314,12 +3314,12 @@ + - @@ -3346,10 +3346,10 @@ + - @@ -3374,7 +3374,6 @@ - @@ -3383,6 +3382,7 @@ + @@ -3460,7 +3460,7 @@ - + @@ -3470,12 +3470,12 @@ - + @@ -3553,14 +3553,14 @@ - - + + @@ -4367,27 +4367,27 @@ + - + - - - + + - + + - @@ -4413,25 +4413,25 @@ - + + - + - - - + - + + @@ -4478,17 +4478,17 @@ - - - + + - - + + + - + @@ -4546,25 +4546,25 @@ - - - + - + + - + + + + - - + - @@ -4588,79 +4588,79 @@ - - - + - - + - - + - - - - - - - + + + + + + + + - - + - + - + + + - + - - - + + + - - + - + - + + + - + - + + + - @@ -4890,39 +4890,39 @@ - + - - + - + - + - - - + + + - + - - + - + + + - + + + - - - + @@ -4960,9 +4960,9 @@ - + @@ -5005,24 +5005,24 @@ - + - + - + - + @@ -5053,11 +5053,11 @@ - - - + + + @@ -5119,19 +5119,19 @@ - - - - + + + + + - + - @@ -5146,15 +5146,15 @@ - + - - + + @@ -5173,6 +5173,7 @@ + @@ -5181,7 +5182,6 @@ - @@ -5241,59 +5241,59 @@ - + - + - + - - + + + - - - + + + + - + - - - + + + + - + - - - + - - + + - @@ -5371,65 +5371,65 @@ - - - - - + + - - - + + + + - - + - - - - - + + - - + + + + - - + - + + + - + + - + - - + + + + - + - + - - + + @@ -5524,21 +5524,21 @@ - - - + - + + + - + @@ -5556,28 +5556,28 @@ + - + + - - - + + - - - - + + + - + @@ -5619,31 +5619,31 @@ - - - - + + + - - + + + - - + + - + + - @@ -5698,23 +5698,23 @@ + - + + - + - - - - - - + + + + @@ -5766,28 +5766,28 @@ - - + + - + - + - - + + - - + + - + @@ -5830,27 +5830,27 @@ + + + - + - - - + + + - - + - - - + @@ -5878,6 +5878,7 @@ + @@ -5887,27 +5888,26 @@ - - + - - + + + + - - - - + + @@ -5951,89 +5951,89 @@ - - + + - + - + + - - + + - + + - - - + + + + - - + + + - + - + - + - - - + + + - + - + - + - + - - - - - + + - @@ -6084,9 +6084,9 @@ - - + + @@ -6097,18 +6097,18 @@ + - + - - + - + - + @@ -6119,36 +6119,36 @@ - - - - + + + - + + - + - + - - + + - + + + + + - - - + - - - - + + @@ -6219,26 +6219,26 @@ - - - + - + - - - + + + - + - + + + @@ -6559,13 +6559,13 @@ + - @@ -6625,23 +6625,23 @@ - - + + - + - + @@ -6719,12 +6719,12 @@ - + - + @@ -6752,147 +6752,154 @@ - + + - + - - + + - - + - + - - + - + - + + - - + + + - + - - + + - - - + + + + + + + - - + + - + - + - + + - - + + - - + + + - + + + + - + - - - + + + + - + - + - - - - - + + - - + @@ -6902,84 +6909,77 @@ - - - - - + - - - + + - + - + - + - - + + + - - + - + - - - - - - - + + - + + - + - + + - - + + - + + @@ -7161,9 +7161,7 @@ - - - + @@ -7171,21 +7169,21 @@ + - - + + + - - - - + + @@ -7198,18 +7196,20 @@ - + - + + - + + @@ -7272,53 +7272,53 @@ - - - + + + - + + + + + - + - - - + - - + - + + - - - + - - + - - - - + + + + + @@ -7404,33 +7404,33 @@ + - - - + + - - + + + - + + - - + - @@ -7459,30 +7459,30 @@ - - + + - - + + - + - - + + - - + + @@ -7526,13 +7526,13 @@ - + @@ -7545,15 +7545,15 @@ - + + - @@ -7620,36 +7620,36 @@ - - - + + - + - - - + + + - + - - - + + + + - - + + @@ -7818,21 +7818,21 @@ + - - - + + + - + - - + @@ -7856,13 +7856,13 @@ + - - + @@ -7903,23 +7903,23 @@ - - + - + + - + + - - + @@ -7949,7 +7949,6 @@ - @@ -7970,7 +7969,6 @@ - @@ -7979,8 +7977,10 @@ + + @@ -8019,7 +8019,6 @@ - @@ -8028,13 +8027,15 @@ - - + + + + @@ -8045,7 +8046,6 @@ - @@ -8226,35 +8226,35 @@ - + - - + - - + - + + + - - - + - + + + @@ -8336,35 +8336,35 @@ - - + + - + + - - - + + + - - - + - - + + + + - @@ -8448,13 +8448,13 @@ - + - + @@ -8465,28 +8465,28 @@ - + + + - - + + - - - + - + @@ -8516,25 +8516,25 @@ + - - + - + + - + - @@ -8567,24 +8567,24 @@ - - + + - - - - + + + + @@ -8645,13 +8645,13 @@ - + - - + + @@ -9451,22 +9451,22 @@ - - - + + + - + @@ -9488,31 +9488,31 @@ - - - + - - + + + + - - - + + + - + - + @@ -9628,25 +9628,25 @@ + - - - + - - - + + + + + - - - - - + + + - + + @@ -9688,18 +9688,16 @@ - + - - - - + + + + - - @@ -9707,9 +9705,11 @@ - - + + + + @@ -9765,20 +9765,20 @@ - + - - + - - + + + - - + + @@ -9817,50 +9817,50 @@ - - - - - + - - - - + - + + - + + + + - - + - + - - + + + + + + + - - + - + @@ -9956,8 +9956,7 @@ - - + @@ -9965,68 +9964,69 @@ - - - - + + + + + - - - - - - - + + + - - + + + - + - + + - - + + + - + - + - - + + + + - + - - + + - - + @@ -10067,26 +10067,26 @@ - - + + + - - + @@ -10118,13 +10118,13 @@ - + - + @@ -10137,7 +10137,7 @@ - + @@ -10188,11 +10188,11 @@ + - @@ -10205,24 +10205,24 @@ - - - - + + + + + + + - - - @@ -10260,14 +10260,14 @@ + - - + @@ -10278,15 +10278,18 @@ - - + - + + + + + @@ -10296,8 +10299,6 @@ - - @@ -10305,17 +10306,16 @@ - - - + + + - @@ -10402,22 +10402,22 @@ - - + + - - + - - + + - + + @@ -10471,31 +10471,31 @@ - - - + - + - + - + + - + + + - - + @@ -10549,18 +10549,18 @@ - + + - - + @@ -10583,20 +10583,20 @@ - - - + + + - + + - @@ -10624,10 +10624,10 @@ + - - + @@ -10671,7 +10671,6 @@ - @@ -10702,6 +10701,7 @@ + @@ -10742,32 +10742,32 @@ + + - + + - - - - + - + + - - - + + - + @@ -10810,31 +10810,31 @@ - - - + + - + + + - - - + - - + + + @@ -10886,26 +10886,26 @@ - - + + + - - - + + + - - - - - - + + + + - + - + + @@ -10947,31 +10947,31 @@ + - - + + + + + - - - - - + + + + - + - - - - - + - + + @@ -11014,9 +11014,9 @@ - + - + @@ -11026,13 +11026,13 @@ + - - - + + @@ -11071,11 +11071,10 @@ + - - - + @@ -11083,14 +11082,15 @@ - + + - - - + + + @@ -11133,27 +11133,27 @@ - + + + - - - + + - - + @@ -11181,18 +11181,17 @@ - + + - - - + - + @@ -11201,6 +11200,7 @@ + @@ -11228,32 +11228,32 @@ + - + - - + + - - + + + - - + + - - + - @@ -11307,26 +11307,26 @@ - + - - + + + - - + + + - - @@ -11370,22 +11370,22 @@ - - - + - + + + - - + + - + - + @@ -11463,29 +11463,29 @@ + + - + + - - - + + + - - - - - - + + + @@ -11522,29 +11522,30 @@ + + - - + + + + - - - - + + + - - - - - + + + @@ -11603,10 +11604,10 @@ - + @@ -11641,33 +11642,33 @@ - - + + - - + - + + - + - - + + + - @@ -11712,8 +11713,8 @@ - + @@ -11723,13 +11724,13 @@ + - @@ -11778,21 +11779,21 @@ - - - - + + - - + + + + @@ -11839,6 +11840,7 @@ + @@ -11855,9 +11857,8 @@ - - + @@ -11911,32 +11912,32 @@ - - + - - - - + + + - - + + + + + - + + + - - - - - + + @@ -12000,30 +12001,30 @@ + + - - + - - + - + @@ -12075,58 +12076,58 @@ - + + - - + + + - + + + - - + - + - - - + - - + + + + - - + + - - - - + + - - - + - + + @@ -12189,28 +12190,28 @@ - - + + - - + + - - + + + - - + @@ -12253,83 +12254,83 @@ - + + + + - - - - - + + + - - - + - - + - + - - - + - - + + - + + + - + + - + - + - + + @@ -12405,35 +12406,37 @@ - - - - - - - - - - - - - - - + + - + - - - + + + + + + + + + - + + + + + + + - + + + + @@ -12479,25 +12482,25 @@ - + - + - + - - + + + + - - - + @@ -12559,53 +12562,53 @@ - - + + + - + - - + + - + + - - + - - + - + + - + - + - @@ -12670,25 +12673,25 @@ - + + - - - + + @@ -12743,13 +12746,14 @@ + + + + - - - @@ -12758,7 +12762,6 @@ - @@ -12807,14 +12810,14 @@ - + + - @@ -12867,25 +12870,25 @@ - - + - - - - + - + + + + - - - + - + + + + @@ -12930,38 +12933,38 @@ - + - - + - + - - - + - + + + + - + - + @@ -13007,21 +13010,21 @@ + + - - - + - + @@ -13056,37 +13059,37 @@ + + - - + + - - - - - - - + + - + + + + + + - + - - - + @@ -13133,33 +13136,33 @@ - + + - - + + - + + + - + - - - + - - - + + @@ -13206,73 +13209,73 @@ - - + + - - + - - - - - + + + + + + + + - + + - + + + - - - - + + + - - + - - + + + + - - - - + + - - + - - - + @@ -13350,33 +13353,33 @@ - - - - + + - + - + + + - - - + + + - + - - - + + + - + @@ -13385,19 +13388,19 @@ - - + + - + - - + + @@ -13460,31 +13463,31 @@ - - + - - - - - + + - + + - - + - + + + + + @@ -13547,29 +13550,29 @@ + - - + + + - + - - - + + - @@ -13752,7 +13755,7 @@ - + @@ -13761,11 +13764,10 @@ - - + - + @@ -13775,8 +13777,9 @@ + - + @@ -13824,23 +13827,23 @@ - + - + - - + - - - + + - + + + @@ -13881,7 +13884,6 @@ - @@ -13905,13 +13907,14 @@ - + + @@ -14007,25 +14010,25 @@ + - - + - - + + + - - + + - + - @@ -14068,20 +14071,20 @@ - - + + - + @@ -14123,17 +14126,17 @@ - - - + + + - - - - + + + + @@ -14278,19 +14281,19 @@ - - - + + + @@ -14349,8 +14352,8 @@ - + @@ -14480,6 +14483,7 @@ + @@ -14488,26 +14492,25 @@ - + - - + - - + + - + @@ -14548,26 +14551,26 @@ + + + - - + - + - - - - - + + + - + @@ -14617,16 +14620,17 @@ - + + + - + - - + @@ -14637,10 +14641,10 @@ - - + - + + @@ -14648,17 +14652,15 @@ - - + - - + @@ -14669,24 +14671,25 @@ + - - + - + + - + @@ -14777,25 +14780,25 @@ + - - - - - + + - - - + + + + + @@ -14833,21 +14836,21 @@ - + - + - - + + @@ -14872,50 +14875,50 @@ + - - - - - - + + + - - - + + + - + - + - - - - + + - + + + + - + + @@ -14962,25 +14965,25 @@ + + - - + + - - + + + + - - - - - + @@ -15005,24 +15008,24 @@ - - + - - + + + @@ -15086,11 +15089,11 @@ - + @@ -15131,23 +15134,23 @@ - - + + - - + + @@ -15251,90 +15254,90 @@ - - - - - - + - + + - - + - - + + - - - + + + - + - + + - - - + + - - + - - + + - - - - - - + + + - - + + + + + + + + + - + + - - - + + - - - - + + + - + + + + @@ -15463,15 +15466,16 @@ - + + - + @@ -15480,14 +15484,13 @@ - + - + - @@ -15550,76 +15553,76 @@ + - - - - - + + + - - + + + + - - + + - - + - + - - - - + + - + + - - + - + + - - + + - - - + + + - - + + - + + - + - + @@ -15681,7 +15684,6 @@ - @@ -15690,14 +15692,13 @@ - + - + - @@ -15705,34 +15706,31 @@ - - + - + - + - - + - @@ -15742,13 +15740,15 @@ - + + + @@ -15756,18 +15756,21 @@ + + + @@ -15889,34 +15892,34 @@ - - + + + + - - - - + + - + + - + - - - + + - + @@ -15960,27 +15963,27 @@ - - + + - + + - - + - - + + @@ -16016,17 +16019,17 @@ + - - + @@ -16077,13 +16080,14 @@ + - + - + - + @@ -16092,50 +16096,49 @@ - - + + + + + - - - + + + - - + + + + - - + + - - - + + - - - - + + - - + - - + - + - @@ -16235,28 +16238,28 @@ - + - + - + - + + - + - + - @@ -16349,15 +16352,15 @@ + - - - + + @@ -16482,16 +16485,15 @@ - + - - + @@ -16499,136 +16501,137 @@ - + + - - - + + - - + - + - + + + + - - + + - + - - - + + + - - + + - - - + + + + - - - - - - + + - - + + + + + - + + + - + - - - + + - - - - - - + + + - + - + - + - + + + - - + + - - + + + - - + - @@ -16752,9 +16755,9 @@ - + @@ -16884,23 +16887,23 @@ - - + + - - - + + + @@ -16924,33 +16927,33 @@ + - - + + - + - - + - - - + + + - + - + - + + - @@ -17083,27 +17086,27 @@ + - + + - - + + - + + - - - - + @@ -17134,10 +17137,10 @@ + - @@ -17154,7 +17157,6 @@ - @@ -17162,16 +17164,18 @@ + + - + @@ -17203,7 +17207,6 @@ - @@ -17293,19 +17296,19 @@ - + + - - + + + - - @@ -18090,22 +18093,22 @@ + - + - - + @@ -18135,13 +18138,15 @@ - + - + + + @@ -18149,11 +18154,9 @@ - - @@ -18180,33 +18183,33 @@ - - + + - - - + + + + - + - - + - + - + + - @@ -18230,16 +18233,16 @@ - + - + @@ -18253,7 +18256,7 @@ - + @@ -18291,24 +18294,24 @@ - + - + + - @@ -18352,12 +18355,13 @@ + + - @@ -18370,7 +18374,6 @@ - @@ -18457,23 +18460,23 @@ - - + + + - + - + - @@ -18514,28 +18517,28 @@ + + + - - - + - + + - - + + - - + - + - @@ -18599,27 +18602,27 @@ - - - - + + + - - + + + - + - - + + - + @@ -18661,26 +18664,26 @@ - - + + + + - - - + + + - + - + - - @@ -18724,13 +18727,11 @@ - - - + @@ -18739,8 +18740,10 @@ + + @@ -18791,21 +18794,21 @@ + - + - + - - + - + @@ -18847,36 +18850,36 @@ - + - + - - - - + + + - + - + - - + + + @@ -18939,52 +18942,52 @@ + - + + + + - + + - - - + + + + - + - + - + - - - + - + - - - - @@ -19038,21 +19041,21 @@ + - - - - - + + + + - - + + @@ -19122,13 +19125,14 @@ - + + + - @@ -19141,7 +19145,6 @@ - @@ -19199,25 +19202,25 @@ + - + + - + - - + - - - + + - + @@ -19282,28 +19285,28 @@ - + - - - + + + + - + - + + - - - - + + + - - + @@ -19371,15 +19374,15 @@ - + - - - + + + @@ -19387,9 +19390,9 @@ - + + - @@ -19434,21 +19437,21 @@ - + - - + - + + @@ -19591,28 +19594,28 @@ - - + + - + + + - - + + - - - - + + @@ -19733,21 +19736,21 @@ - + + - - - - + + + @@ -19850,19 +19853,19 @@ - - + + @@ -19893,31 +19896,31 @@ + + - - - + + + - - - + + - + - @@ -19954,24 +19957,24 @@ - - + - - - + + + + - - - + + + @@ -20006,22 +20009,22 @@ + + - + - + - - @@ -20069,25 +20072,25 @@ - + + - + - - + + - @@ -20096,9 +20099,9 @@ - - - + + + @@ -20137,30 +20140,30 @@ + - - - - - - + + + + - - + - - + - + + + + @@ -20188,31 +20191,31 @@ - + + - - - - - - + + + - + - - - + + + + - + + - + @@ -20250,29 +20253,29 @@ - - - + - - - - + + - + + - + + + + @@ -20314,15 +20317,14 @@ - - - - - + + + - + + @@ -20334,6 +20336,7 @@ + @@ -20373,10 +20376,10 @@ + - @@ -20442,32 +20445,32 @@ - - + + + + + + + + + - - - - - + + + - + - - - - - + - @@ -20510,34 +20513,34 @@ - - - + - - + + + - + - - + + + - - - + + + @@ -20577,22 +20580,22 @@ + - - - + - + - + - + + @@ -20672,27 +20675,27 @@ - - + + + - + + - - + - @@ -20733,64 +20736,64 @@ - - - + + + + - - + + - + - + - - + + - - - - - - + - - - - + + + + + + + + + - + - + + - + - - - + + + - - @@ -20837,26 +20840,26 @@ + - - - - + + + - + + - - + @@ -20900,9 +20903,10 @@ - + + @@ -20915,9 +20919,8 @@ - - + @@ -20958,32 +20961,32 @@ - - + + + - - - + - + + - - + + @@ -21060,31 +21063,31 @@ - - + - + - - + - - - - + + + + - - + - - - + + + + + + @@ -21130,19 +21133,19 @@ - - + + @@ -21209,9 +21212,9 @@ - - + + @@ -21220,7 +21223,7 @@ - + @@ -21249,25 +21252,25 @@ - - + + - - - - - + + + + + @@ -21302,22 +21305,22 @@ + - + - + - @@ -21369,10 +21372,11 @@ - + + @@ -21384,7 +21388,6 @@ - @@ -21423,23 +21426,23 @@ - + - + + + + - - + - - @@ -21480,24 +21483,24 @@ - + + + + + - - - - - - + + @@ -21537,22 +21540,22 @@ - + - - + - - - - + + + + + @@ -21595,16 +21598,18 @@ - + + + @@ -21616,16 +21621,14 @@ - - - + @@ -21648,27 +21651,27 @@ - - + + + + - - + - - - + + - - + + + - @@ -21682,22 +21685,22 @@ - + + - - - + + - + + - @@ -21711,24 +21714,24 @@ - + + - - - - - - - - + + + + + + + + - @@ -21741,6 +21744,7 @@ + @@ -21748,29 +21752,28 @@ - + - - - + - - - + - + + - + + + @@ -21795,31 +21798,31 @@ - - + + + + - + - - - - + + @@ -21846,25 +21849,25 @@ + - + - - - - - + + - + + - + + - + @@ -21902,29 +21905,29 @@ - + + + - + + + - + + - - + - - - - - - + + @@ -21952,28 +21955,28 @@ - + - - + + - - - + + + + - - - + + - + - + @@ -22011,20 +22014,20 @@ - - + - + - + + - + @@ -22055,29 +22058,29 @@ + - - + - + - - + - + + @@ -22115,6 +22118,7 @@ + @@ -22130,7 +22134,6 @@ - @@ -22183,27 +22186,27 @@ + - + - - - + - + + + - @@ -22242,33 +22245,33 @@ + + - - - - - + + + + - - + - + - + - + @@ -22293,12 +22296,13 @@ + - - - + + + @@ -22306,11 +22310,10 @@ - - + @@ -22349,29 +22352,29 @@ - - - - + + + - - - + + + + - + - - + + @@ -22407,34 +22410,34 @@ - + + - - - - - - + + + + + + + - - - + - - - + - + + + @@ -22454,22 +22457,27 @@ - + + - + + + - - + - - - + + + + - + + + @@ -22477,90 +22485,85 @@ - - + - - + - - - - - + - - + - + + + + - + + + - - - - + - + + + + - + - - - + + + - - - + - - - + - - - + + - + + + + - + - + - @@ -22671,11 +22674,11 @@ + - @@ -22743,39 +22746,40 @@ - + - - + + + + - + + + - - - - - + + - + + - @@ -22783,20 +22787,19 @@ - - + + - - - - + + - + + @@ -22850,7 +22853,6 @@ - @@ -22858,25 +22860,26 @@ + + - - - - + + + @@ -22954,13 +22957,13 @@ - + @@ -23006,14 +23009,15 @@ - - + + + - + @@ -23021,43 +23025,44 @@ - - - + - - + + - + - - + - + + + - - + + + + @@ -23065,93 +23070,97 @@ - - + + - - + - + - - + - + - - + + + - - - + + + + - - + + + + + + - + - - + - + + - + - - + + + - - + - - + + - + + - + - - + - - + + - - + + + - @@ -23160,102 +23169,99 @@ + - + - - - + + - - + + - - - + + - + - + + + + - - + + - - + + - - + - + - + - + + - - - - - + - - + - + - + - + - - + + - + - - + - - - + + - - + + + + @@ -23264,82 +23270,79 @@ - - - + - - - - - + + + - - + + - - + - - + - - + + + + - + - - + + - - - + + + - + + + - - - - + + + - + - + @@ -23347,11 +23350,11 @@ - + - - + + @@ -23512,27 +23515,27 @@ - - - - + + + + - + + - - - - + + - - + + + @@ -23754,28 +23757,28 @@ - - + + - - - + + - + + @@ -23806,25 +23809,25 @@ + - + - + + - - + - @@ -23917,30 +23920,30 @@ - + - + - - - - + + - - + + - - + + + + @@ -23982,22 +23985,22 @@ + - - + - - + + @@ -24020,41 +24023,41 @@ + - + + + - - + + - + - - - + + + - + - - - + + - - - + @@ -24079,29 +24082,29 @@ + + + - - + - - - - + + - + - + - - - + + + @@ -24113,31 +24116,31 @@ - - + - - + - + + - + + + - + + - - + - + - @@ -24171,23 +24174,23 @@ - + - - - - + + + - + + @@ -24213,26 +24216,26 @@ + - - + + - + + - - + - + - - + @@ -24267,15 +24270,15 @@ + - + - - + @@ -24365,11 +24368,11 @@ - - + + @@ -24446,14 +24449,14 @@ - + - + @@ -24485,29 +24488,29 @@ - + - - + + + + - + + - + - - - @@ -25330,12 +25333,11 @@ - - + - + @@ -25344,6 +25346,7 @@ + @@ -25358,40 +25361,40 @@ + - - - - - - + + + + + + - - - - + - + + + - + @@ -26123,18 +26126,18 @@ - + - - + - + + @@ -26174,6 +26177,7 @@ + @@ -26181,12 +26185,11 @@ - - + - + @@ -26235,29 +26238,29 @@ - + + - - + + + - - - + + - + - @@ -26284,28 +26287,28 @@ - - + - + - + - - + + + - - + + @@ -26352,36 +26355,36 @@ + + + - + + - + - - - - - - - - - + + + + - + + - + - + @@ -26428,20 +26431,24 @@ - + + + - - + + + + - + - - + + + - @@ -26454,38 +26461,34 @@ - + + - + + - - - + - - - - + + + - - - - + @@ -26575,25 +26578,25 @@ - - + + + - - + @@ -26632,12 +26635,12 @@ - - - - + + + + @@ -26652,39 +26655,39 @@ - + + - + + - - + - + - + - - - - - + + + + + - - + @@ -26705,71 +26708,71 @@ - + - - + - + - + - - + - + + - + + + + - + - + - - - + - + - + + - - - + + + + + - - - - - + + + - + - @@ -26796,29 +26799,29 @@ - + - - + + + - + - @@ -26850,7 +26853,6 @@ - @@ -26868,6 +26870,7 @@ + @@ -26945,43 +26948,43 @@ + - - - - + + + - + - - - + + + + + - - + - - + @@ -27032,12 +27035,12 @@ - + @@ -27086,72 +27089,72 @@ - - + - - - - + + + + + + - + + + - - - + + + - + - + - - + - - + - + - - + + - - + - + + + - + + - - - - - + + @@ -27217,10 +27220,12 @@ + + @@ -27234,12 +27239,11 @@ - + - - + @@ -27247,16 +27251,15 @@ - - + - - + + @@ -27269,12 +27272,12 @@ - + - + @@ -27392,16 +27395,16 @@ + - + - @@ -27454,28 +27457,28 @@ + + + - - - - - - + + + - - + + + - - + @@ -27522,35 +27525,35 @@ - - - - + - + + - - + + - - - + + + + - + - + - - + + + @@ -27592,7 +27595,7 @@ - + @@ -27601,8 +27604,8 @@ - + @@ -27634,42 +27637,42 @@ - - - + + - - - - + + - + - - - - - + + + + + + + + @@ -27792,11 +27795,11 @@ - + - + @@ -27811,12 +27814,14 @@ + + @@ -27826,8 +27831,6 @@ - - @@ -27854,19 +27857,18 @@ + + - - - - + @@ -27881,27 +27883,28 @@ - - + + + - + + - + - - + - + @@ -27940,17 +27943,17 @@ - - + + + + + + - - - - @@ -28025,27 +28028,27 @@ - - - - - - - + + + + + + + - - - + + + @@ -28084,12 +28087,12 @@ - - + + @@ -28105,12 +28108,12 @@ - + - + @@ -28119,25 +28122,25 @@ - + + - - - - - + + + + @@ -28185,11 +28188,11 @@ + - @@ -28207,24 +28210,24 @@ - + - - - + + + - + - + @@ -28266,29 +28269,29 @@ - - - + + - + - + + + - + - + - + - @@ -28316,36 +28319,36 @@ - + - + + - - - + + - + - + - - - - - - + + + + + + @@ -28392,78 +28395,78 @@ - - - + + - - - + + + + - + - - - + - + + - - + - + + + - - + - + + - + + + - - + + - - - - - + + + + - + - - + - - + + - + @@ -28525,6 +28528,7 @@ + @@ -28532,17 +28536,16 @@ + - - @@ -28555,9 +28558,10 @@ - + + @@ -28566,58 +28570,57 @@ - + + - + - + - - + - + - + - + - + - + - @@ -28713,7 +28716,6 @@ - @@ -28729,15 +28731,16 @@ - + + - + - + @@ -28773,31 +28776,31 @@ - - + - + - + + - - + + - + - - - + + + @@ -28822,28 +28825,28 @@ + - - - - - - + + + - + + + - + @@ -28877,23 +28880,23 @@ - - + - + + + + - - - + @@ -28997,13 +29000,13 @@ - - + + @@ -29028,35 +29031,35 @@ + - + + - + + + - + - - - - - + + - @@ -29080,25 +29083,25 @@ + + - - + - - + @@ -29127,12 +29130,12 @@ - - + + - + @@ -29214,39 +29217,39 @@ - - - + - + + - + + + - + + - - - + @@ -29286,25 +29289,25 @@ - - + - + + - - + + + - @@ -29331,30 +29334,30 @@ - + - + - + - - + - - + + - + + @@ -29414,11 +29417,12 @@ - + + @@ -29429,19 +29433,18 @@ - + + - - - + @@ -29536,25 +29539,26 @@ + - - + + + - @@ -29562,7 +29566,6 @@ - @@ -29610,37 +29613,37 @@ - + + + - + - - + + - - - + - + + + - + - - - + @@ -29661,23 +29664,23 @@ - - + + - - - + - - + - + + + + @@ -29699,60 +29702,60 @@ - - + - + - - + - - + + - - - + + + - - + + - + + + - + - + + + - - + + - - - + @@ -29802,27 +29805,26 @@ + + - + - + - - - + + + - - - - + @@ -29831,8 +29833,9 @@ + - + @@ -29866,36 +29869,36 @@ - + - + - - - + + + - - - + + + - + + - @@ -30092,19 +30095,19 @@ - + + + + - - - @@ -30178,9 +30181,10 @@ - + + @@ -30195,7 +30199,6 @@ - @@ -30205,7 +30208,7 @@ - + @@ -30245,22 +30248,21 @@ - + - - + + - @@ -30269,6 +30271,7 @@ + @@ -30329,31 +30332,31 @@ + - - - - - + + + - + - + + @@ -30411,32 +30414,32 @@ - - - + + - - - + - - + + + - - + + + - + + @@ -30550,33 +30553,33 @@ - + - - - - - - - + + + + + + + - - - - - - - + + + + + + + @@ -30621,7 +30624,7 @@ - + @@ -30630,16 +30633,16 @@ - + - + @@ -30682,20 +30685,20 @@ + + - - - - + - - + + + @@ -30731,10 +30734,10 @@ - - + + @@ -30778,30 +30781,30 @@ + - + - - - + + - - + - - + + - - - + + + + @@ -31636,32 +31639,32 @@ + + - + - - + + + - - + - - + - @@ -31704,123 +31707,121 @@ - - - - - - + + + - + + + - - - + - + - - + - - - - - + + + - - + + + + + - - - - + - + - - - + + + + + - - + - + - + + - - + + - - + + + + - + - - + + - - + - + - + + - + + + - - - + @@ -31828,9 +31829,11 @@ + - + + @@ -33464,11 +33467,11 @@ + - @@ -33564,9 +33567,9 @@ + - @@ -33575,15 +33578,15 @@ + - + + - - @@ -33844,9 +33847,9 @@ - + @@ -33854,16 +33857,16 @@ - + + - @@ -33887,7 +33890,6 @@ - @@ -33898,10 +33900,10 @@ + - - + @@ -33922,6 +33924,7 @@ + @@ -33963,21 +33966,21 @@ + - - - + - + + @@ -34108,8 +34111,8 @@ - + @@ -34137,20 +34140,20 @@ + - + + + - - - - + @@ -34175,31 +34178,31 @@ - - + + - + - - + - - + - + - - + + - - - + + + + + @@ -34220,20 +34223,18 @@ - - + - - - - + + + @@ -34244,10 +34245,12 @@ + + @@ -34278,26 +34281,26 @@ + - + - + - + + - - @@ -34444,6 +34447,7 @@ + @@ -34452,14 +34456,13 @@ - - + + - @@ -34485,25 +34488,25 @@ - + + + - - - - + + + - @@ -34525,29 +34528,29 @@ - + - - + + + - - - - - + + + + @@ -34583,26 +34586,26 @@ - - + + - - + - + - - - + + + + @@ -34643,22 +34646,22 @@ - - + + - + - + - - + + - + @@ -34692,19 +34695,19 @@ - + - - - + - + + + @@ -34781,7 +34784,6 @@ - @@ -34789,24 +34791,25 @@ - - - - + + - + - + + + + @@ -34839,24 +34842,24 @@ - - - + + + - - + + - - + + @@ -34892,21 +34895,19 @@ - - + - + - @@ -34922,7 +34923,8 @@ - + + @@ -34930,7 +34932,7 @@ - + @@ -34942,6 +34944,7 @@ + @@ -34951,17 +34954,17 @@ - + + - @@ -35029,35 +35032,35 @@ - - - + + + + + + - - - - - + + - - - + + + + - - + - + @@ -35084,26 +35087,26 @@ - - - - + + - + - - - + + + + + - + @@ -35126,12 +35129,11 @@ + - - @@ -35140,6 +35142,7 @@ + @@ -35286,62 +35289,62 @@ - + + - + + - + - - + - + + - - - + + + + - - + - - - + + - - - - - + + + + @@ -54270,4 +54273,4 @@ - \ No newline at end of file + diff --git a/ess/src/API/EMBC.ESS.Utilities.Dynamics/Connected Services/Dynamics/Reference.cs b/ess/src/API/EMBC.ESS.Utilities.Dynamics/Connected Services/Dynamics/Reference.cs index d35327799..c9172c5dc 100644 --- a/ess/src/API/EMBC.ESS.Utilities.Dynamics/Connected Services/Dynamics/Reference.cs +++ b/ess/src/API/EMBC.ESS.Utilities.Dynamics/Connected Services/Dynamics/Reference.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -// Generation date: 2024-05-28 3:59:35 PM +// Generation date: 7/15/2024 1:31:14 PM namespace EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM { /// @@ -15097,28 +15097,6 @@ public static abs_scheduledprocess Createabs_scheduledprocess(global::EMBC.ESS.U partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property abs_nextactivation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -15229,6 +15207,28 @@ public static abs_scheduledprocess Createabs_scheduledprocess(global::EMBC.ESS.U partial void Onabs_hourChanging(global::System.Nullable value); partial void Onabs_hourChanged(); /// + /// There are no comments for Property abs_june in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable abs_june + { + get + { + return this._abs_june; + } + set + { + this.Onabs_juneChanging(value); + this._abs_june = value; + this.Onabs_juneChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _abs_june; + partial void Onabs_juneChanging(global::System.Nullable value); + partial void Onabs_juneChanged(); + /// /// There are no comments for Property abs_november in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -15251,49 +15251,49 @@ public static abs_scheduledprocess Createabs_scheduledprocess(global::EMBC.ESS.U partial void Onabs_novemberChanging(global::System.Nullable value); partial void Onabs_novemberChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property abs_saturday in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable abs_saturday { get { - return this.__owningbusinessunit_value; + return this._abs_saturday; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.Onabs_saturdayChanging(value); + this._abs_saturday = value; + this.Onabs_saturdayChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _abs_saturday; + partial void Onabs_saturdayChanging(global::System.Nullable value); + partial void Onabs_saturdayChanged(); /// - /// There are no comments for Property abs_friday in the schema. + /// There are no comments for Property abs_recurrencepattern in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable abs_friday + public virtual global::System.Nullable abs_recurrencepattern { get { - return this._abs_friday; + return this._abs_recurrencepattern; } set { - this.Onabs_fridayChanging(value); - this._abs_friday = value; - this.Onabs_fridayChanged(); + this.Onabs_recurrencepatternChanging(value); + this._abs_recurrencepattern = value; + this.Onabs_recurrencepatternChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_friday; - partial void Onabs_fridayChanging(global::System.Nullable value); - partial void Onabs_fridayChanged(); + private global::System.Nullable _abs_recurrencepattern; + partial void Onabs_recurrencepatternChanging(global::System.Nullable value); + partial void Onabs_recurrencepatternChanged(); /// /// There are no comments for Property abs_fetchxmlquery in the schema. /// @@ -15339,27 +15339,27 @@ public virtual string abs_fetchxmlquery partial void Onabs_tuesdayChanging(global::System.Nullable value); partial void Onabs_tuesdayChanged(); /// - /// There are no comments for Property abs_june in the schema. + /// There are no comments for Property abs_ampm in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable abs_june + public virtual global::System.Nullable abs_ampm { get { - return this._abs_june; + return this._abs_ampm; } set { - this.Onabs_juneChanging(value); - this._abs_june = value; - this.Onabs_juneChanged(); + this.Onabs_ampmChanging(value); + this._abs_ampm = value; + this.Onabs_ampmChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_june; - partial void Onabs_juneChanging(global::System.Nullable value); - partial void Onabs_juneChanged(); + private global::System.Nullable _abs_ampm; + partial void Onabs_ampmChanging(global::System.Nullable value); + partial void Onabs_ampmChanged(); /// /// There are no comments for Property _abs_processid_value in the schema. /// @@ -15405,71 +15405,49 @@ public virtual string abs_fetchxmlquery partial void Onabs_januaryChanging(global::System.Nullable value); partial void Onabs_januaryChanged(); /// - /// There are no comments for Property abs_saturday in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable abs_saturday - { - get - { - return this._abs_saturday; - } - set - { - this.Onabs_saturdayChanging(value); - this._abs_saturday = value; - this.Onabs_saturdayChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_saturday; - partial void Onabs_saturdayChanging(global::System.Nullable value); - partial void Onabs_saturdayChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property abs_october in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable abs_october { get { - return this.__owninguser_value; + return this._abs_october; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.Onabs_octoberChanging(value); + this._abs_october = value; + this.Onabs_octoberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _abs_october; + partial void Onabs_octoberChanging(global::System.Nullable value); + partial void Onabs_octoberChanged(); /// - /// There are no comments for Property abs_ampm in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable abs_ampm + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._abs_ampm; + return this.__owningbusinessunit_value; } set { - this.Onabs_ampmChanging(value); - this._abs_ampm = value; - this.Onabs_ampmChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_ampm; - partial void Onabs_ampmChanging(global::System.Nullable value); - partial void Onabs_ampmChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -15515,6 +15493,28 @@ public virtual string abs_fetchxmlquery partial void Onabs_februaryChanging(global::System.Nullable value); partial void Onabs_februaryChanged(); /// + /// There are no comments for Property abs_friday in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable abs_friday + { + get + { + return this._abs_friday; + } + set + { + this.Onabs_fridayChanging(value); + this._abs_friday = value; + this.Onabs_fridayChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _abs_friday; + partial void Onabs_fridayChanging(global::System.Nullable value); + partial void Onabs_fridayChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -15537,49 +15537,49 @@ public virtual string abs_fetchxmlquery partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property abs_august in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable abs_august + public virtual global::System.Nullable versionnumber { get { - return this._abs_august; + return this._versionnumber; } set { - this.Onabs_augustChanging(value); - this._abs_august = value; - this.Onabs_augustChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_august; - partial void Onabs_augustChanging(global::System.Nullable value); - partial void Onabs_augustChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property abs_sunday in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable abs_sunday + public virtual global::System.Nullable statuscode { get { - return this._abs_sunday; + return this._statuscode; } set { - this.Onabs_sundayChanging(value); - this._abs_sunday = value; - this.Onabs_sundayChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_sunday; - partial void Onabs_sundayChanging(global::System.Nullable value); - partial void Onabs_sundayChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property abs_suspendonfailure in the schema. /// @@ -15603,27 +15603,27 @@ public virtual string abs_fetchxmlquery partial void Onabs_suspendonfailureChanging(global::System.Nullable value); partial void Onabs_suspendonfailureChanged(); /// - /// There are no comments for Property abs_recurrencepattern in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable abs_recurrencepattern + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._abs_recurrencepattern; + return this._utcconversiontimezonecode; } set { - this.Onabs_recurrencepatternChanging(value); - this._abs_recurrencepattern = value; - this.Onabs_recurrencepatternChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_recurrencepattern; - partial void Onabs_recurrencepatternChanging(global::System.Nullable value); - partial void Onabs_recurrencepatternChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -15801,28 +15801,6 @@ public virtual string abs_fetchxmlquery partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property abs_wednesday in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -15845,28 +15823,6 @@ public virtual string abs_fetchxmlquery partial void Onabs_wednesdayChanging(global::System.Nullable value); partial void Onabs_wednesdayChanged(); /// - /// There are no comments for Property abs_interval in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable abs_interval - { - get - { - return this._abs_interval; - } - set - { - this.Onabs_intervalChanging(value); - this._abs_interval = value; - this.Onabs_intervalChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_interval; - partial void Onabs_intervalChanging(global::System.Nullable value); - partial void Onabs_intervalChanged(); - /// /// There are no comments for Property abs_may in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -15889,28 +15845,6 @@ public virtual string abs_fetchxmlquery partial void Onabs_mayChanging(global::System.Nullable value); partial void Onabs_mayChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -15955,49 +15889,93 @@ public virtual string abs_fetchxmlquery partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property abs_october in the schema. + /// There are no comments for Property abs_august in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable abs_october + public virtual global::System.Nullable abs_august { get { - return this._abs_october; + return this._abs_august; } set { - this.Onabs_octoberChanging(value); - this._abs_october = value; - this.Onabs_octoberChanged(); + this.Onabs_augustChanging(value); + this._abs_august = value; + this.Onabs_augustChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_october; - partial void Onabs_octoberChanging(global::System.Nullable value); - partial void Onabs_octoberChanged(); + private global::System.Nullable _abs_august; + partial void Onabs_augustChanging(global::System.Nullable value); + partial void Onabs_augustChanged(); /// - /// There are no comments for Property abs_name in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string abs_name + public virtual global::System.Nullable _owninguser_value { get { - return this._abs_name; + return this.__owninguser_value; } set { - this.Onabs_nameChanging(value); - this._abs_name = value; - this.Onabs_nameChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _abs_name; - partial void Onabs_nameChanging(string value); - partial void Onabs_nameChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property abs_april in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable abs_april + { + get + { + return this._abs_april; + } + set + { + this.Onabs_aprilChanging(value); + this._abs_april = value; + this.Onabs_aprilChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _abs_april; + partial void Onabs_aprilChanging(global::System.Nullable value); + partial void Onabs_aprilChanged(); + /// + /// There are no comments for Property abs_sunday in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable abs_sunday + { + get + { + return this._abs_sunday; + } + set + { + this.Onabs_sundayChanging(value); + this._abs_sunday = value; + this.Onabs_sundayChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _abs_sunday; + partial void Onabs_sundayChanging(global::System.Nullable value); + partial void Onabs_sundayChanged(); /// /// There are no comments for Property abs_september in the schema. /// @@ -16021,27 +15999,49 @@ public virtual string abs_name partial void Onabs_septemberChanging(global::System.Nullable value); partial void Onabs_septemberChanged(); /// - /// There are no comments for Property abs_april in the schema. + /// There are no comments for Property abs_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable abs_april + public virtual string abs_name { get { - return this._abs_april; + return this._abs_name; } set { - this.Onabs_aprilChanging(value); - this._abs_april = value; - this.Onabs_aprilChanged(); + this.Onabs_nameChanging(value); + this._abs_name = value; + this.Onabs_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _abs_april; - partial void Onabs_aprilChanging(global::System.Nullable value); - partial void Onabs_aprilChanged(); + private string _abs_name; + partial void Onabs_nameChanging(string value); + partial void Onabs_nameChanged(); + /// + /// There are no comments for Property abs_interval in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable abs_interval + { + get + { + return this._abs_interval; + } + set + { + this.Onabs_intervalChanging(value); + this._abs_interval = value; + this.Onabs_intervalChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _abs_interval; + partial void Onabs_intervalChanging(global::System.Nullable value); + partial void Onabs_intervalChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -23539,28 +23539,6 @@ public static account Createaccount(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void Onopenrevenue_baseChanging(global::System.Nullable value); partial void Onopenrevenue_baseChanged(); /// - /// There are no comments for Property territorycode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable territorycode - { - get - { - return this._territorycode; - } - set - { - this.OnterritorycodeChanging(value); - this._territorycode = value; - this.OnterritorycodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _territorycode; - partial void OnterritorycodeChanging(global::System.Nullable value); - partial void OnterritorycodeChanged(); - /// /// There are no comments for Property address1_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -23583,27 +23561,27 @@ public virtual string address1_postofficebox partial void Onaddress1_postofficeboxChanging(string value); partial void Onaddress1_postofficeboxChanged(); /// - /// There are no comments for Property address1_telephone1 in the schema. + /// There are no comments for Property accountnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone1 + public virtual string accountnumber { get { - return this._address1_telephone1; + return this._accountnumber; } set { - this.Onaddress1_telephone1Changing(value); - this._address1_telephone1 = value; - this.Onaddress1_telephone1Changed(); + this.OnaccountnumberChanging(value); + this._accountnumber = value; + this.OnaccountnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone1; - partial void Onaddress1_telephone1Changing(string value); - partial void Onaddress1_telephone1Changed(); + private string _accountnumber; + partial void OnaccountnumberChanging(string value); + partial void OnaccountnumberChanged(); /// /// There are no comments for Property openrevenue in the schema. /// @@ -23627,71 +23605,27 @@ public virtual string address1_telephone1 partial void OnopenrevenueChanging(global::System.Nullable value); partial void OnopenrevenueChanged(); /// - /// There are no comments for Property sic in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string sic - { - get - { - return this._sic; - } - set - { - this.OnsicChanging(value); - this._sic = value; - this.OnsicChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sic; - partial void OnsicChanging(string value); - partial void OnsicChanged(); - /// - /// There are no comments for Property address1_line2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address1_line2 - { - get - { - return this._address1_line2; - } - set - { - this.Onaddress1_line2Changing(value); - this._address1_line2 = value; - this.Onaddress1_line2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line2; - partial void Onaddress1_line2Changing(string value); - partial void Onaddress1_line2Changed(); - /// - /// There are no comments for Property emailaddress3 in the schema. + /// There are no comments for Property address1_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailaddress3 + public virtual string address1_name { get { - return this._emailaddress3; + return this._address1_name; } set { - this.Onemailaddress3Changing(value); - this._emailaddress3 = value; - this.Onemailaddress3Changed(); + this.Onaddress1_nameChanging(value); + this._address1_name = value; + this.Onaddress1_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress3; - partial void Onemailaddress3Changing(string value); - partial void Onemailaddress3Changed(); + private string _address1_name; + partial void Onaddress1_nameChanging(string value); + partial void Onaddress1_nameChanged(); /// /// There are no comments for Property address1_telephone3 in the schema. /// @@ -23759,6 +23693,28 @@ public virtual string address2_county partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property donotfax in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable donotfax + { + get + { + return this._donotfax; + } + set + { + this.OndonotfaxChanging(value); + this._donotfax = value; + this.OndonotfaxChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _donotfax; + partial void OndonotfaxChanging(global::System.Nullable value); + partial void OndonotfaxChanged(); + /// /// There are no comments for Property numberofemployees in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -23781,27 +23737,27 @@ public virtual string address2_county partial void OnnumberofemployeesChanging(global::System.Nullable value); partial void OnnumberofemployeesChanged(); /// - /// There are no comments for Property opendeals_date in the schema. + /// There are no comments for Property address1_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable opendeals_date + public virtual string address1_line2 { get { - return this._opendeals_date; + return this._address1_line2; } set { - this.Onopendeals_dateChanging(value); - this._opendeals_date = value; - this.Onopendeals_dateChanged(); + this.Onaddress1_line2Changing(value); + this._address1_line2 = value; + this.Onaddress1_line2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _opendeals_date; - partial void Onopendeals_dateChanging(global::System.Nullable value); - partial void Onopendeals_dateChanged(); + private string _address1_line2; + partial void Onaddress1_line2Changing(string value); + partial void Onaddress1_line2Changed(); /// /// There are no comments for Property timespentbymeonemailandmeetings in the schema. /// @@ -23825,6 +23781,72 @@ public virtual string timespentbymeonemailandmeetings partial void OntimespentbymeonemailandmeetingsChanging(string value); partial void OntimespentbymeonemailandmeetingsChanged(); /// + /// There are no comments for Property openrevenue_date in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable openrevenue_date + { + get + { + return this._openrevenue_date; + } + set + { + this.Onopenrevenue_dateChanging(value); + this._openrevenue_date = value; + this.Onopenrevenue_dateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _openrevenue_date; + partial void Onopenrevenue_dateChanging(global::System.Nullable value); + partial void Onopenrevenue_dateChanged(); + /// + /// There are no comments for Property opendeals_date in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable opendeals_date + { + get + { + return this._opendeals_date; + } + set + { + this.Onopendeals_dateChanging(value); + this._opendeals_date = value; + this.Onopendeals_dateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _opendeals_date; + partial void Onopendeals_dateChanging(global::System.Nullable value); + partial void Onopendeals_dateChanged(); + /// + /// There are no comments for Property address1_county in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_county + { + get + { + return this._address1_county; + } + set + { + this.Onaddress1_countyChanging(value); + this._address1_county = value; + this.Onaddress1_countyChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_county; + partial void Onaddress1_countyChanging(string value); + partial void Onaddress1_countyChanged(); + /// /// There are no comments for Property address2_longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -23891,6 +23913,28 @@ public virtual string timespentbymeonemailandmeetings partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property address1_telephone1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_telephone1 + { + get + { + return this._address1_telephone1; + } + set + { + this.Onaddress1_telephone1Changing(value); + this._address1_telephone1 = value; + this.Onaddress1_telephone1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_telephone1; + partial void Onaddress1_telephone1Changing(string value); + partial void Onaddress1_telephone1Changed(); + /// /// There are no comments for Property primarysatoriid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -23935,28 +23979,6 @@ public virtual string primarysatoriid partial void On_masterid_valueChanging(global::System.Nullable value); partial void On_masterid_valueChanged(); /// - /// There are no comments for Property address1_telephone2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address1_telephone2 - { - get - { - return this._address1_telephone2; - } - set - { - this.Onaddress1_telephone2Changing(value); - this._address1_telephone2 = value; - this.Onaddress1_telephone2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone2; - partial void Onaddress1_telephone2Changing(string value); - partial void Onaddress1_telephone2Changed(); - /// /// There are no comments for Property address2_latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -24067,49 +24089,27 @@ public virtual string telephone1 partial void Onaging90Changing(global::System.Nullable value); partial void Onaging90Changed(); /// - /// There are no comments for Property entityimage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual byte[] entityimage - { - get - { - return this._entityimage; - } - set - { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); - /// - /// There are no comments for Property revenue in the schema. + /// There are no comments for Property accountcategorycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable revenue + public virtual global::System.Nullable accountcategorycode { get { - return this._revenue; + return this._accountcategorycode; } set { - this.OnrevenueChanging(value); - this._revenue = value; - this.OnrevenueChanged(); + this.OnaccountcategorycodeChanging(value); + this._accountcategorycode = value; + this.OnaccountcategorycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _revenue; - partial void OnrevenueChanging(global::System.Nullable value); - partial void OnrevenueChanged(); + private global::System.Nullable _accountcategorycode; + partial void OnaccountcategorycodeChanging(global::System.Nullable value); + partial void OnaccountcategorycodeChanged(); /// /// There are no comments for Property industrycode in the schema. /// @@ -24133,49 +24133,49 @@ public virtual byte[] entityimage partial void OnindustrycodeChanging(global::System.Nullable value); partial void OnindustrycodeChanged(); /// - /// There are no comments for Property aging30_base in the schema. + /// There are no comments for Property address1_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable aging30_base + public virtual string address1_postalcode { get { - return this._aging30_base; + return this._address1_postalcode; } set { - this.Onaging30_baseChanging(value); - this._aging30_base = value; - this.Onaging30_baseChanged(); + this.Onaddress1_postalcodeChanging(value); + this._address1_postalcode = value; + this.Onaddress1_postalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _aging30_base; - partial void Onaging30_baseChanging(global::System.Nullable value); - partial void Onaging30_baseChanged(); + private string _address1_postalcode; + partial void Onaddress1_postalcodeChanging(string value); + partial void Onaddress1_postalcodeChanged(); /// - /// There are no comments for Property emailaddress1 in the schema. + /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailaddress1 + public virtual global::System.Nullable processid { get { - return this._emailaddress1; + return this._processid; } set { - this.Onemailaddress1Changing(value); - this._emailaddress1 = value; - this.Onemailaddress1Changed(); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress1; - partial void Onemailaddress1Changing(string value); - partial void Onemailaddress1Changed(); + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); /// /// There are no comments for Property address1_latitude in the schema. /// @@ -24199,28 +24199,6 @@ public virtual string emailaddress1 partial void Onaddress1_latitudeChanging(global::System.Nullable value); partial void Onaddress1_latitudeChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// /// There are no comments for Property tickersymbol in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -24287,6 +24265,28 @@ public virtual string tickersymbol partial void OnopendealsChanging(global::System.Nullable value); partial void OnopendealsChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property customersizecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -24331,27 +24331,27 @@ public virtual string address2_name partial void Onaddress2_nameChanging(string value); partial void Onaddress2_nameChanged(); /// - /// There are no comments for Property address1_stateorprovince in the schema. + /// There are no comments for Property address1_addresstypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_stateorprovince + public virtual global::System.Nullable address1_addresstypecode { get { - return this._address1_stateorprovince; + return this._address1_addresstypecode; } set { - this.Onaddress1_stateorprovinceChanging(value); - this._address1_stateorprovince = value; - this.Onaddress1_stateorprovinceChanged(); + this.Onaddress1_addresstypecodeChanging(value); + this._address1_addresstypecode = value; + this.Onaddress1_addresstypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_stateorprovince; - partial void Onaddress1_stateorprovinceChanging(string value); - partial void Onaddress1_stateorprovinceChanged(); + private global::System.Nullable _address1_addresstypecode; + partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); + partial void Onaddress1_addresstypecodeChanged(); /// /// There are no comments for Property address1_line3 in the schema. /// @@ -24397,27 +24397,27 @@ public virtual string address1_line3 partial void OnaccountratingcodeChanging(global::System.Nullable value); partial void OnaccountratingcodeChanged(); /// - /// There are no comments for Property address1_line1 in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_line1 + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._address1_line1; + return this.__owningbusinessunit_value; } set { - this.Onaddress1_line1Changing(value); - this._address1_line1 = value; - this.Onaddress1_line1Changed(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line1; - partial void Onaddress1_line1Changing(string value); - partial void Onaddress1_line1Changed(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -24485,49 +24485,27 @@ public virtual string address1_line1 partial void OnpaymenttermscodeChanging(global::System.Nullable value); partial void OnpaymenttermscodeChanged(); /// - /// There are no comments for Property donotfax in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable donotfax - { - get - { - return this._donotfax; - } - set - { - this.OndonotfaxChanging(value); - this._donotfax = value; - this.OndonotfaxChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotfax; - partial void OndonotfaxChanging(global::System.Nullable value); - partial void OndonotfaxChanged(); - /// - /// There are no comments for Property traversedpath in the schema. + /// There are no comments for Property fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string traversedpath + public virtual string fax { get { - return this._traversedpath; + return this._fax; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); + this.OnfaxChanging(value); + this._fax = value; + this.OnfaxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private string _fax; + partial void OnfaxChanging(string value); + partial void OnfaxChanged(); /// /// There are no comments for Property businesstypecode in the schema. /// @@ -24551,27 +24529,27 @@ public virtual string traversedpath partial void OnbusinesstypecodeChanging(global::System.Nullable value); partial void OnbusinesstypecodeChanged(); /// - /// There are no comments for Property address2_line3 in the schema. + /// There are no comments for Property emailaddress3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_line3 + public virtual string emailaddress3 { get { - return this._address2_line3; + return this._emailaddress3; } set { - this.Onaddress2_line3Changing(value); - this._address2_line3 = value; - this.Onaddress2_line3Changed(); + this.Onemailaddress3Changing(value); + this._emailaddress3 = value; + this.Onemailaddress3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line3; - partial void Onaddress2_line3Changing(string value); - partial void Onaddress2_line3Changed(); + private string _emailaddress3; + partial void Onemailaddress3Changing(string value); + partial void Onemailaddress3Changed(); /// /// There are no comments for Property address2_utcoffset in the schema. /// @@ -24639,27 +24617,27 @@ public virtual string address2_line3 partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__ownerid_value; + return this._utcconversiontimezonecode; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -24683,27 +24661,49 @@ public virtual string address2_line3 partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual byte[] entityimage { get { - return this._utcconversiontimezonecode; + return this._entityimage; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); + /// + /// There are no comments for Property address1_stateorprovince in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_stateorprovince + { + get + { + return this._address1_stateorprovince; + } + set + { + this.Onaddress1_stateorprovinceChanging(value); + this._address1_stateorprovince = value; + this.Onaddress1_stateorprovinceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_stateorprovince; + partial void Onaddress1_stateorprovinceChanging(string value); + partial void Onaddress1_stateorprovinceChanged(); /// /// There are no comments for Property ftpsiteurl in the schema. /// @@ -24749,71 +24749,27 @@ public virtual string ftpsiteurl partial void OnshippingmethodcodeChanging(global::System.Nullable value); partial void OnshippingmethodcodeChanged(); /// - /// There are no comments for Property stockexchange in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string stockexchange - { - get - { - return this._stockexchange; - } - set - { - this.OnstockexchangeChanging(value); - this._stockexchange = value; - this.OnstockexchangeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _stockexchange; - partial void OnstockexchangeChanging(string value); - partial void OnstockexchangeChanged(); - /// - /// There are no comments for Property address2_telephone3 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_telephone3 - { - get - { - return this._address2_telephone3; - } - set - { - this.Onaddress2_telephone3Changing(value); - this._address2_telephone3 = value; - this.Onaddress2_telephone3Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone3; - partial void Onaddress2_telephone3Changing(string value); - partial void Onaddress2_telephone3Changed(); - /// - /// There are no comments for Property address2_line1 in the schema. + /// There are no comments for Property revenue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_line1 + public virtual global::System.Nullable revenue { get { - return this._address2_line1; + return this._revenue; } set { - this.Onaddress2_line1Changing(value); - this._address2_line1 = value; - this.Onaddress2_line1Changed(); + this.OnrevenueChanging(value); + this._revenue = value; + this.OnrevenueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line1; - partial void Onaddress2_line1Changing(string value); - partial void Onaddress2_line1Changed(); + private global::System.Nullable _revenue; + partial void OnrevenueChanging(global::System.Nullable value); + partial void OnrevenueChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -24837,27 +24793,27 @@ public virtual string address2_line1 partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property aging60 in the schema. + /// There are no comments for Property marketingonly in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable aging60 + public virtual global::System.Nullable marketingonly { get { - return this._aging60; + return this._marketingonly; } set { - this.Onaging60Changing(value); - this._aging60 = value; - this.Onaging60Changed(); + this.OnmarketingonlyChanging(value); + this._marketingonly = value; + this.OnmarketingonlyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _aging60; - partial void Onaging60Changing(global::System.Nullable value); - partial void Onaging60Changed(); + private global::System.Nullable _marketingonly; + partial void OnmarketingonlyChanging(global::System.Nullable value); + partial void OnmarketingonlyChanged(); /// /// There are no comments for Property participatesinworkflow in the schema. /// @@ -24903,28 +24859,6 @@ public virtual string address2_line1 partial void On_defaultpricelevelid_valueChanging(global::System.Nullable value); partial void On_defaultpricelevelid_valueChanged(); /// - /// There are no comments for Property address1_postalcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address1_postalcode - { - get - { - return this._address1_postalcode; - } - set - { - this.Onaddress1_postalcodeChanging(value); - this._address1_postalcode = value; - this.Onaddress1_postalcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_postalcode; - partial void Onaddress1_postalcodeChanging(string value); - partial void Onaddress1_postalcodeChanged(); - /// /// There are no comments for Property address2_addressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -24969,28 +24903,6 @@ public virtual string address1_postalcode partial void OnmarketcapChanging(global::System.Nullable value); partial void OnmarketcapChanged(); /// - /// There are no comments for Property _slaid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _slaid_value - { - get - { - return this.__slaid_value; - } - set - { - this.On_slaid_valueChanging(value); - this.__slaid_value = value; - this.On_slaid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __slaid_value; - partial void On_slaid_valueChanging(global::System.Nullable value); - partial void On_slaid_valueChanged(); - /// /// There are no comments for Property address2_addresstypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -25013,28 +24925,6 @@ public virtual string address1_postalcode partial void Onaddress2_addresstypecodeChanging(global::System.Nullable value); partial void Onaddress2_addresstypecodeChanged(); /// - /// There are no comments for Property openrevenue_date in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable openrevenue_date - { - get - { - return this._openrevenue_date; - } - set - { - this.Onopenrevenue_dateChanging(value); - this._openrevenue_date = value; - this.Onopenrevenue_dateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _openrevenue_date; - partial void Onopenrevenue_dateChanging(global::System.Nullable value); - partial void Onopenrevenue_dateChanged(); - /// /// There are no comments for Property donotbulkemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -25057,28 +24947,6 @@ public virtual string address1_postalcode partial void OndonotbulkemailChanging(global::System.Nullable value); partial void OndonotbulkemailChanged(); /// - /// There are no comments for Property address2_primarycontactname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_primarycontactname - { - get - { - return this._address2_primarycontactname; - } - set - { - this.Onaddress2_primarycontactnameChanging(value); - this._address2_primarycontactname = value; - this.Onaddress2_primarycontactnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_primarycontactname; - partial void Onaddress2_primarycontactnameChanging(string value); - partial void Onaddress2_primarycontactnameChanged(); - /// /// There are no comments for Property aging30 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -25167,27 +25035,27 @@ public virtual string entityimage_url partial void OnsharesoutstandingChanging(global::System.Nullable value); partial void OnsharesoutstandingChanged(); /// - /// There are no comments for Property accountcategorycode in the schema. + /// There are no comments for Property donotpostalmail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable accountcategorycode + public virtual global::System.Nullable donotpostalmail { get { - return this._accountcategorycode; + return this._donotpostalmail; } set { - this.OnaccountcategorycodeChanging(value); - this._accountcategorycode = value; - this.OnaccountcategorycodeChanged(); + this.OndonotpostalmailChanging(value); + this._donotpostalmail = value; + this.OndonotpostalmailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _accountcategorycode; - partial void OnaccountcategorycodeChanging(global::System.Nullable value); - partial void OnaccountcategorycodeChanged(); + private global::System.Nullable _donotpostalmail; + partial void OndonotpostalmailChanging(global::System.Nullable value); + partial void OndonotpostalmailChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -25211,6 +25079,28 @@ public virtual string entityimage_url partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// + /// There are no comments for Property aging60 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable aging60 + { + get + { + return this._aging60; + } + set + { + this.Onaging60Changing(value); + this._aging60 = value; + this.Onaging60Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _aging60; + partial void Onaging60Changing(global::System.Nullable value); + partial void Onaging60Changed(); + /// /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -25277,27 +25167,27 @@ public virtual string entityimage_url partial void OnpreferredappointmenttimecodeChanging(global::System.Nullable value); partial void OnpreferredappointmenttimecodeChanged(); /// - /// There are no comments for Property donotsendmm in the schema. + /// There are no comments for Property address2_composite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable donotsendmm + public virtual string address2_composite { get { - return this._donotsendmm; + return this._address2_composite; } set { - this.OndonotsendmmChanging(value); - this._donotsendmm = value; - this.OndonotsendmmChanged(); + this.Onaddress2_compositeChanging(value); + this._address2_composite = value; + this.Onaddress2_compositeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotsendmm; - partial void OndonotsendmmChanging(global::System.Nullable value); - partial void OndonotsendmmChanged(); + private string _address2_composite; + partial void Onaddress2_compositeChanging(string value); + partial void Onaddress2_compositeChanged(); /// /// There are no comments for Property aging90_base in the schema. /// @@ -25321,27 +25211,27 @@ public virtual string entityimage_url partial void Onaging90_baseChanging(global::System.Nullable value); partial void Onaging90_baseChanged(); /// - /// There are no comments for Property fax in the schema. + /// There are no comments for Property address1_upszone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string fax + public virtual string address1_upszone { get { - return this._fax; + return this._address1_upszone; } set { - this.OnfaxChanging(value); - this._fax = value; - this.OnfaxChanged(); + this.Onaddress1_upszoneChanging(value); + this._address1_upszone = value; + this.Onaddress1_upszoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _fax; - partial void OnfaxChanging(string value); - partial void OnfaxChanged(); + private string _address1_upszone; + partial void Onaddress1_upszoneChanging(string value); + partial void Onaddress1_upszoneChanged(); /// /// There are no comments for Property _originatingleadid_value in the schema. /// @@ -25365,6 +25255,28 @@ public virtual string fax partial void On_originatingleadid_valueChanging(global::System.Nullable value); partial void On_originatingleadid_valueChanged(); /// + /// There are no comments for Property territorycode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable territorycode + { + get + { + return this._territorycode; + } + set + { + this.OnterritorycodeChanging(value); + this._territorycode = value; + this.OnterritorycodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _territorycode; + partial void OnterritorycodeChanging(global::System.Nullable value); + partial void OnterritorycodeChanged(); + /// /// There are no comments for Property merged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -25409,27 +25321,49 @@ public virtual string address1_city partial void Onaddress1_cityChanging(string value); partial void Onaddress1_cityChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property onholdtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable onholdtime { get { - return this._description; + return this._onholdtime; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnonholdtimeChanging(value); + this._onholdtime = value; + this.OnonholdtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _onholdtime; + partial void OnonholdtimeChanging(global::System.Nullable value); + partial void OnonholdtimeChanged(); + /// + /// There are no comments for Property marketcap_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable marketcap_base + { + get + { + return this._marketcap_base; + } + set + { + this.Onmarketcap_baseChanging(value); + this._marketcap_base = value; + this.Onmarketcap_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _marketcap_base; + partial void Onmarketcap_baseChanging(global::System.Nullable value); + partial void Onmarketcap_baseChanged(); /// /// There are no comments for Property address2_stateorprovince in the schema. /// @@ -25475,93 +25409,49 @@ public virtual string yominame partial void OnyominameChanging(string value); partial void OnyominameChanged(); /// - /// There are no comments for Property _preferredserviceid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _preferredserviceid_value - { - get - { - return this.__preferredserviceid_value; - } - set - { - this.On_preferredserviceid_valueChanging(value); - this.__preferredserviceid_value = value; - this.On_preferredserviceid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __preferredserviceid_value; - partial void On_preferredserviceid_valueChanging(global::System.Nullable value); - partial void On_preferredserviceid_valueChanged(); - /// - /// There are no comments for Property donotpostalmail in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable donotpostalmail - { - get - { - return this._donotpostalmail; - } - set - { - this.OndonotpostalmailChanging(value); - this._donotpostalmail = value; - this.OndonotpostalmailChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotpostalmail; - partial void OndonotpostalmailChanging(global::System.Nullable value); - partial void OndonotpostalmailChanged(); - /// - /// There are no comments for Property address1_country in the schema. + /// There are no comments for Property address2_telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_country + public virtual string address2_telephone3 { get { - return this._address1_country; + return this._address2_telephone3; } set { - this.Onaddress1_countryChanging(value); - this._address1_country = value; - this.Onaddress1_countryChanged(); + this.Onaddress2_telephone3Changing(value); + this._address2_telephone3 = value; + this.Onaddress2_telephone3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_country; - partial void Onaddress1_countryChanging(string value); - partial void Onaddress1_countryChanged(); + private string _address2_telephone3; + partial void Onaddress2_telephone3Changing(string value); + partial void Onaddress2_telephone3Changed(); /// - /// There are no comments for Property teamsfollowed in the schema. + /// There are no comments for Property donotsendmm in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable teamsfollowed + public virtual global::System.Nullable donotsendmm { get { - return this._teamsfollowed; + return this._donotsendmm; } set { - this.OnteamsfollowedChanging(value); - this._teamsfollowed = value; - this.OnteamsfollowedChanged(); + this.OndonotsendmmChanging(value); + this._donotsendmm = value; + this.OndonotsendmmChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _teamsfollowed; - partial void OnteamsfollowedChanging(global::System.Nullable value); - partial void OnteamsfollowedChanged(); + private global::System.Nullable _donotsendmm; + partial void OndonotsendmmChanging(global::System.Nullable value); + partial void OndonotsendmmChanged(); /// /// There are no comments for Property donotemail in the schema. /// @@ -25651,71 +25541,49 @@ public virtual string address1_primarycontactname partial void Onaddress1_primarycontactnameChanging(string value); partial void Onaddress1_primarycontactnameChanged(); /// - /// There are no comments for Property onholdtime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable onholdtime - { - get - { - return this._onholdtime; - } - set - { - this.OnonholdtimeChanging(value); - this._onholdtime = value; - this.OnonholdtimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _onholdtime; - partial void OnonholdtimeChanging(global::System.Nullable value); - partial void OnonholdtimeChanged(); - /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property emailaddress1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual string emailaddress1 { get { - return this.__owningbusinessunit_value; + return this._emailaddress1; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.Onemailaddress1Changing(value); + this._emailaddress1 = value; + this.Onemailaddress1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private string _emailaddress1; + partial void Onemailaddress1Changing(string value); + partial void Onemailaddress1Changed(); /// - /// There are no comments for Property _createdbyexternalparty_value in the schema. + /// There are no comments for Property _slaid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdbyexternalparty_value + public virtual global::System.Nullable _slaid_value { get { - return this.__createdbyexternalparty_value; + return this.__slaid_value; } set { - this.On_createdbyexternalparty_valueChanging(value); - this.__createdbyexternalparty_value = value; - this.On_createdbyexternalparty_valueChanged(); + this.On_slaid_valueChanging(value); + this.__slaid_value = value; + this.On_slaid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdbyexternalparty_value; - partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); - partial void On_createdbyexternalparty_valueChanged(); + private global::System.Nullable __slaid_value; + partial void On_slaid_valueChanging(global::System.Nullable value); + partial void On_slaid_valueChanged(); /// /// There are no comments for Property accountid in the schema. /// @@ -25739,27 +25607,27 @@ public virtual string address1_primarycontactname partial void OnaccountidChanging(global::System.Nullable value); partial void OnaccountidChanged(); /// - /// There are no comments for Property marketingonly in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable marketingonly + public virtual string traversedpath { get { - return this._marketingonly; + return this._traversedpath; } set { - this.OnmarketingonlyChanging(value); - this._marketingonly = value; - this.OnmarketingonlyChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _marketingonly; - partial void OnmarketingonlyChanging(global::System.Nullable value); - partial void OnmarketingonlyChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -25783,49 +25651,49 @@ public virtual string address1_primarycontactname partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property processid in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processid + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._processid; + return this.__transactioncurrencyid_value; } set { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property stockexchange in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string stockexchange { get { - return this.__createdonbehalfby_value; + return this._stockexchange; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnstockexchangeChanging(value); + this._stockexchange = value; + this.OnstockexchangeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _stockexchange; + partial void OnstockexchangeChanging(string value); + partial void OnstockexchangeChanged(); /// /// There are no comments for Property _modifiedbyexternalparty_value in the schema. /// @@ -25849,6 +25717,50 @@ public virtual string address1_primarycontactname partial void On_modifiedbyexternalparty_valueChanging(global::System.Nullable value); partial void On_modifiedbyexternalparty_valueChanged(); /// + /// There are no comments for Property address2_telephone1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_telephone1 + { + get + { + return this._address2_telephone1; + } + set + { + this.Onaddress2_telephone1Changing(value); + this._address2_telephone1 = value; + this.Onaddress2_telephone1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_telephone1; + partial void Onaddress2_telephone1Changing(string value); + partial void Onaddress2_telephone1Changed(); + /// + /// There are no comments for Property address2_line3 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_line3 + { + get + { + return this._address2_line3; + } + set + { + this.Onaddress2_line3Changing(value); + this._address2_line3 = value; + this.Onaddress2_line3Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_line3; + partial void Onaddress2_line3Changing(string value); + partial void Onaddress2_line3Changed(); + /// /// There are no comments for Property address2_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -25937,6 +25849,28 @@ public virtual string address2_postalcode partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property address2_upszone in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_upszone + { + get + { + return this._address2_upszone; + } + set + { + this.Onaddress2_upszoneChanging(value); + this._address2_upszone = value; + this.Onaddress2_upszoneChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_upszone; + partial void Onaddress2_upszoneChanging(string value); + partial void Onaddress2_upszoneChanged(); + /// /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -25959,49 +25893,71 @@ public virtual string address2_postalcode partial void Onentityimage_timestampChanging(global::System.Nullable value); partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property address1_name in the schema. + /// There are no comments for Property address2_primarycontactname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_name + public virtual string address2_primarycontactname { get { - return this._address1_name; + return this._address2_primarycontactname; } set { - this.Onaddress1_nameChanging(value); - this._address1_name = value; - this.Onaddress1_nameChanged(); + this.Onaddress2_primarycontactnameChanging(value); + this._address2_primarycontactname = value; + this.Onaddress2_primarycontactnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_name; - partial void Onaddress1_nameChanging(string value); - partial void Onaddress1_nameChanged(); + private string _address2_primarycontactname; + partial void Onaddress2_primarycontactnameChanging(string value); + partial void Onaddress2_primarycontactnameChanged(); /// - /// There are no comments for Property telephone2 in the schema. + /// There are no comments for Property _parentaccountid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string telephone2 + public virtual global::System.Nullable _parentaccountid_value { get { - return this._telephone2; + return this.__parentaccountid_value; } set { - this.Ontelephone2Changing(value); - this._telephone2 = value; - this.Ontelephone2Changed(); + this.On_parentaccountid_valueChanging(value); + this.__parentaccountid_value = value; + this.On_parentaccountid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _telephone2; - partial void Ontelephone2Changing(string value); - partial void Ontelephone2Changed(); + private global::System.Nullable __parentaccountid_value; + partial void On_parentaccountid_valueChanging(global::System.Nullable value); + partial void On_parentaccountid_valueChanged(); + /// + /// There are no comments for Property address1_country in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_country + { + get + { + return this._address1_country; + } + set + { + this.Onaddress1_countryChanging(value); + this._address1_country = value; + this.Onaddress1_countryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_country; + partial void Onaddress1_countryChanging(string value); + partial void Onaddress1_countryChanged(); /// /// There are no comments for Property primarytwitterid in the schema. /// @@ -26047,6 +26003,50 @@ public virtual string primarytwitterid partial void OncustomertypecodeChanging(global::System.Nullable value); partial void OncustomertypecodeChanged(); /// + /// There are no comments for Property address2_line1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_line1 + { + get + { + return this._address2_line1; + } + set + { + this.Onaddress2_line1Changing(value); + this._address2_line1 = value; + this.Onaddress2_line1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_line1; + partial void Onaddress2_line1Changing(string value); + partial void Onaddress2_line1Changed(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property address2_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -26179,27 +26179,49 @@ public virtual string address2_city partial void Onaddress1_longitudeChanging(global::System.Nullable value); partial void Onaddress1_longitudeChanged(); /// - /// There are no comments for Property address1_addresstypecode in the schema. + /// There are no comments for Property creditonhold in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_addresstypecode + public virtual global::System.Nullable creditonhold { get { - return this._address1_addresstypecode; + return this._creditonhold; } set { - this.Onaddress1_addresstypecodeChanging(value); - this._address1_addresstypecode = value; - this.Onaddress1_addresstypecodeChanged(); + this.OncreditonholdChanging(value); + this._creditonhold = value; + this.OncreditonholdChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_addresstypecode; - partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); - partial void Onaddress1_addresstypecodeChanged(); + private global::System.Nullable _creditonhold; + partial void OncreditonholdChanging(global::System.Nullable value); + partial void OncreditonholdChanged(); + /// + /// There are no comments for Property telephone2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string telephone2 + { + get + { + return this._telephone2; + } + set + { + this.Ontelephone2Changing(value); + this._telephone2 = value; + this.Ontelephone2Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _telephone2; + partial void Ontelephone2Changing(string value); + partial void Ontelephone2Changed(); /// /// There are no comments for Property donotbulkpostalmail in the schema. /// @@ -26267,6 +26289,28 @@ public virtual string address2_city partial void On_preferredsystemuserid_valueChanging(global::System.Nullable value); partial void On_preferredsystemuserid_valueChanged(); /// + /// There are no comments for Property description in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string description + { + get + { + return this._description; + } + set + { + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); + /// /// There are no comments for Property creditlimit_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -26377,71 +26421,49 @@ public virtual string websiteurl partial void OnaccountclassificationcodeChanging(global::System.Nullable value); partial void OnaccountclassificationcodeChanged(); /// - /// There are no comments for Property address2_composite in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_composite - { - get - { - return this._address2_composite; - } - set - { - this.Onaddress2_compositeChanging(value); - this._address2_composite = value; - this.Onaddress2_compositeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_composite; - partial void Onaddress2_compositeChanging(string value); - partial void Onaddress2_compositeChanged(); - /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _createdbyexternalparty_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _createdbyexternalparty_value { get { - return this._name; + return this.__createdbyexternalparty_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_createdbyexternalparty_valueChanging(value); + this.__createdbyexternalparty_value = value; + this.On_createdbyexternalparty_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __createdbyexternalparty_value; + partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); + partial void On_createdbyexternalparty_valueChanged(); /// - /// There are no comments for Property address2_telephone1 in the schema. + /// There are no comments for Property sic in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_telephone1 + public virtual string sic { get { - return this._address2_telephone1; + return this._sic; } set { - this.Onaddress2_telephone1Changing(value); - this._address2_telephone1 = value; - this.Onaddress2_telephone1Changed(); + this.OnsicChanging(value); + this._sic = value; + this.OnsicChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone1; - partial void Onaddress2_telephone1Changing(string value); - partial void Onaddress2_telephone1Changed(); + private string _sic; + partial void OnsicChanging(string value); + partial void OnsicChanged(); /// /// There are no comments for Property _preferredequipmentid_value in the schema. /// @@ -26531,93 +26553,93 @@ public virtual string address2_line2 partial void Onaddress2_line2Changing(string value); partial void Onaddress2_line2Changed(); /// - /// There are no comments for Property creditonhold in the schema. + /// There are no comments for Property address1_line1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable creditonhold + public virtual string address1_line1 { get { - return this._creditonhold; + return this._address1_line1; } set { - this.OncreditonholdChanging(value); - this._creditonhold = value; - this.OncreditonholdChanged(); + this.Onaddress1_line1Changing(value); + this._address1_line1 = value; + this.Onaddress1_line1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _creditonhold; - partial void OncreditonholdChanging(global::System.Nullable value); - partial void OncreditonholdChanged(); + private string _address1_line1; + partial void Onaddress1_line1Changing(string value); + partial void Onaddress1_line1Changed(); /// - /// There are no comments for Property preferredappointmentdaycode in the schema. + /// There are no comments for Property address1_telephone2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable preferredappointmentdaycode + public virtual string address1_telephone2 { get { - return this._preferredappointmentdaycode; + return this._address1_telephone2; } set { - this.OnpreferredappointmentdaycodeChanging(value); - this._preferredappointmentdaycode = value; - this.OnpreferredappointmentdaycodeChanged(); + this.Onaddress1_telephone2Changing(value); + this._address1_telephone2 = value; + this.Onaddress1_telephone2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _preferredappointmentdaycode; - partial void OnpreferredappointmentdaycodeChanging(global::System.Nullable value); - partial void OnpreferredappointmentdaycodeChanged(); + private string _address1_telephone2; + partial void Onaddress1_telephone2Changing(string value); + partial void Onaddress1_telephone2Changed(); /// - /// There are no comments for Property entityimageid in the schema. + /// There are no comments for Property preferredappointmentdaycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimageid + public virtual global::System.Nullable preferredappointmentdaycode { get { - return this._entityimageid; + return this._preferredappointmentdaycode; } set { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); + this.OnpreferredappointmentdaycodeChanging(value); + this._preferredappointmentdaycode = value; + this.OnpreferredappointmentdaycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); + private global::System.Nullable _preferredappointmentdaycode; + partial void OnpreferredappointmentdaycodeChanging(global::System.Nullable value); + partial void OnpreferredappointmentdaycodeChanged(); /// - /// There are no comments for Property accountnumber in the schema. + /// There are no comments for Property aging30_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string accountnumber + public virtual global::System.Nullable aging30_base { get { - return this._accountnumber; + return this._aging30_base; } set { - this.OnaccountnumberChanging(value); - this._accountnumber = value; - this.OnaccountnumberChanged(); + this.Onaging30_baseChanging(value); + this._aging30_base = value; + this.Onaging30_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _accountnumber; - partial void OnaccountnumberChanging(string value); - partial void OnaccountnumberChanged(); + private global::System.Nullable _aging30_base; + partial void Onaging30_baseChanging(global::System.Nullable value); + partial void Onaging30_baseChanged(); /// /// There are no comments for Property _territoryid_value in the schema. /// @@ -26663,27 +26685,27 @@ public virtual string accountnumber partial void OnfollowemailChanging(global::System.Nullable value); partial void OnfollowemailChanged(); /// - /// There are no comments for Property address1_upszone in the schema. + /// There are no comments for Property teamsfollowed in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_upszone + public virtual global::System.Nullable teamsfollowed { get { - return this._address1_upszone; + return this._teamsfollowed; } set { - this.Onaddress1_upszoneChanging(value); - this._address1_upszone = value; - this.Onaddress1_upszoneChanged(); + this.OnteamsfollowedChanging(value); + this._teamsfollowed = value; + this.OnteamsfollowedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_upszone; - partial void Onaddress1_upszoneChanging(string value); - partial void Onaddress1_upszoneChanged(); + private global::System.Nullable _teamsfollowed; + partial void OnteamsfollowedChanging(global::System.Nullable value); + partial void OnteamsfollowedChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -26707,27 +26729,27 @@ public virtual string address1_upszone partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property address1_county in the schema. + /// There are no comments for Property entityimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_county + public virtual global::System.Nullable entityimageid { get { - return this._address1_county; + return this._entityimageid; } set { - this.Onaddress1_countyChanging(value); - this._address1_county = value; - this.Onaddress1_countyChanged(); + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_county; - partial void Onaddress1_countyChanging(string value); - partial void Onaddress1_countyChanged(); + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); /// /// There are no comments for Property address1_fax in the schema. /// @@ -26751,71 +26773,71 @@ public virtual string address1_fax partial void Onaddress1_faxChanging(string value); partial void Onaddress1_faxChanged(); /// - /// There are no comments for Property marketcap_base in the schema. + /// There are no comments for Property _preferredserviceid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable marketcap_base + public virtual global::System.Nullable _preferredserviceid_value { get { - return this._marketcap_base; + return this.__preferredserviceid_value; } set { - this.Onmarketcap_baseChanging(value); - this._marketcap_base = value; - this.Onmarketcap_baseChanged(); + this.On_preferredserviceid_valueChanging(value); + this.__preferredserviceid_value = value; + this.On_preferredserviceid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _marketcap_base; - partial void Onmarketcap_baseChanging(global::System.Nullable value); - partial void Onmarketcap_baseChanged(); + private global::System.Nullable __preferredserviceid_value; + partial void On_preferredserviceid_valueChanging(global::System.Nullable value); + partial void On_preferredserviceid_valueChanged(); /// - /// There are no comments for Property address2_upszone in the schema. + /// There are no comments for Property address2_country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_upszone + public virtual string address2_country { get { - return this._address2_upszone; + return this._address2_country; } set { - this.Onaddress2_upszoneChanging(value); - this._address2_upszone = value; - this.Onaddress2_upszoneChanged(); + this.Onaddress2_countryChanging(value); + this._address2_country = value; + this.Onaddress2_countryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_upszone; - partial void Onaddress2_upszoneChanging(string value); - partial void Onaddress2_upszoneChanged(); + private string _address2_country; + partial void Onaddress2_countryChanging(string value); + partial void Onaddress2_countryChanged(); /// - /// There are no comments for Property address2_country in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_country + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._address2_country; + return this.__createdonbehalfby_value; } set { - this.Onaddress2_countryChanging(value); - this._address2_country = value; - this.Onaddress2_countryChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_country; - partial void Onaddress2_countryChanging(string value); - partial void Onaddress2_countryChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property address2_freighttermscode in the schema. /// @@ -26883,28 +26905,6 @@ public virtual string emailaddress2 partial void Onemailaddress2Changing(string value); partial void Onemailaddress2Changed(); /// - /// There are no comments for Property _parentaccountid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _parentaccountid_value - { - get - { - return this.__parentaccountid_value; - } - set - { - this.On_parentaccountid_valueChanging(value); - this.__parentaccountid_value = value; - this.On_parentaccountid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentaccountid_value; - partial void On_parentaccountid_valueChanging(global::System.Nullable value); - partial void On_parentaccountid_valueChanged(); - /// /// There are no comments for Property preferredcontactmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -29084,6 +29084,28 @@ public static aciviewmapper Createaciviewmapper(global::EMBC.ESS.Utilities.Dynam partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -29150,28 +29172,6 @@ public static aciviewmapper Createaciviewmapper(global::EMBC.ESS.Utilities.Dynam partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -29260,6 +29260,28 @@ public static aciviewmapper Createaciviewmapper(global::EMBC.ESS.Utilities.Dynam partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -29326,28 +29348,6 @@ public virtual string webapplicationendpoint partial void OnwebapplicationendpointChanging(string value); partial void OnwebapplicationendpointChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property aciviewmapperid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -30136,27 +30136,27 @@ public static actioncard Createactioncard(global::EMBC.ESS.Utilities.Dynamics.Mi return actioncard; } /// - /// There are no comments for Property expirydate in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable expirydate + public virtual global::System.Nullable createdon { get { - return this._expirydate; + return this._createdon; } set { - this.OnexpirydateChanging(value); - this._expirydate = value; - this.OnexpirydateChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expirydate; - partial void OnexpirydateChanging(global::System.Nullable value); - partial void OnexpirydateChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -30334,28 +30334,6 @@ public virtual string parentregardingobjectiddata partial void OnparentregardingobjectiddataChanging(string value); partial void OnparentregardingobjectiddataChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property source in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -30554,6 +30532,28 @@ public virtual string description partial void OnstateChanging(global::System.Nullable value); partial void OnstateChanged(); /// + /// There are no comments for Property startdate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable startdate + { + get + { + return this._startdate; + } + set + { + this.OnstartdateChanging(value); + this._startdate = value; + this.OnstartdateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _startdate; + partial void OnstartdateChanging(global::System.Nullable value); + partial void OnstartdateChanged(); + /// /// There are no comments for Property _parentregardingobjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -30620,27 +30620,27 @@ public virtual string description partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property startdate in the schema. + /// There are no comments for Property expirydate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable startdate + public virtual global::System.Nullable expirydate { get { - return this._startdate; + return this._expirydate; } set { - this.OnstartdateChanging(value); - this._startdate = value; - this.OnstartdateChanged(); + this.OnexpirydateChanging(value); + this._expirydate = value; + this.OnexpirydateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _startdate; - partial void OnstartdateChanging(global::System.Nullable value); - partial void OnstartdateChanged(); + private global::System.Nullable _expirydate; + partial void OnexpirydateChanging(global::System.Nullable value); + partial void OnexpirydateChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -32131,49 +32131,27 @@ public static activitymimeattachment Createactivitymimeattachment(global::EMBC.E partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable overwritetime { get { - return this.__ownerid_value; + return this._overwritetime; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property subject in the schema. /// @@ -32197,93 +32175,71 @@ public virtual string subject partial void OnsubjectChanging(string value); partial void OnsubjectChanged(); /// - /// There are no comments for Property filesize in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable filesize - { - get - { - return this._filesize; - } - set - { - this.OnfilesizeChanging(value); - this._filesize = value; - this.OnfilesizeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _filesize; - partial void OnfilesizeChanging(global::System.Nullable value); - partial void OnfilesizeChanged(); - /// - /// There are no comments for Property isfollowed in the schema. + /// There are no comments for Property filename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isfollowed + public virtual string filename { get { - return this._isfollowed; + return this._filename; } set { - this.OnisfollowedChanging(value); - this._isfollowed = value; - this.OnisfollowedChanged(); + this.OnfilenameChanging(value); + this._filename = value; + this.OnfilenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isfollowed; - partial void OnisfollowedChanging(global::System.Nullable value); - partial void OnisfollowedChanged(); + private string _filename; + partial void OnfilenameChanging(string value); + partial void OnfilenameChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable _ownerid_value { get { - return this._ismanaged; + return this.__ownerid_value; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property activitymimeattachmentid in the schema. + /// There are no comments for Property activitymimeattachmentidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable activitymimeattachmentid + public virtual global::System.Nullable activitymimeattachmentidunique { get { - return this._activitymimeattachmentid; + return this._activitymimeattachmentidunique; } set { - this.OnactivitymimeattachmentidChanging(value); - this._activitymimeattachmentid = value; - this.OnactivitymimeattachmentidChanged(); + this.OnactivitymimeattachmentiduniqueChanging(value); + this._activitymimeattachmentidunique = value; + this.OnactivitymimeattachmentiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _activitymimeattachmentid; - partial void OnactivitymimeattachmentidChanging(global::System.Nullable value); - partial void OnactivitymimeattachmentidChanged(); + private global::System.Nullable _activitymimeattachmentidunique; + partial void OnactivitymimeattachmentiduniqueChanging(global::System.Nullable value); + partial void OnactivitymimeattachmentiduniqueChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -32307,6 +32263,94 @@ public virtual string subject partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property filesize in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable filesize + { + get + { + return this._filesize; + } + set + { + this.OnfilesizeChanging(value); + this._filesize = value; + this.OnfilesizeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _filesize; + partial void OnfilesizeChanging(global::System.Nullable value); + partial void OnfilesizeChanged(); + /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// + /// There are no comments for Property activitymimeattachmentid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable activitymimeattachmentid + { + get + { + return this._activitymimeattachmentid; + } + set + { + this.OnactivitymimeattachmentidChanging(value); + this._activitymimeattachmentid = value; + this.OnactivitymimeattachmentidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _activitymimeattachmentid; + partial void OnactivitymimeattachmentidChanging(global::System.Nullable value); + partial void OnactivitymimeattachmentidChanged(); + /// /// There are no comments for Property attachmentcontentid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -32417,28 +32461,6 @@ public virtual string objecttypecode partial void On_objectid_valueChanging(global::System.Nullable value); partial void On_objectid_valueChanged(); /// - /// There are no comments for Property activitymimeattachmentidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable activitymimeattachmentidunique - { - get - { - return this._activitymimeattachmentidunique; - } - set - { - this.OnactivitymimeattachmentiduniqueChanging(value); - this._activitymimeattachmentidunique = value; - this.OnactivitymimeattachmentiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _activitymimeattachmentidunique; - partial void OnactivitymimeattachmentiduniqueChanging(global::System.Nullable value); - partial void OnactivitymimeattachmentiduniqueChanged(); - /// /// There are no comments for Property mimetype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -32461,49 +32483,49 @@ public virtual string mimetype partial void OnmimetypeChanging(string value); partial void OnmimetypeChanged(); /// - /// There are no comments for Property activitysubject in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string activitysubject + public virtual global::System.Nullable solutionid { get { - return this._activitysubject; + return this._solutionid; } set { - this.OnactivitysubjectChanging(value); - this._activitysubject = value; - this.OnactivitysubjectChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _activitysubject; - partial void OnactivitysubjectChanging(string value); - partial void OnactivitysubjectChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property activitysubject in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual string activitysubject { get { - return this._solutionid; + return this._activitysubject; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OnactivitysubjectChanging(value); + this._activitysubject = value; + this.OnactivitysubjectChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private string _activitysubject; + partial void OnactivitysubjectChanging(string value); + partial void OnactivitysubjectChanged(); /// /// There are no comments for Property attachmentnumber in the schema. /// @@ -32549,27 +32571,27 @@ public virtual string anonymouslink partial void OnanonymouslinkChanging(string value); partial void OnanonymouslinkChanged(); /// - /// There are no comments for Property filename in the schema. + /// There are no comments for Property isfollowed in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string filename + public virtual global::System.Nullable isfollowed { get { - return this._filename; + return this._isfollowed; } set { - this.OnfilenameChanging(value); - this._filename = value; - this.OnfilenameChanged(); + this.OnisfollowedChanging(value); + this._isfollowed = value; + this.OnisfollowedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _filename; - partial void OnfilenameChanging(string value); - partial void OnfilenameChanged(); + private global::System.Nullable _isfollowed; + partial void OnisfollowedChanging(global::System.Nullable value); + partial void OnisfollowedChanged(); /// /// There are no comments for Property body in the schema. /// @@ -32615,28 +32637,6 @@ public virtual byte[] body_binary partial void Onbody_binaryChanging(byte[] value); partial void Onbody_binaryChanged(); /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// /// There are no comments for Property ActivityMimeAttachment_SyncErrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -33308,6 +33308,28 @@ public static activitymonitor Createactivitymonitor(global::EMBC.ESS.Utilities.D return activitymonitor; } /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -33330,49 +33352,49 @@ public static activitymonitor Createactivitymonitor(global::EMBC.ESS.Utilities.D partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable createdon { get { - return this._overriddencreatedon; + return this._createdon; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__ownerid_value; + return this._utcconversiontimezonecode; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -33418,6 +33440,28 @@ public static activitymonitor Createactivitymonitor(global::EMBC.ESS.Utilities.D partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// /// There are no comments for Property _monitoredactivityitemid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -33440,72 +33484,6 @@ public static activitymonitor Createactivitymonitor(global::EMBC.ESS.Utilities.D partial void On_monitoredactivityitemid_valueChanging(global::System.Nullable value); partial void On_monitoredactivityitemid_valueChanged(); /// - /// There are no comments for Property currentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable currentstate - { - get - { - return this._currentstate; - } - set - { - this.OncurrentstateChanging(value); - this._currentstate = value; - this.OncurrentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _currentstate; - partial void OncurrentstateChanging(global::System.Nullable value); - partial void OncurrentstateChanged(); - /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// /// There are no comments for Property activitymonitorid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -33528,49 +33506,49 @@ public static activitymonitor Createactivitymonitor(global::EMBC.ESS.Utilities.D partial void OnactivitymonitoridChanging(global::System.Nullable value); partial void OnactivitymonitoridChanged(); /// - /// There are no comments for Property entitlementcheck in the schema. + /// There are no comments for Property advancedsettings in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entitlementcheck + public virtual string advancedsettings { get { - return this._entitlementcheck; + return this._advancedsettings; } set { - this.OnentitlementcheckChanging(value); - this._entitlementcheck = value; - this.OnentitlementcheckChanged(); + this.OnadvancedsettingsChanging(value); + this._advancedsettings = value; + this.OnadvancedsettingsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entitlementcheck; - partial void OnentitlementcheckChanging(global::System.Nullable value); - partial void OnentitlementcheckChanged(); + private string _advancedsettings; + partial void OnadvancedsettingsChanging(string value); + partial void OnadvancedsettingsChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property entitlementcheck in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable entitlementcheck { get { - return this.__modifiedonbehalfby_value; + return this._entitlementcheck; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnentitlementcheckChanging(value); + this._entitlementcheck = value; + this.OnentitlementcheckChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _entitlementcheck; + partial void OnentitlementcheckChanging(global::System.Nullable value); + partial void OnentitlementcheckChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -33682,71 +33660,71 @@ public static activitymonitor Createactivitymonitor(global::EMBC.ESS.Utilities.D partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _ownerid_value { get { - return this._createdon; + return this.__ownerid_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property advancedsettings in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string advancedsettings + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._advancedsettings; + return this.__modifiedonbehalfby_value; } set { - this.OnadvancedsettingsChanging(value); - this._advancedsettings = value; - this.OnadvancedsettingsChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _advancedsettings; - partial void OnadvancedsettingsChanging(string value); - partial void OnadvancedsettingsChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable overriddencreatedon { get { - return this._versionnumber; + return this._overriddencreatedon; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -33814,6 +33792,28 @@ public virtual string name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property currentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable currentstate + { + get + { + return this._currentstate; + } + set + { + this.OncurrentstateChanging(value); + this._currentstate = value; + this.OncurrentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _currentstate; + partial void OncurrentstateChanging(global::System.Nullable value); + partial void OncurrentstateChanged(); + /// /// There are no comments for Property _conditionid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -33858,49 +33858,49 @@ public virtual string name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property contactcreatedbyrule in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable contactcreatedbyrule { get { - return this.__owningteam_value; + return this._contactcreatedbyrule; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OncontactcreatedbyruleChanging(value); + this._contactcreatedbyrule = value; + this.OncontactcreatedbyruleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _contactcreatedbyrule; + partial void OncontactcreatedbyruleChanging(global::System.Nullable value); + partial void OncontactcreatedbyruleChanged(); /// - /// There are no comments for Property contactcreatedbyrule in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable contactcreatedbyrule + public virtual global::System.Nullable _owningteam_value { get { - return this._contactcreatedbyrule; + return this.__owningteam_value; } set { - this.OncontactcreatedbyruleChanging(value); - this._contactcreatedbyrule = value; - this.OncontactcreatedbyruleChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _contactcreatedbyrule; - partial void OncontactcreatedbyruleChanging(global::System.Nullable value); - partial void OncontactcreatedbyruleChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -35401,49 +35401,49 @@ public static activityparty Createactivityparty(global::EMBC.ESS.Utilities.Dynam partial void OnaddressusedemailcolumnnumberChanging(global::System.Nullable value); partial void OnaddressusedemailcolumnnumberChanged(); /// - /// There are no comments for Property scheduledend in the schema. + /// There are no comments for Property effort in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable scheduledend + public virtual global::System.Nullable effort { get { - return this._scheduledend; + return this._effort; } set { - this.OnscheduledendChanging(value); - this._scheduledend = value; - this.OnscheduledendChanged(); + this.OneffortChanging(value); + this._effort = value; + this.OneffortChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _scheduledend; - partial void OnscheduledendChanging(global::System.Nullable value); - partial void OnscheduledendChanged(); + private global::System.Nullable _effort; + partial void OneffortChanging(global::System.Nullable value); + partial void OneffortChanged(); /// - /// There are no comments for Property effort in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable effort + public virtual global::System.Nullable _ownerid_value { get { - return this._effort; + return this.__ownerid_value; } set { - this.OneffortChanging(value); - this._effort = value; - this.OneffortChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _effort; - partial void OneffortChanging(global::System.Nullable value); - partial void OneffortChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property instancetypecode in the schema. /// @@ -35533,27 +35533,49 @@ public virtual string addressused partial void OnscheduledstartChanging(global::System.Nullable value); partial void OnscheduledstartChanged(); /// - /// There are no comments for Property _partyid_value in the schema. + /// There are no comments for Property scheduledend in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _partyid_value + public virtual global::System.Nullable scheduledend { get { - return this.__partyid_value; + return this._scheduledend; } set { - this.On_partyid_valueChanging(value); - this.__partyid_value = value; - this.On_partyid_valueChanged(); + this.OnscheduledendChanging(value); + this._scheduledend = value; + this.OnscheduledendChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __partyid_value; - partial void On_partyid_valueChanging(global::System.Nullable value); - partial void On_partyid_valueChanged(); + private global::System.Nullable _scheduledend; + partial void OnscheduledendChanging(global::System.Nullable value); + partial void OnscheduledendChanged(); + /// + /// There are no comments for Property donotemail in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable donotemail + { + get + { + return this._donotemail; + } + set + { + this.OndonotemailChanging(value); + this._donotemail = value; + this.OndonotemailChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _donotemail; + partial void OndonotemailChanging(global::System.Nullable value); + partial void OndonotemailChanged(); /// /// There are no comments for Property _resourcespecid_value in the schema. /// @@ -35577,6 +35599,28 @@ public virtual string addressused partial void On_resourcespecid_valueChanging(global::System.Nullable value); partial void On_resourcespecid_valueChanged(); /// + /// There are no comments for Property _partyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _partyid_value + { + get + { + return this.__partyid_value; + } + set + { + this.On_partyid_valueChanging(value); + this.__partyid_value = value; + this.On_partyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __partyid_value; + partial void On_partyid_valueChanging(global::System.Nullable value); + partial void On_partyid_valueChanged(); + /// /// There are no comments for Property exchangeentryid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -35599,49 +35643,49 @@ public virtual string exchangeentryid partial void OnexchangeentryidChanging(string value); partial void OnexchangeentryidChanged(); /// - /// There are no comments for Property donotphone in the schema. + /// There are no comments for Property _activityid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable donotphone + public virtual global::System.Nullable _activityid_value { get { - return this._donotphone; + return this.__activityid_value; } set { - this.OndonotphoneChanging(value); - this._donotphone = value; - this.OndonotphoneChanged(); + this.On_activityid_valueChanging(value); + this.__activityid_value = value; + this.On_activityid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotphone; - partial void OndonotphoneChanging(global::System.Nullable value); - partial void OndonotphoneChanged(); + private global::System.Nullable __activityid_value; + partial void On_activityid_valueChanging(global::System.Nullable value); + partial void On_activityid_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property donotphone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable donotphone { get { - return this._versionnumber; + return this._donotphone; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OndonotphoneChanging(value); + this._donotphone = value; + this.OndonotphoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _donotphone; + partial void OndonotphoneChanging(global::System.Nullable value); + partial void OndonotphoneChanged(); /// /// There are no comments for Property participationtypemask in the schema. /// @@ -35665,72 +35709,6 @@ public virtual string exchangeentryid partial void OnparticipationtypemaskChanging(global::System.Nullable value); partial void OnparticipationtypemaskChanged(); /// - /// There are no comments for Property ispartydeleted in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ispartydeleted - { - get - { - return this._ispartydeleted; - } - set - { - this.OnispartydeletedChanging(value); - this._ispartydeleted = value; - this.OnispartydeletedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ispartydeleted; - partial void OnispartydeletedChanging(global::System.Nullable value); - partial void OnispartydeletedChanged(); - /// - /// There are no comments for Property _activityid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _activityid_value - { - get - { - return this.__activityid_value; - } - set - { - this.On_activityid_valueChanging(value); - this.__activityid_value = value; - this.On_activityid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __activityid_value; - partial void On_activityid_valueChanging(global::System.Nullable value); - partial void On_activityid_valueChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property donotpostalmail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -35775,27 +35753,49 @@ public virtual string exchangeentryid partial void OnactivitypartyidChanging(global::System.Nullable value); partial void OnactivitypartyidChanged(); /// - /// There are no comments for Property donotemail in the schema. + /// There are no comments for Property ispartydeleted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable donotemail + public virtual global::System.Nullable ispartydeleted { get { - return this._donotemail; + return this._ispartydeleted; } set { - this.OndonotemailChanging(value); - this._donotemail = value; - this.OndonotemailChanged(); + this.OnispartydeletedChanging(value); + this._ispartydeleted = value; + this.OnispartydeletedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotemail; - partial void OndonotemailChanging(global::System.Nullable value); - partial void OndonotemailChanged(); + private global::System.Nullable _ispartydeleted; + partial void OnispartydeletedChanging(global::System.Nullable value); + partial void OnispartydeletedChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property ActivityParty_SyncErrors in the schema. /// @@ -38196,49 +38196,49 @@ public virtual string exchangeitemid partial void OnexchangeitemidChanging(string value); partial void OnexchangeitemidChanged(); /// - /// There are no comments for Property ismapiprivate in the schema. + /// There are no comments for Property _slainvokedid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismapiprivate + public virtual global::System.Nullable _slainvokedid_value { get { - return this._ismapiprivate; + return this.__slainvokedid_value; } set { - this.OnismapiprivateChanging(value); - this._ismapiprivate = value; - this.OnismapiprivateChanged(); + this.On_slainvokedid_valueChanging(value); + this.__slainvokedid_value = value; + this.On_slainvokedid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismapiprivate; - partial void OnismapiprivateChanging(global::System.Nullable value); - partial void OnismapiprivateChanged(); + private global::System.Nullable __slainvokedid_value; + partial void On_slainvokedid_valueChanging(global::System.Nullable value); + partial void On_slainvokedid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._createdon; + return this._timezoneruleversionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property seriesid in the schema. /// @@ -38262,49 +38262,27 @@ public virtual string exchangeitemid partial void OnseriesidChanging(global::System.Nullable value); partial void OnseriesidChanged(); /// - /// There are no comments for Property leftvoicemail in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable leftvoicemail - { - get - { - return this._leftvoicemail; - } - set - { - this.OnleftvoicemailChanging(value); - this._leftvoicemail = value; - this.OnleftvoicemailChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _leftvoicemail; - partial void OnleftvoicemailChanging(global::System.Nullable value); - partial void OnleftvoicemailChanged(); - /// - /// There are no comments for Property deliverylastattemptedon in the schema. + /// There are no comments for Property subject in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable deliverylastattemptedon + public virtual string subject { get { - return this._deliverylastattemptedon; + return this._subject; } set { - this.OndeliverylastattemptedonChanging(value); - this._deliverylastattemptedon = value; - this.OndeliverylastattemptedonChanged(); + this.OnsubjectChanging(value); + this._subject = value; + this.OnsubjectChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _deliverylastattemptedon; - partial void OndeliverylastattemptedonChanging(global::System.Nullable value); - partial void OndeliverylastattemptedonChanged(); + private string _subject; + partial void OnsubjectChanging(string value); + partial void OnsubjectChanged(); /// /// There are no comments for Property isbilled in the schema. /// @@ -38328,28 +38306,6 @@ public virtual string exchangeitemid partial void OnisbilledChanging(global::System.Nullable value); partial void OnisbilledChanged(); /// - /// There are no comments for Property isworkflowcreated in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isworkflowcreated - { - get - { - return this._isworkflowcreated; - } - set - { - this.OnisworkflowcreatedChanging(value); - this._isworkflowcreated = value; - this.OnisworkflowcreatedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isworkflowcreated; - partial void OnisworkflowcreatedChanging(global::System.Nullable value); - partial void OnisworkflowcreatedChanged(); - /// /// There are no comments for Property _sendermailboxid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -38372,6 +38328,28 @@ public virtual string exchangeitemid partial void On_sendermailboxid_valueChanging(global::System.Nullable value); partial void On_sendermailboxid_valueChanged(); /// + /// There are no comments for Property isregularactivity in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isregularactivity + { + get + { + return this._isregularactivity; + } + set + { + this.OnisregularactivityChanging(value); + this._isregularactivity = value; + this.OnisregularactivityChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isregularactivity; + partial void OnisregularactivityChanging(global::System.Nullable value); + partial void OnisregularactivityChanged(); + /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -38394,27 +38372,27 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property _serviceid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _serviceid_value + public virtual global::System.Nullable createdon { get { - return this.__serviceid_value; + return this._createdon; } set { - this.On_serviceid_valueChanging(value); - this.__serviceid_value = value; - this.On_serviceid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __serviceid_value; - partial void On_serviceid_valueChanging(global::System.Nullable value); - partial void On_serviceid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property onholdtime in the schema. /// @@ -38482,49 +38460,49 @@ public virtual string description partial void OncommunityChanging(global::System.Nullable value); partial void OncommunityChanged(); /// - /// There are no comments for Property activityid in the schema. + /// There are no comments for Property deliverylastattemptedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable activityid + public virtual global::System.Nullable deliverylastattemptedon { get { - return this._activityid; + return this._deliverylastattemptedon; } set { - this.OnactivityidChanging(value); - this._activityid = value; - this.OnactivityidChanged(); + this.OndeliverylastattemptedonChanging(value); + this._deliverylastattemptedon = value; + this.OndeliverylastattemptedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _activityid; - partial void OnactivityidChanging(global::System.Nullable value); - partial void OnactivityidChanged(); + private global::System.Nullable _deliverylastattemptedon; + partial void OndeliverylastattemptedonChanging(global::System.Nullable value); + partial void OndeliverylastattemptedonChanged(); /// - /// There are no comments for Property sortdate in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sortdate + public virtual global::System.Nullable _createdby_value { get { - return this._sortdate; + return this.__createdby_value; } set { - this.OnsortdateChanging(value); - this._sortdate = value; - this.OnsortdateChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sortdate; - partial void OnsortdateChanging(global::System.Nullable value); - partial void OnsortdateChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property instancetypecode in the schema. /// @@ -38548,27 +38526,27 @@ public virtual string description partial void OninstancetypecodeChanging(global::System.Nullable value); partial void OninstancetypecodeChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property leftvoicemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable leftvoicemail { get { - return this._timezoneruleversionnumber; + return this._leftvoicemail; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnleftvoicemailChanging(value); + this._leftvoicemail = value; + this.OnleftvoicemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _leftvoicemail; + partial void OnleftvoicemailChanging(global::System.Nullable value); + partial void OnleftvoicemailChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -38614,28 +38592,6 @@ public virtual string description partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -38702,6 +38658,28 @@ public virtual string description partial void OnprioritycodeChanging(global::System.Nullable value); partial void OnprioritycodeChanged(); /// + /// There are no comments for Property _serviceid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _serviceid_value + { + get + { + return this.__serviceid_value; + } + set + { + this.On_serviceid_valueChanging(value); + this.__serviceid_value = value; + this.On_serviceid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __serviceid_value; + partial void On_serviceid_valueChanging(global::System.Nullable value); + partial void On_serviceid_valueChanged(); + /// /// There are no comments for Property _slaid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -38724,49 +38702,49 @@ public virtual string description partial void On_slaid_valueChanging(global::System.Nullable value); partial void On_slaid_valueChanged(); /// - /// There are no comments for Property stageid in the schema. + /// There are no comments for Property ismapiprivate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable stageid + public virtual global::System.Nullable ismapiprivate { get { - return this._stageid; + return this._ismapiprivate; } set { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); + this.OnismapiprivateChanging(value); + this._ismapiprivate = value; + this.OnismapiprivateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stageid; - partial void OnstageidChanging(global::System.Nullable value); - partial void OnstageidChanged(); + private global::System.Nullable _ismapiprivate; + partial void OnismapiprivateChanging(global::System.Nullable value); + partial void OnismapiprivateChanged(); /// - /// There are no comments for Property actualstart in the schema. + /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable actualstart + public virtual global::System.Nullable stageid { get { - return this._actualstart; + return this._stageid; } set { - this.OnactualstartChanging(value); - this._actualstart = value; - this.OnactualstartChanged(); + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualstart; - partial void OnactualstartChanging(global::System.Nullable value); - partial void OnactualstartChanged(); + private global::System.Nullable _stageid; + partial void OnstageidChanging(global::System.Nullable value); + partial void OnstageidChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -38790,6 +38768,28 @@ public virtual string description partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property _regardingobjectid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _regardingobjectid_value + { + get + { + return this.__regardingobjectid_value; + } + set + { + this.On_regardingobjectid_valueChanging(value); + this.__regardingobjectid_value = value; + this.On_regardingobjectid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __regardingobjectid_value; + partial void On_regardingobjectid_valueChanging(global::System.Nullable value); + partial void On_regardingobjectid_valueChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -38878,27 +38878,27 @@ public virtual string exchangeweblink partial void OnscheduleddurationminutesChanging(global::System.Nullable value); partial void OnscheduleddurationminutesChanged(); /// - /// There are no comments for Property _regardingobjectid_value in the schema. + /// There are no comments for Property actualdurationminutes in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _regardingobjectid_value + public virtual global::System.Nullable actualdurationminutes { get { - return this.__regardingobjectid_value; + return this._actualdurationminutes; } set { - this.On_regardingobjectid_valueChanging(value); - this.__regardingobjectid_value = value; - this.On_regardingobjectid_valueChanged(); + this.OnactualdurationminutesChanging(value); + this._actualdurationminutes = value; + this.OnactualdurationminutesChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __regardingobjectid_value; - partial void On_regardingobjectid_valueChanging(global::System.Nullable value); - partial void On_regardingobjectid_valueChanged(); + private global::System.Nullable _actualdurationminutes; + partial void OnactualdurationminutesChanging(global::System.Nullable value); + partial void OnactualdurationminutesChanged(); /// /// There are no comments for Property senton in the schema. /// @@ -38944,6 +38944,50 @@ public virtual string exchangeweblink partial void OnscheduledstartChanging(global::System.Nullable value); partial void OnscheduledstartChanged(); /// + /// There are no comments for Property sortdate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sortdate + { + get + { + return this._sortdate; + } + set + { + this.OnsortdateChanging(value); + this._sortdate = value; + this.OnsortdateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sortdate; + partial void OnsortdateChanging(global::System.Nullable value); + partial void OnsortdateChanged(); + /// + /// There are no comments for Property actualstart in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable actualstart + { + get + { + return this._actualstart; + } + set + { + this.OnactualstartChanging(value); + this._actualstart = value; + this.OnactualstartChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _actualstart; + partial void OnactualstartChanging(global::System.Nullable value); + partial void OnactualstartChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -38966,28 +39010,6 @@ public virtual string exchangeweblink partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property subject in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string subject - { - get - { - return this._subject; - } - set - { - this.OnsubjectChanging(value); - this._subject = value; - this.OnsubjectChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _subject; - partial void OnsubjectChanging(string value); - partial void OnsubjectChanged(); - /// /// There are no comments for Property postponeactivityprocessinguntil in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -39054,27 +39076,27 @@ public virtual string subject partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property isregularactivity in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isregularactivity + public virtual global::System.Nullable versionnumber { get { - return this._isregularactivity; + return this._versionnumber; } set { - this.OnisregularactivityChanging(value); - this._isregularactivity = value; - this.OnisregularactivityChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isregularactivity; - partial void OnisregularactivityChanging(global::System.Nullable value); - partial void OnisregularactivityChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property deliveryprioritycode in the schema. /// @@ -39098,27 +39120,27 @@ public virtual string subject partial void OndeliveryprioritycodeChanging(global::System.Nullable value); partial void OndeliveryprioritycodeChanged(); /// - /// There are no comments for Property actualdurationminutes in the schema. + /// There are no comments for Property activityadditionalparams in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable actualdurationminutes + public virtual string activityadditionalparams { get { - return this._actualdurationminutes; + return this._activityadditionalparams; } set { - this.OnactualdurationminutesChanging(value); - this._actualdurationminutes = value; - this.OnactualdurationminutesChanged(); + this.OnactivityadditionalparamsChanging(value); + this._activityadditionalparams = value; + this.OnactivityadditionalparamsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualdurationminutes; - partial void OnactualdurationminutesChanging(global::System.Nullable value); - partial void OnactualdurationminutesChanged(); + private string _activityadditionalparams; + partial void OnactivityadditionalparamsChanging(string value); + partial void OnactivityadditionalparamsChanged(); /// /// There are no comments for Property traversedpath in the schema. /// @@ -39142,27 +39164,27 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property activityid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable activityid { get { - return this.__createdby_value; + return this._activityid; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnactivityidChanging(value); + this._activityid = value; + this.OnactivityidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _activityid; + partial void OnactivityidChanging(global::System.Nullable value); + partial void OnactivityidChanged(); /// /// There are no comments for Property activitytypecode in the schema. /// @@ -39186,27 +39208,27 @@ public virtual string activitytypecode partial void OnactivitytypecodeChanging(string value); partial void OnactivitytypecodeChanged(); /// - /// There are no comments for Property activityadditionalparams in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string activityadditionalparams + public virtual global::System.Nullable _ownerid_value { get { - return this._activityadditionalparams; + return this.__ownerid_value; } set { - this.OnactivityadditionalparamsChanging(value); - this._activityadditionalparams = value; - this.OnactivityadditionalparamsChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _activityadditionalparams; - partial void OnactivityadditionalparamsChanging(string value); - partial void OnactivityadditionalparamsChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -39230,49 +39252,27 @@ public virtual string activityadditionalparams partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// - /// There are no comments for Property _slainvokedid_value in the schema. + /// There are no comments for Property isworkflowcreated in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _slainvokedid_value + public virtual global::System.Nullable isworkflowcreated { get { - return this.__slainvokedid_value; + return this._isworkflowcreated; } set { - this.On_slainvokedid_valueChanging(value); - this.__slainvokedid_value = value; - this.On_slainvokedid_valueChanged(); + this.OnisworkflowcreatedChanging(value); + this._isworkflowcreated = value; + this.OnisworkflowcreatedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __slainvokedid_value; - partial void On_slainvokedid_valueChanging(global::System.Nullable value); - partial void On_slainvokedid_valueChanged(); + private global::System.Nullable _isworkflowcreated; + partial void OnisworkflowcreatedChanging(global::System.Nullable value); + partial void OnisworkflowcreatedChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -42989,27 +42989,27 @@ public static annotation Createannotation(global::EMBC.ESS.Utilities.Dynamics.Mi return annotation; } /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._importsequencenumber; + return this.__modifiedonbehalfby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -43077,49 +43077,49 @@ public virtual string notetext partial void OnnotetextChanging(string value); partial void OnnotetextChanged(); /// - /// There are no comments for Property _objectid_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _objectid_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__objectid_value; + return this._overriddencreatedon; } set { - this.On_objectid_valueChanging(value); - this.__objectid_value = value; - this.On_objectid_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __objectid_value; - partial void On_objectid_valueChanging(global::System.Nullable value); - partial void On_objectid_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property objecttypecode in the schema. + /// There are no comments for Property _objectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string objecttypecode + public virtual global::System.Nullable _objectid_value { get { - return this._objecttypecode; + return this.__objectid_value; } set { - this.OnobjecttypecodeChanging(value); - this._objecttypecode = value; - this.OnobjecttypecodeChanged(); + this.On_objectid_valueChanging(value); + this.__objectid_value = value; + this.On_objectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _objecttypecode; - partial void OnobjecttypecodeChanging(string value); - partial void OnobjecttypecodeChanged(); + private global::System.Nullable __objectid_value; + partial void On_objectid_valueChanging(global::System.Nullable value); + partial void On_objectid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -43143,6 +43143,28 @@ public virtual string objecttypecode partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property stepid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string stepid + { + get + { + return this._stepid; + } + set + { + this.OnstepidChanging(value); + this._stepid = value; + this.OnstepidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _stepid; + partial void OnstepidChanging(string value); + partial void OnstepidChanged(); + /// /// There are no comments for Property filesize in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -43209,49 +43231,27 @@ public virtual string mimetype partial void OnmimetypeChanging(string value); partial void OnmimetypeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property objecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string objecttypecode { get { - return this.__createdby_value; + return this._objecttypecode; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnobjecttypecodeChanging(value); + this._objecttypecode = value; + this.OnobjecttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _objecttypecode; + partial void OnobjecttypecodeChanging(string value); + partial void OnobjecttypecodeChanged(); /// /// There are no comments for Property prefix in the schema. /// @@ -43319,28 +43319,6 @@ public virtual string prefix partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property langid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -43407,49 +43385,71 @@ public virtual byte[] documentbody_binary partial void Ondocumentbody_binaryChanging(byte[] value); partial void Ondocumentbody_binaryChanged(); /// - /// There are no comments for Property isdocument in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isdocument + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._isdocument; + return this.__createdonbehalfby_value; } set { - this.OnisdocumentChanging(value); - this._isdocument = value; - this.OnisdocumentChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdocument; - partial void OnisdocumentChanging(global::System.Nullable value); - partial void OnisdocumentChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property subject in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string subject { get { - return this.__owningteam_value; + return this._subject; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnsubjectChanging(value); + this._subject = value; + this.OnsubjectChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _subject; + partial void OnsubjectChanging(string value); + partial void OnsubjectChanged(); + /// + /// There are no comments for Property isdocument in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isdocument + { + get + { + return this._isdocument; + } + set + { + this.OnisdocumentChanging(value); + this._isdocument = value; + this.OnisdocumentChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isdocument; + partial void OnisdocumentChanging(global::System.Nullable value); + partial void OnisdocumentChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -43495,93 +43495,93 @@ public virtual byte[] documentbody_binary partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property stepid in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string stepid + public virtual global::System.Nullable _owningteam_value { get { - return this._stepid; + return this.__owningteam_value; } set { - this.OnstepidChanging(value); - this._stepid = value; - this.OnstepidChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _stepid; - partial void OnstepidChanging(string value); - partial void OnstepidChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property filename in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string filename + public virtual global::System.Nullable importsequencenumber { get { - return this._filename; + return this._importsequencenumber; } set { - this.OnfilenameChanging(value); - this._filename = value; - this.OnfilenameChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _filename; - partial void OnfilenameChanging(string value); - partial void OnfilenameChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property filename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string filename { get { - return this._overriddencreatedon; + return this._filename; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnfilenameChanging(value); + this._filename = value; + this.OnfilenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _filename; + partial void OnfilenameChanging(string value); + partial void OnfilenameChanged(); /// - /// There are no comments for Property subject in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string subject + public virtual global::System.Nullable _createdby_value { get { - return this._subject; + return this.__createdby_value; } set { - this.OnsubjectChanging(value); - this._subject = value; - this.OnsubjectChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _subject; - partial void OnsubjectChanging(string value); - partial void OnsubjectChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property objectid_knowledgearticle in the schema. /// @@ -45688,6 +45688,28 @@ public static annualfiscalcalendar Createannualfiscalcalendar(global::EMBC.ESS.U partial void On_businessunitid_valueChanging(global::System.Nullable value); partial void On_businessunitid_valueChanged(); /// + /// There are no comments for Property userfiscalcalendarid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable userfiscalcalendarid + { + get + { + return this._userfiscalcalendarid; + } + set + { + this.OnuserfiscalcalendaridChanging(value); + this._userfiscalcalendarid = value; + this.OnuserfiscalcalendaridChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _userfiscalcalendarid; + partial void OnuserfiscalcalendaridChanging(global::System.Nullable value); + partial void OnuserfiscalcalendaridChanged(); + /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -45732,28 +45754,6 @@ public static annualfiscalcalendar Createannualfiscalcalendar(global::EMBC.ESS.U partial void On_salespersonid_valueChanging(global::System.Nullable value); partial void On_salespersonid_valueChanged(); /// - /// There are no comments for Property fiscalperiodtype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable fiscalperiodtype - { - get - { - return this._fiscalperiodtype; - } - set - { - this.OnfiscalperiodtypeChanging(value); - this._fiscalperiodtype = value; - this.OnfiscalperiodtypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _fiscalperiodtype; - partial void OnfiscalperiodtypeChanging(global::System.Nullable value); - partial void OnfiscalperiodtypeChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -45776,49 +45776,49 @@ public static annualfiscalcalendar Createannualfiscalcalendar(global::EMBC.ESS.U partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property fiscalperiodtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable fiscalperiodtype { get { - return this.__createdonbehalfby_value; + return this._fiscalperiodtype; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnfiscalperiodtypeChanging(value); + this._fiscalperiodtype = value; + this.OnfiscalperiodtypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _fiscalperiodtype; + partial void OnfiscalperiodtypeChanging(global::System.Nullable value); + partial void OnfiscalperiodtypeChanged(); /// - /// There are no comments for Property userfiscalcalendarid in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable userfiscalcalendarid + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._userfiscalcalendarid; + return this.__createdonbehalfby_value; } set { - this.OnuserfiscalcalendaridChanging(value); - this._userfiscalcalendarid = value; - this.OnuserfiscalcalendaridChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _userfiscalcalendarid; - partial void OnuserfiscalcalendaridChanging(global::System.Nullable value); - partial void OnuserfiscalcalendaridChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -46372,6 +46372,28 @@ public static appconfiginstance Createappconfiginstance(global::EMBC.ESS.Utiliti partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -46394,27 +46416,27 @@ public static appconfiginstance Createappconfiginstance(global::EMBC.ESS.Utiliti partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property appconfiginstanceidunique in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable appconfiginstanceidunique + public virtual global::System.Nullable componentstate { get { - return this._appconfiginstanceidunique; + return this._componentstate; } set { - this.OnappconfiginstanceiduniqueChanging(value); - this._appconfiginstanceidunique = value; - this.OnappconfiginstanceiduniqueChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _appconfiginstanceidunique; - partial void OnappconfiginstanceiduniqueChanging(global::System.Nullable value); - partial void OnappconfiginstanceiduniqueChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -46460,28 +46482,6 @@ public static appconfiginstance Createappconfiginstance(global::EMBC.ESS.Utiliti partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property appconfiginstanceid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -46548,6 +46548,28 @@ public static appconfiginstance Createappconfiginstance(global::EMBC.ESS.Utiliti partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property componenttype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -46614,28 +46636,6 @@ public virtual string componenttype partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// /// There are no comments for Property objectid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -46680,28 +46680,6 @@ public virtual string componenttype partial void OnappconfigiduniqueChanging(global::System.Nullable value); partial void OnappconfigiduniqueChanged(); /// - /// There are no comments for Property introducedversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string introducedversion - { - get - { - return this._introducedversion; - } - set - { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); - /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -46746,28 +46724,6 @@ public virtual string introducedversion partial void On_appconfigid_valueChanging(global::System.Nullable value); partial void On_appconfigid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -46812,6 +46768,50 @@ public virtual string value partial void OnvalueChanging(string value); partial void OnvalueChanged(); /// + /// There are no comments for Property appconfiginstanceidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable appconfiginstanceidunique + { + get + { + return this._appconfiginstanceidunique; + } + set + { + this.OnappconfiginstanceiduniqueChanging(value); + this._appconfiginstanceidunique = value; + this.OnappconfiginstanceiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _appconfiginstanceidunique; + partial void OnappconfiginstanceiduniqueChanging(global::System.Nullable value); + partial void OnappconfiginstanceiduniqueChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -48033,27 +48033,27 @@ public static appconfig Createappconfig(global::EMBC.ESS.Utilities.Dynamics.Micr partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__organizationid_value; + return this._importsequencenumber; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -48099,6 +48099,116 @@ public static appconfig Createappconfig(global::EMBC.ESS.Utilities.Dynamics.Micr partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property appconfigimportxml in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -48121,94 +48231,6 @@ public virtual string appconfigimportxml partial void OnappconfigimportxmlChanging(string value); partial void OnappconfigimportxmlChanged(); /// - /// There are no comments for Property appconfigidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable appconfigidunique - { - get - { - return this._appconfigidunique; - } - set - { - this.OnappconfigiduniqueChanging(value); - this._appconfigidunique = value; - this.OnappconfigiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _appconfigidunique; - partial void OnappconfigiduniqueChanging(global::System.Nullable value); - partial void OnappconfigiduniqueChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -48253,27 +48275,27 @@ public virtual string appconfigimportxml partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property appconfigidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable appconfigidunique { get { - return this._importsequencenumber; + return this._appconfigidunique; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnappconfigiduniqueChanging(value); + this._appconfigidunique = value; + this.OnappconfigiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _appconfigidunique; + partial void OnappconfigiduniqueChanging(global::System.Nullable value); + partial void OnappconfigiduniqueChanged(); /// /// There are no comments for Property introducedversion in the schema. /// @@ -48341,28 +48363,6 @@ public virtual string introducedversion partial void On_appmoduleid_valueChanging(global::System.Nullable value); partial void On_appmoduleid_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property appconfigid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -48821,6 +48821,28 @@ public static appmodulecomponent Createappmodulecomponent(global::EMBC.ESS.Utili return appmodulecomponent; } /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -49085,28 +49107,6 @@ public virtual string introducedversion partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property isdefault in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -49454,27 +49454,27 @@ public partial class appmoduleroles : crmbaseentity partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property appmoduleroleidunique in the schema. + /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable appmoduleroleidunique + public virtual string introducedversion { get { - return this._appmoduleroleidunique; + return this._introducedversion; } set { - this.OnappmoduleroleiduniqueChanging(value); - this._appmoduleroleidunique = value; - this.OnappmoduleroleiduniqueChanged(); + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _appmoduleroleidunique; - partial void OnappmoduleroleiduniqueChanging(global::System.Nullable value); - partial void OnappmoduleroleiduniqueChanged(); + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -49498,28 +49498,6 @@ public partial class appmoduleroles : crmbaseentity partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// /// There are no comments for Property _appmoduleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -49564,27 +49542,27 @@ public partial class appmoduleroles : crmbaseentity partial void On_roleid_valueChanging(global::System.Nullable value); partial void On_roleid_valueChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable ismanaged { get { - return this._introducedversion; + return this._ismanaged; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property appmoduleroleid in the schema. /// @@ -49608,6 +49586,28 @@ public virtual string introducedversion partial void OnappmoduleroleidChanging(global::System.Nullable value); partial void OnappmoduleroleidChanged(); /// + /// There are no comments for Property appmoduleroleidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable appmoduleroleidunique + { + get + { + return this._appmoduleroleidunique; + } + set + { + this.OnappmoduleroleiduniqueChanging(value); + this._appmoduleroleidunique = value; + this.OnappmoduleroleiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _appmoduleroleidunique; + partial void OnappmoduleroleiduniqueChanging(global::System.Nullable value); + partial void OnappmoduleroleiduniqueChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -49968,6 +49968,28 @@ public virtual string appmodulexmlmanaged partial void OnappmodulexmlmanagedChanging(string value); partial void OnappmodulexmlmanagedChanged(); /// + /// There are no comments for Property webresourceid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable webresourceid + { + get + { + return this._webresourceid; + } + set + { + this.OnwebresourceidChanging(value); + this._webresourceid = value; + this.OnwebresourceidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _webresourceid; + partial void OnwebresourceidChanging(global::System.Nullable value); + partial void OnwebresourceidChanged(); + /// /// There are no comments for Property uniquename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -49990,28 +50012,6 @@ public virtual string uniquename partial void OnuniquenameChanging(string value); partial void OnuniquenameChanged(); /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -50034,50 +50034,6 @@ public virtual string uniquename partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property isfeatured in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isfeatured - { - get - { - return this._isfeatured; - } - set - { - this.OnisfeaturedChanging(value); - this._isfeatured = value; - this.OnisfeaturedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isfeatured; - partial void OnisfeaturedChanging(global::System.Nullable value); - partial void OnisfeaturedChanged(); - /// - /// There are no comments for Property publishedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable publishedon - { - get - { - return this._publishedon; - } - set - { - this.OnpublishedonChanging(value); - this._publishedon = value; - this.OnpublishedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _publishedon; - partial void OnpublishedonChanging(global::System.Nullable value); - partial void OnpublishedonChanged(); - /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -50210,6 +50166,28 @@ public virtual string appmoduleversion partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// /// There are no comments for Property isdefault in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -50276,6 +50254,50 @@ public virtual string appmoduleversion partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property isfeatured in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isfeatured + { + get + { + return this._isfeatured; + } + set + { + this.OnisfeaturedChanging(value); + this._isfeatured = value; + this.OnisfeaturedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isfeatured; + partial void OnisfeaturedChanging(global::System.Nullable value); + partial void OnisfeaturedChanged(); + /// + /// There are no comments for Property _publisherid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _publisherid_value + { + get + { + return this.__publisherid_value; + } + set + { + this.On_publisherid_valueChanging(value); + this.__publisherid_value = value; + this.On_publisherid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __publisherid_value; + partial void On_publisherid_valueChanging(global::System.Nullable value); + partial void On_publisherid_valueChanged(); + /// /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -50540,49 +50562,27 @@ public virtual string name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// - /// There are no comments for Property webresourceid in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable webresourceid + public virtual global::System.Nullable componentstate { get { - return this._webresourceid; + return this._componentstate; } set { - this.OnwebresourceidChanging(value); - this._webresourceid = value; - this.OnwebresourceidChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _webresourceid; - partial void OnwebresourceidChanging(global::System.Nullable value); - partial void OnwebresourceidChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property description in the schema. /// @@ -50650,27 +50650,27 @@ public virtual string eventhandlers partial void OneventhandlersChanging(string value); partial void OneventhandlersChanged(); /// - /// There are no comments for Property _publisherid_value in the schema. + /// There are no comments for Property publishedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _publisherid_value + public virtual global::System.Nullable publishedon { get { - return this.__publisherid_value; + return this._publishedon; } set { - this.On_publisherid_valueChanging(value); - this.__publisherid_value = value; - this.On_publisherid_valueChanged(); + this.OnpublishedonChanging(value); + this._publishedon = value; + this.OnpublishedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __publisherid_value; - partial void On_publisherid_valueChanging(global::System.Nullable value); - partial void On_publisherid_valueChanged(); + private global::System.Nullable _publishedon; + partial void OnpublishedonChanging(global::System.Nullable value); + partial void OnpublishedonChanged(); /// /// There are no comments for Property optimizedfor in the schema. /// @@ -54324,6 +54324,28 @@ public virtual string category partial void OncategoryChanging(string value); partial void OncategoryChanged(); /// + /// There are no comments for Property outlookownerapptid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable outlookownerapptid + { + get + { + return this._outlookownerapptid; + } + set + { + this.OnoutlookownerapptidChanging(value); + this._outlookownerapptid = value; + this.OnoutlookownerapptidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _outlookownerapptid; + partial void OnoutlookownerapptidChanging(global::System.Nullable value); + partial void OnoutlookownerapptidChanged(); + /// /// There are no comments for Property isdraft in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -54368,6 +54390,28 @@ public virtual string location partial void OnlocationChanging(string value); partial void OnlocationChanged(); /// + /// There are no comments for Property isalldayevent in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isalldayevent + { + get + { + return this._isalldayevent; + } + set + { + this.OnisalldayeventChanging(value); + this._isalldayevent = value; + this.OnisalldayeventChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isalldayevent; + partial void OnisalldayeventChanging(global::System.Nullable value); + partial void OnisalldayeventChanged(); + /// /// There are no comments for Property originalstartdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -54390,49 +54434,49 @@ public virtual string location partial void OnoriginalstartdateChanging(global::System.Nullable value); partial void OnoriginalstartdateChanged(); /// - /// There are no comments for Property globalobjectid in the schema. + /// There are no comments for Property modifiedfieldsmask in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string globalobjectid + public virtual string modifiedfieldsmask { get { - return this._globalobjectid; + return this._modifiedfieldsmask; } set { - this.OnglobalobjectidChanging(value); - this._globalobjectid = value; - this.OnglobalobjectidChanged(); + this.OnmodifiedfieldsmaskChanging(value); + this._modifiedfieldsmask = value; + this.OnmodifiedfieldsmaskChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _globalobjectid; - partial void OnglobalobjectidChanging(string value); - partial void OnglobalobjectidChanged(); + private string _modifiedfieldsmask; + partial void OnmodifiedfieldsmaskChanging(string value); + partial void OnmodifiedfieldsmaskChanged(); /// - /// There are no comments for Property outlookownerapptid in the schema. + /// There are no comments for Property globalobjectid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable outlookownerapptid + public virtual string globalobjectid { get { - return this._outlookownerapptid; + return this._globalobjectid; } set { - this.OnoutlookownerapptidChanging(value); - this._outlookownerapptid = value; - this.OnoutlookownerapptidChanged(); + this.OnglobalobjectidChanging(value); + this._globalobjectid = value; + this.OnglobalobjectidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _outlookownerapptid; - partial void OnoutlookownerapptidChanging(global::System.Nullable value); - partial void OnoutlookownerapptidChanged(); + private string _globalobjectid; + partial void OnglobalobjectidChanging(string value); + partial void OnglobalobjectidChanged(); /// /// There are no comments for Property isunsafe in the schema. /// @@ -54456,28 +54500,6 @@ public virtual string globalobjectid partial void OnisunsafeChanging(global::System.Nullable value); partial void OnisunsafeChanged(); /// - /// There are no comments for Property isalldayevent in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isalldayevent - { - get - { - return this._isalldayevent; - } - set - { - this.OnisalldayeventChanging(value); - this._isalldayevent = value; - this.OnisalldayeventChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isalldayevent; - partial void OnisalldayeventChanging(global::System.Nullable value); - partial void OnisalldayeventChanged(); - /// /// There are no comments for Property attachmenterrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -54544,28 +54566,6 @@ public virtual string subcategory partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property modifiedfieldsmask in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string modifiedfieldsmask - { - get - { - return this._modifiedfieldsmask; - } - set - { - this.OnmodifiedfieldsmaskChanging(value); - this._modifiedfieldsmask = value; - this.OnmodifiedfieldsmaskChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _modifiedfieldsmask; - partial void OnmodifiedfieldsmaskChanging(string value); - partial void OnmodifiedfieldsmaskChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -64661,27 +64661,49 @@ public virtual string callerorigin partial void OncalleroriginChanging(string value); partial void OncalleroriginChanged(); /// - /// There are no comments for Property expanderstarttime in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable expanderstarttime + public virtual global::System.Nullable _createdby_value { get { - return this._expanderstarttime; + return this.__createdby_value; } set { - this.OnexpanderstarttimeChanging(value); - this._expanderstarttime = value; - this.OnexpanderstarttimeChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expanderstarttime; - partial void OnexpanderstarttimeChanging(global::System.Nullable value); - partial void OnexpanderstarttimeChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property dependencytoken in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string dependencytoken + { + get + { + return this._dependencytoken; + } + set + { + this.OndependencytokenChanging(value); + this._dependencytoken = value; + this.OndependencytokenChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _dependencytoken; + partial void OndependencytokenChanging(string value); + partial void OndependencytokenChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -64749,6 +64771,50 @@ public virtual string primaryentitytype partial void OnrequestidChanging(global::System.Nullable value); partial void OnrequestidChanged(); /// + /// There are no comments for Property workflowstagename in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string workflowstagename + { + get + { + return this._workflowstagename; + } + set + { + this.OnworkflowstagenameChanging(value); + this._workflowstagename = value; + this.OnworkflowstagenameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _workflowstagename; + partial void OnworkflowstagenameChanging(string value); + partial void OnworkflowstagenameChanged(); + /// + /// There are no comments for Property _regardingobjectid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _regardingobjectid_value + { + get + { + return this.__regardingobjectid_value; + } + set + { + this.On_regardingobjectid_valueChanging(value); + this.__regardingobjectid_value = value; + this.On_regardingobjectid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __regardingobjectid_value; + partial void On_regardingobjectid_valueChanging(global::System.Nullable value); + partial void On_regardingobjectid_valueChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -64815,28 +64881,6 @@ public virtual string primaryentitytype partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property breadcrumbid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable breadcrumbid - { - get - { - return this._breadcrumbid; - } - set - { - this.OnbreadcrumbidChanging(value); - this._breadcrumbid = value; - this.OnbreadcrumbidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _breadcrumbid; - partial void OnbreadcrumbidChanging(global::System.Nullable value); - partial void OnbreadcrumbidChanged(); - /// /// There are no comments for Property startedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -64859,28 +64903,6 @@ public virtual string primaryentitytype partial void OnstartedonChanging(global::System.Nullable value); partial void OnstartedonChanged(); /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property errorcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -64903,27 +64925,27 @@ public virtual string primaryentitytype partial void OnerrorcodeChanging(global::System.Nullable value); partial void OnerrorcodeChanged(); /// - /// There are no comments for Property datablobid in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] datablobid + public virtual global::System.Nullable statecode { get { - return this._datablobid; + return this._statecode; } set { - this.OndatablobidChanging(value); - this._datablobid = value; - this.OndatablobidChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _datablobid; - partial void OndatablobidChanging(byte[] value); - partial void OndatablobidChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property recurrencestarttime in the schema. /// @@ -64947,6 +64969,28 @@ public virtual byte[] datablobid partial void OnrecurrencestarttimeChanging(global::System.Nullable value); partial void OnrecurrencestarttimeChanged(); /// + /// There are no comments for Property sequence in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sequence + { + get + { + return this._sequence; + } + set + { + this.OnsequenceChanging(value); + this._sequence = value; + this.OnsequenceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sequence; + partial void OnsequenceChanging(global::System.Nullable value); + partial void OnsequenceChanged(); + /// /// There are no comments for Property recurrencepattern in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -64969,27 +65013,27 @@ public virtual string recurrencepattern partial void OnrecurrencepatternChanging(string value); partial void OnrecurrencepatternChanged(); /// - /// There are no comments for Property parentpluginexecutionid in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable parentpluginexecutionid + public virtual global::System.Nullable createdon { get { - return this._parentpluginexecutionid; + return this._createdon; } set { - this.OnparentpluginexecutionidChanging(value); - this._parentpluginexecutionid = value; - this.OnparentpluginexecutionidChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _parentpluginexecutionid; - partial void OnparentpluginexecutionidChanging(global::System.Nullable value); - partial void OnparentpluginexecutionidChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -65101,49 +65145,27 @@ public virtual string friendlymessage partial void OnpostponeuntilChanging(global::System.Nullable value); partial void OnpostponeuntilChanged(); /// - /// There are no comments for Property depth in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable depth - { - get - { - return this._depth; - } - set - { - this.OndepthChanging(value); - this._depth = value; - this.OndepthChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _depth; - partial void OndepthChanging(global::System.Nullable value); - partial void OndepthChanged(); - /// - /// There are no comments for Property _regardingobjectid_value in the schema. + /// There are no comments for Property iswaitingforevent in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _regardingobjectid_value + public virtual global::System.Nullable iswaitingforevent { get { - return this.__regardingobjectid_value; + return this._iswaitingforevent; } set { - this.On_regardingobjectid_valueChanging(value); - this.__regardingobjectid_value = value; - this.On_regardingobjectid_valueChanged(); + this.OniswaitingforeventChanging(value); + this._iswaitingforevent = value; + this.OniswaitingforeventChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __regardingobjectid_value; - partial void On_regardingobjectid_valueChanging(global::System.Nullable value); - partial void On_regardingobjectid_valueChanged(); + private global::System.Nullable _iswaitingforevent; + partial void OniswaitingforeventChanging(global::System.Nullable value); + partial void OniswaitingforeventChanged(); /// /// There are no comments for Property correlationid in the schema. /// @@ -65167,28 +65189,6 @@ public virtual string friendlymessage partial void OncorrelationidChanging(global::System.Nullable value); partial void OncorrelationidChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// /// There are no comments for Property retainjobhistory in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -65233,49 +65233,49 @@ public virtual string hostid partial void OnhostidChanging(string value); partial void OnhostidChanged(); /// - /// There are no comments for Property message in the schema. + /// There are no comments for Property asyncoperationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string message + public virtual global::System.Nullable asyncoperationid { get { - return this._message; + return this._asyncoperationid; } set { - this.OnmessageChanging(value); - this._message = value; - this.OnmessageChanged(); + this.OnasyncoperationidChanging(value); + this._asyncoperationid = value; + this.OnasyncoperationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _message; - partial void OnmessageChanging(string value); - partial void OnmessageChanged(); + private global::System.Nullable _asyncoperationid; + partial void OnasyncoperationidChanging(global::System.Nullable value); + partial void OnasyncoperationidChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property expanderstarttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable expanderstarttime { get { - return this._createdon; + return this._expanderstarttime; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnexpanderstarttimeChanging(value); + this._expanderstarttime = value; + this.OnexpanderstarttimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _expanderstarttime; + partial void OnexpanderstarttimeChanging(global::System.Nullable value); + partial void OnexpanderstarttimeChanged(); /// /// There are no comments for Property completedon in the schema. /// @@ -65299,6 +65299,28 @@ public virtual string message partial void OncompletedonChanging(global::System.Nullable value); partial void OncompletedonChanged(); /// + /// There are no comments for Property workload in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string workload + { + get + { + return this._workload; + } + set + { + this.OnworkloadChanging(value); + this._workload = value; + this.OnworkloadChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _workload; + partial void OnworkloadChanging(string value); + partial void OnworkloadChanged(); + /// /// There are no comments for Property retrycount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -65321,27 +65343,27 @@ public virtual string message partial void OnretrycountChanging(global::System.Nullable value); partial void OnretrycountChanged(); /// - /// There are no comments for Property sequence in the schema. + /// There are no comments for Property datablobid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sequence + public virtual byte[] datablobid { get { - return this._sequence; + return this._datablobid; } set { - this.OnsequenceChanging(value); - this._sequence = value; - this.OnsequenceChanged(); + this.OndatablobidChanging(value); + this._datablobid = value; + this.OndatablobidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sequence; - partial void OnsequenceChanging(global::System.Nullable value); - partial void OnsequenceChanged(); + private byte[] _datablobid; + partial void OndatablobidChanging(byte[] value); + partial void OndatablobidChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -65365,49 +65387,49 @@ public virtual string message partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property subtype in the schema. + /// There are no comments for Property message in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable subtype + public virtual string message { get { - return this._subtype; + return this._message; } set { - this.OnsubtypeChanging(value); - this._subtype = value; - this.OnsubtypeChanged(); + this.OnmessageChanging(value); + this._message = value; + this.OnmessageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _subtype; - partial void OnsubtypeChanging(global::System.Nullable value); - partial void OnsubtypeChanged(); + private string _message; + partial void OnmessageChanging(string value); + partial void OnmessageChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property depth in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable depth { get { - return this.__createdby_value; + return this._depth; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OndepthChanging(value); + this._depth = value; + this.OndepthChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _depth; + partial void OndepthChanging(global::System.Nullable value); + partial void OndepthChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -65431,49 +65453,49 @@ public virtual string message partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property dependencytoken in the schema. + /// There are no comments for Property messagename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string dependencytoken + public virtual string messagename { get { - return this._dependencytoken; + return this._messagename; } set { - this.OndependencytokenChanging(value); - this._dependencytoken = value; - this.OndependencytokenChanged(); + this.OnmessagenameChanging(value); + this._messagename = value; + this.OnmessagenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _dependencytoken; - partial void OndependencytokenChanging(string value); - partial void OndependencytokenChanged(); + private string _messagename; + partial void OnmessagenameChanging(string value); + partial void OnmessagenameChanged(); /// - /// There are no comments for Property messagename in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string messagename + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._messagename; + return this._utcconversiontimezonecode; } set { - this.OnmessagenameChanging(value); - this._messagename = value; - this.OnmessagenameChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _messagename; - partial void OnmessagenameChanging(string value); - partial void OnmessagenameChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -65497,27 +65519,27 @@ public virtual string messagename partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property breadcrumbid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable breadcrumbid { get { - return this._utcconversiontimezonecode; + return this._breadcrumbid; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnbreadcrumbidChanging(value); + this._breadcrumbid = value; + this.OnbreadcrumbidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _breadcrumbid; + partial void OnbreadcrumbidChanging(global::System.Nullable value); + partial void OnbreadcrumbidChanged(); /// /// There are no comments for Property datablobid_name in the schema. /// @@ -65629,6 +65651,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// /// There are no comments for Property data in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -65651,27 +65695,49 @@ public virtual string data partial void OndataChanging(string value); partial void OndataChanged(); /// - /// There are no comments for Property asyncoperationid in the schema. + /// There are no comments for Property parentpluginexecutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable asyncoperationid + public virtual global::System.Nullable parentpluginexecutionid { get { - return this._asyncoperationid; + return this._parentpluginexecutionid; } set { - this.OnasyncoperationidChanging(value); - this._asyncoperationid = value; - this.OnasyncoperationidChanged(); + this.OnparentpluginexecutionidChanging(value); + this._parentpluginexecutionid = value; + this.OnparentpluginexecutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _asyncoperationid; - partial void OnasyncoperationidChanging(global::System.Nullable value); - partial void OnasyncoperationidChanged(); + private global::System.Nullable _parentpluginexecutionid; + partial void OnparentpluginexecutionidChanging(global::System.Nullable value); + partial void OnparentpluginexecutionidChanged(); + /// + /// There are no comments for Property subtype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable subtype + { + get + { + return this._subtype; + } + set + { + this.OnsubtypeChanging(value); + this._subtype = value; + this.OnsubtypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _subtype; + partial void OnsubtypeChanging(global::System.Nullable value); + partial void OnsubtypeChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -65717,72 +65783,6 @@ public virtual string data partial void OnexecutiontimespanChanging(global::System.Nullable value); partial void OnexecutiontimespanChanged(); /// - /// There are no comments for Property iswaitingforevent in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable iswaitingforevent - { - get - { - return this._iswaitingforevent; - } - set - { - this.OniswaitingforeventChanging(value); - this._iswaitingforevent = value; - this.OniswaitingforeventChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _iswaitingforevent; - partial void OniswaitingforeventChanging(global::System.Nullable value); - partial void OniswaitingforeventChanged(); - /// - /// There are no comments for Property workload in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string workload - { - get - { - return this._workload; - } - set - { - this.OnworkloadChanging(value); - this._workload = value; - this.OnworkloadChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _workload; - partial void OnworkloadChanging(string value); - partial void OnworkloadChanged(); - /// - /// There are no comments for Property workflowstagename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string workflowstagename - { - get - { - return this._workflowstagename; - } - set - { - this.OnworkflowstagenameChanging(value); - this._workflowstagename = value; - this.OnworkflowstagenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _workflowstagename; - partial void OnworkflowstagenameChanging(string value); - partial void OnworkflowstagenameChanged(); - /// /// There are no comments for Property regardingobjectid_theme in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -73408,27 +73408,27 @@ public attributeimageconfigSingle(global::Microsoft.OData.Client.DataServiceQuer public partial class attributeimageconfig : crmbaseentity { /// - /// There are no comments for Property componentidunique in the schema. + /// There are no comments for Property attributeimageconfigid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentidunique + public virtual global::System.Nullable attributeimageconfigid { get { - return this._componentidunique; + return this._attributeimageconfigid; } set { - this.OncomponentiduniqueChanging(value); - this._componentidunique = value; - this.OncomponentiduniqueChanged(); + this.OnattributeimageconfigidChanging(value); + this._attributeimageconfigid = value; + this.OnattributeimageconfigidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentidunique; - partial void OncomponentiduniqueChanging(global::System.Nullable value); - partial void OncomponentiduniqueChanged(); + private global::System.Nullable _attributeimageconfigid; + partial void OnattributeimageconfigidChanging(global::System.Nullable value); + partial void OnattributeimageconfigidChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -73474,27 +73474,27 @@ public partial class attributeimageconfig : crmbaseentity partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property componentidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable componentidunique { get { - return this._componentstate; + return this._componentidunique; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OncomponentiduniqueChanging(value); + this._componentidunique = value; + this.OncomponentiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _componentidunique; + partial void OncomponentiduniqueChanging(global::System.Nullable value); + partial void OncomponentiduniqueChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -73562,49 +73562,49 @@ public virtual string parententitylogicalname partial void OnparententitylogicalnameChanging(string value); partial void OnparententitylogicalnameChanged(); /// - /// There are no comments for Property canstorefullimage in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable canstorefullimage + public virtual global::System.Nullable componentstate { get { - return this._canstorefullimage; + return this._componentstate; } set { - this.OncanstorefullimageChanging(value); - this._canstorefullimage = value; - this.OncanstorefullimageChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _canstorefullimage; - partial void OncanstorefullimageChanging(global::System.Nullable value); - partial void OncanstorefullimageChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property attributeimageconfigid in the schema. + /// There are no comments for Property canstorefullimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable attributeimageconfigid + public virtual global::System.Nullable canstorefullimage { get { - return this._attributeimageconfigid; + return this._canstorefullimage; } set { - this.OnattributeimageconfigidChanging(value); - this._attributeimageconfigid = value; - this.OnattributeimageconfigidChanged(); + this.OncanstorefullimageChanging(value); + this._canstorefullimage = value; + this.OncanstorefullimageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _attributeimageconfigid; - partial void OnattributeimageconfigidChanging(global::System.Nullable value); - partial void OnattributeimageconfigidChanged(); + private global::System.Nullable _canstorefullimage; + partial void OncanstorefullimageChanging(global::System.Nullable value); + partial void OncanstorefullimageChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -74262,6 +74262,116 @@ public static audit Createaudit(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dy return audit; } /// + /// There are no comments for Property operation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable operation + { + get + { + return this._operation; + } + set + { + this.OnoperationChanging(value); + this._operation = value; + this.OnoperationChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _operation; + partial void OnoperationChanging(global::System.Nullable value); + partial void OnoperationChanged(); + /// + /// There are no comments for Property attributemask in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string attributemask + { + get + { + return this._attributemask; + } + set + { + this.OnattributemaskChanging(value); + this._attributemask = value; + this.OnattributemaskChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _attributemask; + partial void OnattributemaskChanging(string value); + partial void OnattributemaskChanged(); + /// + /// There are no comments for Property action in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable action + { + get + { + return this._action; + } + set + { + this.OnactionChanging(value); + this._action = value; + this.OnactionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _action; + partial void OnactionChanging(global::System.Nullable value); + partial void OnactionChanged(); + /// + /// There are no comments for Property useradditionalinfo in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string useradditionalinfo + { + get + { + return this._useradditionalinfo; + } + set + { + this.OnuseradditionalinfoChanging(value); + this._useradditionalinfo = value; + this.OnuseradditionalinfoChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _useradditionalinfo; + partial void OnuseradditionalinfoChanging(string value); + partial void OnuseradditionalinfoChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property objecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -74284,27 +74394,27 @@ public virtual string objecttypecode partial void OnobjecttypecodeChanging(string value); partial void OnobjecttypecodeChanged(); /// - /// There are no comments for Property operation in the schema. + /// There are no comments for Property _callinguserid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable operation + public virtual global::System.Nullable _callinguserid_value { get { - return this._operation; + return this.__callinguserid_value; } set { - this.OnoperationChanging(value); - this._operation = value; - this.OnoperationChanged(); + this.On_callinguserid_valueChanging(value); + this.__callinguserid_value = value; + this.On_callinguserid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _operation; - partial void OnoperationChanging(global::System.Nullable value); - partial void OnoperationChanged(); + private global::System.Nullable __callinguserid_value; + partial void On_callinguserid_valueChanging(global::System.Nullable value); + partial void On_callinguserid_valueChanged(); /// /// There are no comments for Property _regardingobjectid_value in the schema. /// @@ -74328,6 +74438,72 @@ public virtual string objecttypecode partial void On_regardingobjectid_valueChanging(global::System.Nullable value); partial void On_regardingobjectid_valueChanged(); /// + /// There are no comments for Property _objectid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _objectid_value + { + get + { + return this.__objectid_value; + } + set + { + this.On_objectid_valueChanging(value); + this.__objectid_value = value; + this.On_objectid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __objectid_value; + partial void On_objectid_valueChanging(global::System.Nullable value); + partial void On_objectid_valueChanged(); + /// + /// There are no comments for Property _userid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _userid_value + { + get + { + return this.__userid_value; + } + set + { + this.On_userid_valueChanging(value); + this.__userid_value = value; + this.On_userid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __userid_value; + partial void On_userid_valueChanging(global::System.Nullable value); + partial void On_userid_valueChanged(); + /// + /// There are no comments for Property transactionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable transactionid + { + get + { + return this._transactionid; + } + set + { + this.OntransactionidChanging(value); + this._transactionid = value; + this.OntransactionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _transactionid; + partial void OntransactionidChanging(global::System.Nullable value); + partial void OntransactionidChanged(); + /// /// There are no comments for Property auditid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -74350,182 +74526,6 @@ public virtual string objecttypecode partial void OnauditidChanging(global::System.Nullable value); partial void OnauditidChanged(); /// - /// There are no comments for Property action in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable action - { - get - { - return this._action; - } - set - { - this.OnactionChanging(value); - this._action = value; - this.OnactionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _action; - partial void OnactionChanging(global::System.Nullable value); - partial void OnactionChanged(); - /// - /// There are no comments for Property useradditionalinfo in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string useradditionalinfo - { - get - { - return this._useradditionalinfo; - } - set - { - this.OnuseradditionalinfoChanging(value); - this._useradditionalinfo = value; - this.OnuseradditionalinfoChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _useradditionalinfo; - partial void OnuseradditionalinfoChanging(string value); - partial void OnuseradditionalinfoChanged(); - /// - /// There are no comments for Property attributemask in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string attributemask - { - get - { - return this._attributemask; - } - set - { - this.OnattributemaskChanging(value); - this._attributemask = value; - this.OnattributemaskChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _attributemask; - partial void OnattributemaskChanging(string value); - partial void OnattributemaskChanged(); - /// - /// There are no comments for Property _userid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _userid_value - { - get - { - return this.__userid_value; - } - set - { - this.On_userid_valueChanging(value); - this.__userid_value = value; - this.On_userid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __userid_value; - partial void On_userid_valueChanging(global::System.Nullable value); - partial void On_userid_valueChanged(); - /// - /// There are no comments for Property _callinguserid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _callinguserid_value - { - get - { - return this.__callinguserid_value; - } - set - { - this.On_callinguserid_valueChanging(value); - this.__callinguserid_value = value; - this.On_callinguserid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __callinguserid_value; - partial void On_callinguserid_valueChanging(global::System.Nullable value); - partial void On_callinguserid_valueChanged(); - /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property _objectid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _objectid_value - { - get - { - return this.__objectid_value; - } - set - { - this.On_objectid_valueChanging(value); - this.__objectid_value = value; - this.On_objectid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __objectid_value; - partial void On_objectid_valueChanging(global::System.Nullable value); - partial void On_objectid_valueChanged(); - /// - /// There are no comments for Property transactionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable transactionid - { - get - { - return this._transactionid; - } - set - { - this.OntransactionidChanging(value); - this._transactionid = value; - this.OntransactionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _transactionid; - partial void OntransactionidChanging(global::System.Nullable value); - partial void OntransactionidChanged(); - /// /// There are no comments for Property callinguserid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -74616,27 +74616,27 @@ public availabletimesSingle(global::Microsoft.OData.Client.DataServiceQuerySingl public partial class availabletimes : crmbaseentity { /// - /// There are no comments for Property scheduledstartlocaltime in the schema. + /// There are no comments for Property scheduledend in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string scheduledstartlocaltime + public virtual global::System.Nullable scheduledend { get { - return this._scheduledstartlocaltime; + return this._scheduledend; } set { - this.OnscheduledstartlocaltimeChanging(value); - this._scheduledstartlocaltime = value; - this.OnscheduledstartlocaltimeChanged(); + this.OnscheduledendChanging(value); + this._scheduledend = value; + this.OnscheduledendChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _scheduledstartlocaltime; - partial void OnscheduledstartlocaltimeChanging(string value); - partial void OnscheduledstartlocaltimeChanged(); + private global::System.Nullable _scheduledend; + partial void OnscheduledendChanging(global::System.Nullable value); + partial void OnscheduledendChanged(); /// /// There are no comments for Property resources in the schema. /// @@ -74704,93 +74704,93 @@ public virtual string resourcesJson partial void OnresourcesJsonChanging(string value); partial void OnresourcesJsonChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property scheduledstartlocaltime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual string scheduledstartlocaltime { get { - return this._name; + return this._scheduledstartlocaltime; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnscheduledstartlocaltimeChanging(value); + this._scheduledstartlocaltime = value; + this.OnscheduledstartlocaltimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private string _scheduledstartlocaltime; + partial void OnscheduledstartlocaltimeChanging(string value); + partial void OnscheduledstartlocaltimeChanged(); /// - /// There are no comments for Property site in the schema. + /// There are no comments for Property siteid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string site + public virtual global::System.Nullable siteid { get { - return this._site; + return this._siteid; } set { - this.OnsiteChanging(value); - this._site = value; - this.OnsiteChanged(); + this.OnsiteidChanging(value); + this._siteid = value; + this.OnsiteidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _site; - partial void OnsiteChanging(string value); - partial void OnsiteChanged(); + private global::System.Nullable _siteid; + partial void OnsiteidChanging(global::System.Nullable value); + partial void OnsiteidChanged(); /// - /// There are no comments for Property siteid in the schema. + /// There are no comments for Property site in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable siteid + public virtual string site { get { - return this._siteid; + return this._site; } set { - this.OnsiteidChanging(value); - this._siteid = value; - this.OnsiteidChanged(); + this.OnsiteChanging(value); + this._site = value; + this.OnsiteChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _siteid; - partial void OnsiteidChanging(global::System.Nullable value); - partial void OnsiteidChanged(); + private string _site; + partial void OnsiteChanging(string value); + partial void OnsiteChanged(); /// - /// There are no comments for Property scheduledend in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable scheduledend + public virtual string name { get { - return this._scheduledend; + return this._name; } set { - this.OnscheduledendChanging(value); - this._scheduledend = value; - this.OnscheduledendChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _scheduledend; - partial void OnscheduledendChanging(global::System.Nullable value); - partial void OnscheduledendChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property scheduledstart in the schema. /// @@ -75796,28 +75796,6 @@ public static bookableresourcebookingheader Createbookableresourcebookingheader( return bookableresourcebookingheader; } /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -75972,6 +75950,28 @@ public virtual string name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property endtime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable endtime + { + get + { + return this._endtime; + } + set + { + this.OnendtimeChanging(value); + this._endtime = value; + this.OnendtimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _endtime; + partial void OnendtimeChanging(global::System.Nullable value); + partial void OnendtimeChanged(); + /// /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -76126,115 +76126,115 @@ public virtual string name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property starttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable starttime { get { - return this._overriddencreatedon; + return this._starttime; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnstarttimeChanging(value); + this._starttime = value; + this.OnstarttimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _starttime; + partial void OnstarttimeChanging(global::System.Nullable value); + partial void OnstarttimeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__owningbusinessunit_value; + return this._timezoneruleversionnumber; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property starttime in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable starttime + public virtual global::System.Nullable createdon { get { - return this._starttime; + return this._createdon; } set { - this.OnstarttimeChanging(value); - this._starttime = value; - this.OnstarttimeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _starttime; - partial void OnstarttimeChanging(global::System.Nullable value); - partial void OnstarttimeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property duration in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable duration + public virtual global::System.Nullable _ownerid_value { get { - return this._duration; + return this.__ownerid_value; } set { - this.OndurationChanging(value); - this._duration = value; - this.OndurationChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _duration; - partial void OndurationChanging(global::System.Nullable value); - partial void OndurationChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property traversedpath in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string traversedpath + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._traversedpath; + return this.__owningbusinessunit_value; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property stageid in the schema. /// @@ -76258,71 +76258,93 @@ public virtual string traversedpath partial void OnstageidChanging(global::System.Nullable value); partial void OnstageidChanged(); /// - /// There are no comments for Property endtime in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable endtime + public virtual global::System.Nullable statuscode { get { - return this._endtime; + return this._statuscode; } set { - this.OnendtimeChanging(value); - this._endtime = value; - this.OnendtimeChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _endtime; - partial void OnendtimeChanging(global::System.Nullable value); - partial void OnendtimeChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string traversedpath { get { - return this._statuscode; + return this._traversedpath; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable overriddencreatedon { get { - return this._createdon; + return this._overriddencreatedon; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property duration in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable duration + { + get + { + return this._duration; + } + set + { + this.OndurationChanging(value); + this._duration = value; + this.OndurationChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _duration; + partial void OndurationChanging(global::System.Nullable value); + partial void OndurationChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -76368,28 +76390,6 @@ public virtual string traversedpath partial void OnbookableresourcebookingheaderidChanging(global::System.Nullable value); partial void OnbookableresourcebookingheaderidChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property bookableresourcebookingheader_abs_scheduledprocessexecutions in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -78158,27 +78158,27 @@ public static bookableresourcebooking Createbookableresourcebooking(global::EMBC return bookableresourcebooking; } /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._overriddencreatedon; + return this.__modifiedonbehalfby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -78202,28 +78202,6 @@ public static bookableresourcebooking Createbookableresourcebooking(global::EMBC partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property bookableresourcebookingid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable bookableresourcebookingid - { - get - { - return this._bookableresourcebookingid; - } - set - { - this.OnbookableresourcebookingidChanging(value); - this._bookableresourcebookingid = value; - this.OnbookableresourcebookingidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _bookableresourcebookingid; - partial void OnbookableresourcebookingidChanging(global::System.Nullable value); - partial void OnbookableresourcebookingidChanged(); - /// /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -78246,49 +78224,49 @@ public static bookableresourcebooking Createbookableresourcebooking(global::EMBC partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property _resource_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _resource_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__resource_value; + return this._utcconversiontimezonecode; } set { - this.On_resource_valueChanging(value); - this.__resource_value = value; - this.On_resource_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __resource_value; - partial void On_resource_valueChanging(global::System.Nullable value); - partial void On_resource_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _header_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _header_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__header_value; + return this._overriddencreatedon; } set { - this.On_header_valueChanging(value); - this.__header_value = value; - this.On_header_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __header_value; - partial void On_header_valueChanging(global::System.Nullable value); - partial void On_header_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -78334,71 +78312,181 @@ public static bookableresourcebooking Createbookableresourcebooking(global::EMBC partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__modifiedonbehalfby_value; + return this.__owningteam_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _bookingstatus_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _bookingstatus_value { get { - return this._versionnumber; + return this.__bookingstatus_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_bookingstatus_valueChanging(value); + this.__bookingstatus_value = value; + this.On_bookingstatus_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __bookingstatus_value; + partial void On_bookingstatus_valueChanging(global::System.Nullable value); + partial void On_bookingstatus_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable modifiedon { get { - return this.__modifiedby_value; + return this._modifiedon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property _resource_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _resource_value + { + get + { + return this.__resource_value; + } + set + { + this.On_resource_valueChanging(value); + this.__resource_value = value; + this.On_resource_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __resource_value; + partial void On_resource_valueChanging(global::System.Nullable value); + partial void On_resource_valueChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property bookingtype in the schema. /// @@ -78422,27 +78510,49 @@ public static bookableresourcebooking Createbookableresourcebooking(global::EMBC partial void OnbookingtypeChanging(global::System.Nullable value); partial void OnbookingtypeChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__owningteam_value; + return this.__modifiedby_value; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable processid + { + get + { + return this._processid; + } + set + { + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); /// /// There are no comments for Property duration in the schema. /// @@ -78488,27 +78598,49 @@ public static bookableresourcebooking Createbookableresourcebooking(global::EMBC partial void OnstarttimeChanging(global::System.Nullable value); partial void OnstarttimeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property _header_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable _header_value { get { - return this.__owninguser_value; + return this.__header_value; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.On_header_valueChanging(value); + this.__header_value = value; + this.On_header_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable __header_value; + partial void On_header_valueChanging(global::System.Nullable value); + partial void On_header_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -78532,27 +78664,27 @@ public static bookableresourcebooking Createbookableresourcebooking(global::EMBC partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property bookableresourcebookingid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable bookableresourcebookingid { get { - return this.__createdby_value; + return this._bookableresourcebookingid; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnbookableresourcebookingidChanging(value); + this._bookableresourcebookingid = value; + this.OnbookableresourcebookingidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _bookableresourcebookingid; + partial void OnbookableresourcebookingidChanging(global::System.Nullable value); + partial void OnbookableresourcebookingidChanged(); /// /// There are no comments for Property endtime in the schema. /// @@ -78620,72 +78752,6 @@ public static bookableresourcebooking Createbookableresourcebooking(global::EMBC partial void OnstageidChanging(global::System.Nullable value); partial void OnstageidChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property _bookingstatus_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _bookingstatus_value - { - get - { - return this.__bookingstatus_value; - } - set - { - this.On_bookingstatus_valueChanging(value); - this.__bookingstatus_value = value; - this.On_bookingstatus_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __bookingstatus_value; - partial void On_bookingstatus_valueChanging(global::System.Nullable value); - partial void On_bookingstatus_valueChanged(); - /// /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -78752,72 +78818,6 @@ public virtual string name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property processid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable processid - { - get - { - return this._processid; - } - set - { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -80215,28 +80215,6 @@ public static bookableresourcecategory Createbookableresourcecategory(global::EM partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -80259,27 +80237,27 @@ public static bookableresourcecategory Createbookableresourcecategory(global::EM partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._statecode; + return this.__createdonbehalfby_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -80303,6 +80281,28 @@ public static bookableresourcecategory Createbookableresourcecategory(global::EM partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _transactioncurrencyid_value + { + get + { + return this.__transactioncurrencyid_value; + } + set + { + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); + /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -80369,49 +80369,49 @@ public static bookableresourcecategory Createbookableresourcecategory(global::EM partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__transactioncurrencyid_value; + return this.__owningbusinessunit_value; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__createdonbehalfby_value; + return this.__ownerid_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -80457,27 +80457,49 @@ public static bookableresourcecategory Createbookableresourcecategory(global::EM partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable importsequencenumber { get { - return this._exchangerate; + return this._importsequencenumber; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -80523,28 +80545,6 @@ public static bookableresourcecategory Createbookableresourcecategory(global::EM partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -80589,28 +80589,6 @@ public static bookableresourcecategory Createbookableresourcecategory(global::EM partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -80633,27 +80611,27 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable statecode { get { - return this._name; + return this._statecode; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -80677,6 +80655,28 @@ public virtual string name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); + /// /// There are no comments for Property createdbyname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -81621,27 +81621,49 @@ public static bookableresourcecategoryassn Createbookableresourcecategoryassn(gl return bookableresourcecategoryassn; } /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property _resource_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable _resource_value { get { - return this.__owninguser_value; + return this.__resource_value; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.On_resource_valueChanging(value); + this.__resource_value = value; + this.On_resource_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable __resource_value; + partial void On_resource_valueChanging(global::System.Nullable value); + partial void On_resource_valueChanged(); + /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property bookableresourcecategoryassnid in the schema. /// @@ -81709,71 +81731,71 @@ public static bookableresourcecategoryassn Createbookableresourcecategoryassn(gl partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._utcconversiontimezonecode; + return this._timezoneruleversionnumber; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _resource_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _resource_value + public virtual string name { get { - return this.__resource_value; + return this._name; } set { - this.On_resource_valueChanging(value); - this.__resource_value = value; - this.On_resource_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __resource_value; - partial void On_resource_valueChanging(global::System.Nullable value); - partial void On_resource_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _owninguser_value { get { - return this._name; + return this.__owninguser_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -81797,27 +81819,27 @@ public virtual string name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable overriddencreatedon { get { - return this._statuscode; + return this._overriddencreatedon; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -81841,49 +81863,27 @@ public virtual string name partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _modifiedby_value { get { - return this._overriddencreatedon; + return this.__modifiedby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -81929,6 +81929,28 @@ public virtual string name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -81973,27 +81995,27 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable statuscode { get { - return this._modifiedon; + return this._statuscode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -82039,28 +82061,6 @@ public virtual string name partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -82083,27 +82083,27 @@ public virtual string name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__modifiedby_value; + return this._utcconversiontimezonecode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -83277,6 +83277,28 @@ public static bookableresourcecharacteristic Createbookableresourcecharacteristi partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property traversedpath in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string traversedpath + { + get + { + return this._traversedpath; + } + set + { + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); + /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -83321,49 +83343,49 @@ public static bookableresourcecharacteristic Createbookableresourcecharacteristi partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__owninguser_value; + return this._importsequencenumber; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _owninguser_value { get { - return this._timezoneruleversionnumber; + return this.__owninguser_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -83431,27 +83453,27 @@ public static bookableresourcecharacteristic Createbookableresourcecharacteristi partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _ratingvalue_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _ratingvalue_value { get { - return this._importsequencenumber; + return this.__ratingvalue_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_ratingvalue_valueChanging(value); + this.__ratingvalue_value = value; + this.On_ratingvalue_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __ratingvalue_value; + partial void On_ratingvalue_valueChanging(global::System.Nullable value); + partial void On_ratingvalue_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -83475,49 +83497,27 @@ public static bookableresourcecharacteristic Createbookableresourcecharacteristi partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property traversedpath in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string traversedpath - { - get - { - return this._traversedpath; - } - set - { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); - /// - /// There are no comments for Property bookableresourcecharacteristicid in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable bookableresourcecharacteristicid + public virtual global::System.Nullable _modifiedby_value { get { - return this._bookableresourcecharacteristicid; + return this.__modifiedby_value; } set { - this.OnbookableresourcecharacteristicidChanging(value); - this._bookableresourcecharacteristicid = value; - this.OnbookableresourcecharacteristicidChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _bookableresourcecharacteristicid; - partial void OnbookableresourcecharacteristicidChanging(global::System.Nullable value); - partial void OnbookableresourcecharacteristicidChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property name in the schema. /// @@ -83541,28 +83541,6 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -83607,27 +83585,27 @@ public virtual string name partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property bookableresourcecharacteristicid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable bookableresourcecharacteristicid { get { - return this.__createdonbehalfby_value; + return this._bookableresourcecharacteristicid; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnbookableresourcecharacteristicidChanging(value); + this._bookableresourcecharacteristicid = value; + this.OnbookableresourcecharacteristicidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _bookableresourcecharacteristicid; + partial void OnbookableresourcecharacteristicidChanging(global::System.Nullable value); + partial void OnbookableresourcecharacteristicidChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -83651,27 +83629,27 @@ public virtual string name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _ratingvalue_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ratingvalue_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__ratingvalue_value; + return this._timezoneruleversionnumber; } set { - this.On_ratingvalue_valueChanging(value); - this.__ratingvalue_value = value; - this.On_ratingvalue_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ratingvalue_value; - partial void On_ratingvalue_valueChanging(global::System.Nullable value); - partial void On_ratingvalue_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -83717,6 +83695,28 @@ public virtual string name partial void OnprocessidChanging(global::System.Nullable value); partial void OnprocessidChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property _resource_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -84752,49 +84752,49 @@ public static bookableresourcegroup Createbookableresourcegroup(global::EMBC.ESS return bookableresourcegroup; } /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property bookableresourcegroupid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable bookableresourcegroupid { get { - return this.__modifiedonbehalfby_value; + return this._bookableresourcegroupid; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnbookableresourcegroupidChanging(value); + this._bookableresourcegroupid = value; + this.OnbookableresourcegroupidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _bookableresourcegroupid; + partial void OnbookableresourcegroupidChanging(global::System.Nullable value); + partial void OnbookableresourcegroupidChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _owninguser_value { get { - return this.__createdonbehalfby_value; + return this.__owninguser_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -84840,49 +84840,49 @@ public static bookableresourcegroup Createbookableresourcegroup(global::EMBC.ESS partial void OntodateChanging(global::System.Nullable value); partial void OntodateChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._overriddencreatedon; + return this.__createdonbehalfby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__owninguser_value; + return this._overriddencreatedon; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -84928,6 +84928,28 @@ public static bookableresourcegroup Createbookableresourcegroup(global::EMBC.ESS partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -84972,27 +84994,49 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable statuscode { get { - return this._exchangerate; + return this._statuscode; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -85016,6 +85060,28 @@ public virtual string name partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -85038,27 +85104,27 @@ public virtual string name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _parentresource_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _parentresource_value { get { - return this._importsequencenumber; + return this.__parentresource_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_parentresource_valueChanging(value); + this.__parentresource_value = value; + this.On_parentresource_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __parentresource_value; + partial void On_parentresource_valueChanging(global::System.Nullable value); + partial void On_parentresource_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -85104,49 +85170,27 @@ public virtual string name partial void On_childresource_valueChanging(global::System.Nullable value); partial void On_childresource_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property bookableresourcegroupid in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable bookableresourcegroupid + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._bookableresourcegroupid; + return this.__modifiedonbehalfby_value; } set { - this.OnbookableresourcegroupidChanging(value); - this._bookableresourcegroupid = value; - this.OnbookableresourcegroupidChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _bookableresourcegroupid; - partial void OnbookableresourcegroupidChanging(global::System.Nullable value); - partial void OnbookableresourcegroupidChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -85170,50 +85214,6 @@ public virtual string name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -85236,49 +85236,49 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._statuscode; + return this.__transactioncurrencyid_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property _parentresource_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _parentresource_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__parentresource_value; + return this._importsequencenumber; } set { - this.On_parentresource_valueChanging(value); - this.__parentresource_value = value; - this.On_parentresource_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentresource_value; - partial void On_parentresource_valueChanging(global::System.Nullable value); - partial void On_parentresource_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property fromdate in the schema. /// @@ -86541,27 +86541,27 @@ public static bookableresource Createbookableresource(global::EMBC.ESS.Utilities partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string traversedpath { get { - return this.__createdby_value; + return this._traversedpath; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -86629,6 +86629,50 @@ public static bookableresource Createbookableresource(global::EMBC.ESS.Utilities partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -86695,28 +86739,6 @@ public virtual string name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -86739,28 +86761,6 @@ public virtual string name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property traversedpath in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string traversedpath - { - get - { - return this._traversedpath; - } - set - { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); - /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -86827,27 +86827,27 @@ public virtual string traversedpath partial void On_contactid_valueChanging(global::System.Nullable value); partial void On_contactid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._createdon; + return this._timezoneruleversionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property timezone in the schema. /// @@ -86871,6 +86871,28 @@ public virtual string traversedpath partial void OntimezoneChanging(global::System.Nullable value); partial void OntimezoneChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property _userid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -87047,28 +87069,6 @@ public virtual string traversedpath partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -88203,27 +88203,27 @@ public static bookingstatus Createbookingstatus(global::EMBC.ESS.Utilities.Dynam return bookingstatus; } /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _owninguser_value { get { - return this._overriddencreatedon; + return this.__owninguser_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -88269,28 +88269,6 @@ public static bookingstatus Createbookingstatus(global::EMBC.ESS.Utilities.Dynam partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -88313,49 +88291,49 @@ public static bookingstatus Createbookingstatus(global::EMBC.ESS.Utilities.Dynam partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable statuscode { get { - return this.__createdonbehalfby_value; + return this._statuscode; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable overriddencreatedon { get { - return this._importsequencenumber; + return this._overriddencreatedon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -88401,28 +88379,6 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property status in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable status - { - get - { - return this._status; - } - set - { - this.OnstatusChanging(value); - this._status = value; - this.OnstatusChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _status; - partial void OnstatusChanging(global::System.Nullable value); - partial void OnstatusChanged(); - /// /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -88489,6 +88445,28 @@ public virtual string description partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -88511,49 +88489,71 @@ public virtual string description partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__ownerid_value; + return this._importsequencenumber; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._statuscode; + return this.__createdonbehalfby_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property bookingstatusid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable bookingstatusid + { + get + { + return this._bookingstatusid; + } + set + { + this.OnbookingstatusidChanging(value); + this._bookingstatusid = value; + this.OnbookingstatusidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _bookingstatusid; + partial void OnbookingstatusidChanging(global::System.Nullable value); + partial void OnbookingstatusidChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -88621,50 +88621,6 @@ public virtual string description partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -88687,27 +88643,71 @@ public virtual string name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property bookingstatusid in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable bookingstatusid + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._bookingstatusid; + return this.__modifiedonbehalfby_value; } set { - this.OnbookingstatusidChanging(value); - this._bookingstatusid = value; - this.OnbookingstatusidChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _bookingstatusid; - partial void OnbookingstatusidChanging(global::System.Nullable value); - partial void OnbookingstatusidChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property status in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable status + { + get + { + return this._status; + } + set + { + this.OnstatusChanging(value); + this._status = value; + this.OnstatusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _status; + partial void OnstatusChanging(global::System.Nullable value); + partial void OnstatusChanged(); /// /// There are no comments for Property createdbyname in the schema. /// @@ -89213,194 +89213,6 @@ public partial class bot_botcomponent : crmbaseentity private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); - /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// - /// There are no comments for Property botcomponentid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable botcomponentid - { - get - { - return this._botcomponentid; - } - set - { - this.OnbotcomponentidChanging(value); - this._botcomponentid = value; - this.OnbotcomponentidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _botcomponentid; - partial void OnbotcomponentidChanging(global::System.Nullable value); - partial void OnbotcomponentidChanged(); - /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// - /// There are no comments for Property componentidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentidunique - { - get - { - return this._componentidunique; - } - set - { - this.OncomponentiduniqueChanging(value); - this._componentidunique = value; - this.OncomponentiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentidunique; - partial void OncomponentiduniqueChanging(global::System.Nullable value); - partial void OncomponentiduniqueChanged(); - } - /// - /// There are no comments for botcomponent_botcomponentSingle in the schema. - /// - public partial class botcomponent_botcomponentSingle : global::Microsoft.OData.Client.DataServiceQuerySingle - { - /// - /// Initialize a new botcomponent_botcomponentSingle object. - /// - public botcomponent_botcomponentSingle(global::Microsoft.OData.Client.DataServiceContext context, string path) - : base(context, path) {} - - /// - /// Initialize a new botcomponent_botcomponentSingle object. - /// - public botcomponent_botcomponentSingle(global::Microsoft.OData.Client.DataServiceContext context, string path, bool isComposable) - : base(context, path, isComposable) {} - - /// - /// Initialize a new botcomponent_botcomponentSingle object. - /// - public botcomponent_botcomponentSingle(global::Microsoft.OData.Client.DataServiceQuerySingle query) - : base(query) {} - - } - /// - /// There are no comments for botcomponent_botcomponent in the schema. - /// - /// - /// botcomponent_botcomponentid - /// - [global::Microsoft.OData.Client.Key("botcomponent_botcomponentid")] - public partial class botcomponent_botcomponent : crmbaseentity - { /// /// There are no comments for Property ismanaged in the schema. /// @@ -89424,28 +89236,216 @@ public partial class botcomponent_botcomponent : crmbaseentity partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property botcomponentidone in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable botcomponentidone - { - get - { - return this._botcomponentidone; - } - set - { - this.OnbotcomponentidoneChanging(value); - this._botcomponentidone = value; - this.OnbotcomponentidoneChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _botcomponentidone; - partial void OnbotcomponentidoneChanging(global::System.Nullable value); - partial void OnbotcomponentidoneChanged(); - /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// + /// There are no comments for Property botcomponentid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable botcomponentid + { + get + { + return this._botcomponentid; + } + set + { + this.OnbotcomponentidChanging(value); + this._botcomponentid = value; + this.OnbotcomponentidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _botcomponentid; + partial void OnbotcomponentidChanging(global::System.Nullable value); + partial void OnbotcomponentidChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// + /// There are no comments for Property componentidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentidunique + { + get + { + return this._componentidunique; + } + set + { + this.OncomponentiduniqueChanging(value); + this._componentidunique = value; + this.OncomponentiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentidunique; + partial void OncomponentiduniqueChanging(global::System.Nullable value); + partial void OncomponentiduniqueChanged(); + } + /// + /// There are no comments for botcomponent_botcomponentSingle in the schema. + /// + public partial class botcomponent_botcomponentSingle : global::Microsoft.OData.Client.DataServiceQuerySingle + { + /// + /// Initialize a new botcomponent_botcomponentSingle object. + /// + public botcomponent_botcomponentSingle(global::Microsoft.OData.Client.DataServiceContext context, string path) + : base(context, path) {} + + /// + /// Initialize a new botcomponent_botcomponentSingle object. + /// + public botcomponent_botcomponentSingle(global::Microsoft.OData.Client.DataServiceContext context, string path, bool isComposable) + : base(context, path, isComposable) {} + + /// + /// Initialize a new botcomponent_botcomponentSingle object. + /// + public botcomponent_botcomponentSingle(global::Microsoft.OData.Client.DataServiceQuerySingle query) + : base(query) {} + + } + /// + /// There are no comments for botcomponent_botcomponent in the schema. + /// + /// + /// botcomponent_botcomponentid + /// + [global::Microsoft.OData.Client.Key("botcomponent_botcomponentid")] + public partial class botcomponent_botcomponent : crmbaseentity + { + /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// + /// There are no comments for Property botcomponentidone in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable botcomponentidone + { + get + { + return this._botcomponentidone; + } + set + { + this.OnbotcomponentidoneChanging(value); + this._botcomponentidone = value; + this.OnbotcomponentidoneChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _botcomponentidone; + partial void OnbotcomponentidoneChanging(global::System.Nullable value); + partial void OnbotcomponentidoneChanged(); + /// /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -89766,6 +89766,28 @@ public partial class botcomponent_workflow : crmbaseentity partial void Onbotcomponent_workflowidChanging(global::System.Nullable value); partial void Onbotcomponent_workflowidChanged(); /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -89832,28 +89854,6 @@ public partial class botcomponent_workflow : crmbaseentity partial void OncomponentiduniqueChanging(global::System.Nullable value); partial void OncomponentiduniqueChanged(); /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// /// There are no comments for Property botcomponentid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -90797,28 +90797,6 @@ public virtual string category partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -90995,6 +90973,28 @@ public virtual string data partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -92170,27 +92170,27 @@ public virtual string name partial void OncomponentiduniqueChanging(global::System.Nullable value); partial void OncomponentiduniqueChanged(); /// - /// There are no comments for Property authenticationmode in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable authenticationmode + public virtual global::System.Nullable createdon { get { - return this._authenticationmode; + return this._createdon; } set { - this.OnauthenticationmodeChanging(value); - this._authenticationmode = value; - this.OnauthenticationmodeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _authenticationmode; - partial void OnauthenticationmodeChanging(global::System.Nullable value); - partial void OnauthenticationmodeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -92390,28 +92390,6 @@ public virtual string iconbase64 partial void Oniconbase64Changing(string value); partial void Oniconbase64Changed(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property configuration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -92522,6 +92500,28 @@ public virtual string configuration partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property authenticationmode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable authenticationmode + { + get + { + return this._authenticationmode; + } + set + { + this.OnauthenticationmodeChanging(value); + this._authenticationmode = value; + this.OnauthenticationmodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _authenticationmode; + partial void OnauthenticationmodeChanging(global::System.Nullable value); + partial void OnauthenticationmodeChanged(); + /// /// There are no comments for Property language in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -101141,28 +101141,6 @@ public static bulkdeletefailure Createbulkdeletefailure(global::EMBC.ESS.Utiliti partial void On_regardingobjectid_valueChanging(global::System.Nullable value); partial void On_regardingobjectid_valueChanged(); /// - /// There are no comments for Property errornumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable errornumber - { - get - { - return this._errornumber; - } - set - { - this.OnerrornumberChanging(value); - this._errornumber = value; - this.OnerrornumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _errornumber; - partial void OnerrornumberChanging(global::System.Nullable value); - partial void OnerrornumberChanged(); - /// /// There are no comments for Property bulkdeletefailureid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -101273,27 +101251,27 @@ public virtual string errordescription partial void On_bulkdeleteoperationid_valueChanging(global::System.Nullable value); partial void On_bulkdeleteoperationid_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property errornumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable errornumber { get { - return this.__ownerid_value; + return this._errornumber; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnerrornumberChanging(value); + this._errornumber = value; + this.OnerrornumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _errornumber; + partial void OnerrornumberChanging(global::System.Nullable value); + partial void OnerrornumberChanged(); /// /// There are no comments for Property owninguser in the schema. /// @@ -101317,6 +101295,28 @@ public virtual string errordescription partial void OnowninguserChanging(global::System.Nullable value); partial void OnowninguserChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property owningbusinessunit in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -107964,6 +107964,28 @@ public static bulkdeleteoperation Createbulkdeleteoperation(global::EMBC.ESS.Uti return bulkdeleteoperation; } /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -108096,27 +108118,27 @@ public static bulkdeleteoperation Createbulkdeleteoperation(global::EMBC.ESS.Uti partial void OnbulkdeleteoperationidChanging(global::System.Nullable value); partial void OnbulkdeleteoperationidChanged(); /// - /// There are no comments for Property successcount in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable successcount + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._successcount; + return this._timezoneruleversionnumber; } set { - this.OnsuccesscountChanging(value); - this._successcount = value; - this.OnsuccesscountChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _successcount; - partial void OnsuccesscountChanging(global::System.Nullable value); - partial void OnsuccesscountChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -108140,28 +108162,6 @@ public static bulkdeleteoperation Createbulkdeleteoperation(global::EMBC.ESS.Uti partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property failurecount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -108184,28 +108184,6 @@ public static bulkdeleteoperation Createbulkdeleteoperation(global::EMBC.ESS.Uti partial void OnfailurecountChanging(global::System.Nullable value); partial void OnfailurecountChanged(); /// - /// There are no comments for Property processingqeindex in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable processingqeindex - { - get - { - return this._processingqeindex; - } - set - { - this.OnprocessingqeindexChanging(value); - this._processingqeindex = value; - this.OnprocessingqeindexChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processingqeindex; - partial void OnprocessingqeindexChanging(global::System.Nullable value); - partial void OnprocessingqeindexChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -108228,27 +108206,27 @@ public static bulkdeleteoperation Createbulkdeleteoperation(global::EMBC.ESS.Uti partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _ownerid_value { get { - return this._timezoneruleversionnumber; + return this.__ownerid_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property name in the schema. /// @@ -108272,6 +108250,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property successcount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable successcount + { + get + { + return this._successcount; + } + set + { + this.OnsuccesscountChanging(value); + this._successcount = value; + this.OnsuccesscountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _successcount; + partial void OnsuccesscountChanging(global::System.Nullable value); + partial void OnsuccesscountChanged(); + /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -108316,27 +108316,27 @@ public virtual string name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property processingqeindex in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable processingqeindex { get { - return this.__ownerid_value; + return this._processingqeindex; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnprocessingqeindexChanging(value); + this._processingqeindex = value; + this.OnprocessingqeindexChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _processingqeindex; + partial void OnprocessingqeindexChanging(global::System.Nullable value); + partial void OnprocessingqeindexChanged(); /// /// There are no comments for Property isrecurring in the schema. /// @@ -108360,6 +108360,28 @@ public virtual string name partial void OnisrecurringChanging(global::System.Nullable value); partial void OnisrecurringChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -108404,28 +108426,6 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property orderedquerysetxml in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -109119,27 +109119,27 @@ public static bulkoperationlog Createbulkoperationlog(global::EMBC.ESS.Utilities return bulkoperationlog; } /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable versionnumber { get { - return this.__owningbusinessunit_value; + return this._versionnumber; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -109163,6 +109163,28 @@ public static bulkoperationlog Createbulkoperationlog(global::EMBC.ESS.Utilities partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property _campaignactivityid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -109229,28 +109251,6 @@ public static bulkoperationlog Createbulkoperationlog(global::EMBC.ESS.Utilities partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// /// There are no comments for Property additionalinfo in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -109317,6 +109317,28 @@ public virtual string errordescriptionformatted partial void OnerrordescriptionformattedChanging(string value); partial void OnerrordescriptionformattedChanged(); /// + /// There are no comments for Property _createdobjectid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdobjectid_value + { + get + { + return this.__createdobjectid_value; + } + set + { + this.On_createdobjectid_valueChanging(value); + this.__createdobjectid_value = value; + this.On_createdobjectid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdobjectid_value; + partial void On_createdobjectid_valueChanging(global::System.Nullable value); + partial void On_createdobjectid_valueChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -109383,71 +109405,27 @@ public virtual string errordescriptionformatted partial void OnerrornumberChanging(global::System.Nullable value); partial void OnerrornumberChanged(); /// - /// There are no comments for Property _createdobjectid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdobjectid_value - { - get - { - return this.__createdobjectid_value; - } - set - { - this.On_createdobjectid_valueChanging(value); - this.__createdobjectid_value = value; - this.On_createdobjectid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdobjectid_value; - partial void On_createdobjectid_valueChanging(global::System.Nullable value); - partial void On_createdobjectid_valueChanged(); - /// - /// There are no comments for Property errornumberformatted in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string errornumberformatted - { - get - { - return this._errornumberformatted; - } - set - { - this.OnerrornumberformattedChanging(value); - this._errornumberformatted = value; - this.OnerrornumberformattedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _errornumberformatted; - partial void OnerrornumberformattedChanging(string value); - partial void OnerrornumberformattedChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__ownerid_value; + return this.__owningteam_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property _bulkoperationid_value in the schema. /// @@ -109515,27 +109493,49 @@ public virtual string name partial void OnbulkoperationlogidChanging(global::System.Nullable value); partial void OnbulkoperationlogidChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._versionnumber; + return this.__owningbusinessunit_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property errornumberformatted in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string errornumberformatted + { + get + { + return this._errornumberformatted; + } + set + { + this.OnerrornumberformattedChanging(value); + this._errornumberformatted = value; + this.OnerrornumberformattedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _errornumberformatted; + partial void OnerrornumberformattedChanging(string value); + partial void OnerrornumberformattedChanged(); /// /// There are no comments for Property createdobjectid_opportunity in the schema. /// @@ -112964,50 +112964,6 @@ public virtual string bulkoperationnumber partial void OnbulkoperationnumberChanging(string value); partial void OnbulkoperationnumberChanged(); /// - /// There are no comments for Property operationtypecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable operationtypecode - { - get - { - return this._operationtypecode; - } - set - { - this.OnoperationtypecodeChanging(value); - this._operationtypecode = value; - this.OnoperationtypecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _operationtypecode; - partial void OnoperationtypecodeChanging(global::System.Nullable value); - partial void OnoperationtypecodeChanged(); - /// - /// There are no comments for Property errornumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable errornumber - { - get - { - return this._errornumber; - } - set - { - this.OnerrornumberChanging(value); - this._errornumber = value; - this.OnerrornumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _errornumber; - partial void OnerrornumberChanging(global::System.Nullable value); - partial void OnerrornumberChanged(); - /// /// There are no comments for Property parameters in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -113030,27 +112986,27 @@ public virtual string parameters partial void OnparametersChanging(string value); partial void OnparametersChanged(); /// - /// There are no comments for Property workflowinfo in the schema. + /// There are no comments for Property failurecount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string workflowinfo + public virtual global::System.Nullable failurecount { get { - return this._workflowinfo; + return this._failurecount; } set { - this.OnworkflowinfoChanging(value); - this._workflowinfo = value; - this.OnworkflowinfoChanged(); + this.OnfailurecountChanging(value); + this._failurecount = value; + this.OnfailurecountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _workflowinfo; - partial void OnworkflowinfoChanging(string value); - partial void OnworkflowinfoChanged(); + private global::System.Nullable _failurecount; + partial void OnfailurecountChanging(global::System.Nullable value); + partial void OnfailurecountChanged(); /// /// There are no comments for Property targetedrecordtypecode in the schema. /// @@ -113074,71 +113030,71 @@ public virtual string workflowinfo partial void OntargetedrecordtypecodeChanging(global::System.Nullable value); partial void OntargetedrecordtypecodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property operationtypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable operationtypecode { get { - return this._overriddencreatedon; + return this._operationtypecode; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnoperationtypecodeChanging(value); + this._operationtypecode = value; + this.OnoperationtypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _operationtypecode; + partial void OnoperationtypecodeChanging(global::System.Nullable value); + partial void OnoperationtypecodeChanged(); /// - /// There are no comments for Property targetmemberscount in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable targetmemberscount + public virtual global::System.Nullable overriddencreatedon { get { - return this._targetmemberscount; + return this._overriddencreatedon; } set { - this.OntargetmemberscountChanging(value); - this._targetmemberscount = value; - this.OntargetmemberscountChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _targetmemberscount; - partial void OntargetmemberscountChanging(global::System.Nullable value); - partial void OntargetmemberscountChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property failurecount in the schema. + /// There are no comments for Property createdrecordtypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable failurecount + public virtual global::System.Nullable createdrecordtypecode { get { - return this._failurecount; + return this._createdrecordtypecode; } set { - this.OnfailurecountChanging(value); - this._failurecount = value; - this.OnfailurecountChanged(); + this.OncreatedrecordtypecodeChanging(value); + this._createdrecordtypecode = value; + this.OncreatedrecordtypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _failurecount; - partial void OnfailurecountChanging(global::System.Nullable value); - partial void OnfailurecountChanged(); + private global::System.Nullable _createdrecordtypecode; + partial void OncreatedrecordtypecodeChanging(global::System.Nullable value); + partial void OncreatedrecordtypecodeChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -113162,6 +113118,50 @@ public virtual string workflowinfo partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property workflowinfo in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string workflowinfo + { + get + { + return this._workflowinfo; + } + set + { + this.OnworkflowinfoChanging(value); + this._workflowinfo = value; + this.OnworkflowinfoChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _workflowinfo; + partial void OnworkflowinfoChanging(string value); + partial void OnworkflowinfoChanged(); + /// + /// There are no comments for Property errornumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable errornumber + { + get + { + return this._errornumber; + } + set + { + this.OnerrornumberChanging(value); + this._errornumber = value; + this.OnerrornumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _errornumber; + partial void OnerrornumberChanging(global::System.Nullable value); + partial void OnerrornumberChanged(); + /// /// There are no comments for Property successcount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -113184,27 +113184,27 @@ public virtual string workflowinfo partial void OnsuccesscountChanging(global::System.Nullable value); partial void OnsuccesscountChanged(); /// - /// There are no comments for Property createdrecordtypecode in the schema. + /// There are no comments for Property targetmemberscount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdrecordtypecode + public virtual global::System.Nullable targetmemberscount { get { - return this._createdrecordtypecode; + return this._targetmemberscount; } set { - this.OncreatedrecordtypecodeChanging(value); - this._createdrecordtypecode = value; - this.OncreatedrecordtypecodeChanged(); + this.OntargetmemberscountChanging(value); + this._targetmemberscount = value; + this.OntargetmemberscountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdrecordtypecode; - partial void OncreatedrecordtypecodeChanging(global::System.Nullable value); - partial void OncreatedrecordtypecodeChanged(); + private global::System.Nullable _targetmemberscount; + partial void OntargetmemberscountChanging(global::System.Nullable value); + partial void OntargetmemberscountChanged(); /// /// There are no comments for Property bulkoperation_abs_scheduledprocessexecutions in the schema. /// @@ -114624,71 +114624,93 @@ public virtual string newsarticle partial void OnnewsarticleChanging(string value); partial void OnnewsarticleChanged(); /// - /// There are no comments for Property articleurl in the schema. + /// There are no comments for Property businessunitnewsarticleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string articleurl + public virtual global::System.Nullable businessunitnewsarticleid { get { - return this._articleurl; + return this._businessunitnewsarticleid; } set { - this.OnarticleurlChanging(value); - this._articleurl = value; - this.OnarticleurlChanged(); + this.OnbusinessunitnewsarticleidChanging(value); + this._businessunitnewsarticleid = value; + this.OnbusinessunitnewsarticleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _articleurl; - partial void OnarticleurlChanging(string value); - partial void OnarticleurlChanged(); + private global::System.Nullable _businessunitnewsarticleid; + partial void OnbusinessunitnewsarticleidChanging(global::System.Nullable value); + partial void OnbusinessunitnewsarticleidChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable _createdby_value { get { - return this.__organizationid_value; + return this.__createdby_value; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property businessunitnewsarticleid in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable businessunitnewsarticleid + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._businessunitnewsarticleid; + return this._timezoneruleversionnumber; } set { - this.OnbusinessunitnewsarticleidChanging(value); - this._businessunitnewsarticleid = value; - this.OnbusinessunitnewsarticleidChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _businessunitnewsarticleid; - partial void OnbusinessunitnewsarticleidChanging(global::System.Nullable value); - partial void OnbusinessunitnewsarticleidChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property showonhomepage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable showonhomepage + { + get + { + return this._showonhomepage; + } + set + { + this.OnshowonhomepageChanging(value); + this._showonhomepage = value; + this.OnshowonhomepageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _showonhomepage; + partial void OnshowonhomepageChanging(global::System.Nullable value); + partial void OnshowonhomepageChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -114712,27 +114734,27 @@ public virtual string articleurl partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable createdon { get { - return this._timezoneruleversionnumber; + return this._createdon; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property activeon in the schema. /// @@ -114756,49 +114778,27 @@ public virtual string articleurl partial void OnactiveonChanging(global::System.Nullable value); partial void OnactiveonChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _organizationid_value { get { - return this._versionnumber; + return this.__organizationid_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -114822,6 +114822,28 @@ public virtual string articleurl partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property activeuntil in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -114910,71 +114932,49 @@ public virtual string articleurl partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property articletitle in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string articletitle - { - get - { - return this._articletitle; - } - set - { - this.OnarticletitleChanging(value); - this._articletitle = value; - this.OnarticletitleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _articletitle; - partial void OnarticletitleChanging(string value); - partial void OnarticletitleChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__createdby_value; + return this._utcconversiontimezonecode; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property showonhomepage in the schema. + /// There are no comments for Property articletitle in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable showonhomepage + public virtual string articletitle { get { - return this._showonhomepage; + return this._articletitle; } set { - this.OnshowonhomepageChanging(value); - this._showonhomepage = value; - this.OnshowonhomepageChanged(); + this.OnarticletitleChanging(value); + this._articletitle = value; + this.OnarticletitleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _showonhomepage; - partial void OnshowonhomepageChanging(global::System.Nullable value); - partial void OnshowonhomepageChanged(); + private string _articletitle; + partial void OnarticletitleChanging(string value); + partial void OnarticletitleChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -114998,49 +114998,49 @@ public virtual string articletitle partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property articleurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string articleurl { get { - return this.__modifiedonbehalfby_value; + return this._articleurl; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnarticleurlChanging(value); + this._articleurl = value; + this.OnarticleurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _articleurl; + partial void OnarticleurlChanging(string value); + partial void OnarticleurlChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._utcconversiontimezonecode; + return this.__modifiedonbehalfby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property BusinessUnitNewsArticle_BulkDeleteFailures in the schema. /// @@ -119668,28 +119668,6 @@ public static businessunit Createbusinessunit(global::EMBC.ESS.Utilities.Dynamic return businessunit; } /// - /// There are no comments for Property address1_addressid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable address1_addressid - { - get - { - return this._address1_addressid; - } - set - { - this.Onaddress1_addressidChanging(value); - this._address1_addressid = value; - this.Onaddress1_addressidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_addressid; - partial void Onaddress1_addressidChanging(global::System.Nullable value); - partial void Onaddress1_addressidChanged(); - /// /// There are no comments for Property address2_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -119712,28 +119690,6 @@ public virtual string address2_line2 partial void Onaddress2_line2Changing(string value); partial void Onaddress2_line2Changed(); /// - /// There are no comments for Property workflowsuspended in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable workflowsuspended - { - get - { - return this._workflowsuspended; - } - set - { - this.OnworkflowsuspendedChanging(value); - this._workflowsuspended = value; - this.OnworkflowsuspendedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _workflowsuspended; - partial void OnworkflowsuspendedChanging(global::System.Nullable value); - partial void OnworkflowsuspendedChanged(); - /// /// There are no comments for Property address2_upszone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -119778,27 +119734,27 @@ public virtual string address2_stateorprovince partial void Onaddress2_stateorprovinceChanging(string value); partial void Onaddress2_stateorprovinceChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property workflowsuspended in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable workflowsuspended { get { - return this._createdon; + return this._workflowsuspended; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnworkflowsuspendedChanging(value); + this._workflowsuspended = value; + this.OnworkflowsuspendedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _workflowsuspended; + partial void OnworkflowsuspendedChanging(global::System.Nullable value); + partial void OnworkflowsuspendedChanged(); /// /// There are no comments for Property address1_telephone2 in the schema. /// @@ -119822,28 +119778,6 @@ public virtual string address1_telephone2 partial void Onaddress1_telephone2Changing(string value); partial void Onaddress1_telephone2Changed(); /// - /// There are no comments for Property picture in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string picture - { - get - { - return this._picture; - } - set - { - this.OnpictureChanging(value); - this._picture = value; - this.OnpictureChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _picture; - partial void OnpictureChanging(string value); - partial void OnpictureChanged(); - /// /// There are no comments for Property divisionname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -119910,28 +119844,6 @@ public virtual string address1_line3 partial void Onaddress1_line3Changing(string value); partial void Onaddress1_line3Changed(); /// - /// There are no comments for Property address2_shippingmethodcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable address2_shippingmethodcode - { - get - { - return this._address2_shippingmethodcode; - } - set - { - this.Onaddress2_shippingmethodcodeChanging(value); - this._address2_shippingmethodcode = value; - this.Onaddress2_shippingmethodcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_shippingmethodcode; - partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress2_shippingmethodcodeChanged(); - /// /// There are no comments for Property address1_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -119976,6 +119888,28 @@ public virtual string disabledreason partial void OndisabledreasonChanging(string value); partial void OndisabledreasonChanged(); /// + /// There are no comments for Property address1_longitude in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address1_longitude + { + get + { + return this._address1_longitude; + } + set + { + this.Onaddress1_longitudeChanging(value); + this._address1_longitude = value; + this.Onaddress1_longitudeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address1_longitude; + partial void Onaddress1_longitudeChanging(global::System.Nullable value); + partial void Onaddress1_longitudeChanged(); + /// /// There are no comments for Property address2_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -120020,28 +119954,6 @@ public virtual string address2_name partial void Onaddress2_utcoffsetChanging(global::System.Nullable value); partial void Onaddress2_utcoffsetChanged(); /// - /// There are no comments for Property stockexchange in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string stockexchange - { - get - { - return this._stockexchange; - } - set - { - this.OnstockexchangeChanging(value); - this._stockexchange = value; - this.OnstockexchangeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _stockexchange; - partial void OnstockexchangeChanging(string value); - partial void OnstockexchangeChanged(); - /// /// There are no comments for Property address2_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -120086,27 +119998,27 @@ public virtual string address2_line3 partial void Onaddress2_line3Changing(string value); partial void Onaddress2_line3Changed(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property address1_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string address1_postofficebox { get { - return this.__createdonbehalfby_value; + return this._address1_postofficebox; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onaddress1_postofficeboxChanging(value); + this._address1_postofficebox = value; + this.Onaddress1_postofficeboxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _address1_postofficebox; + partial void Onaddress1_postofficeboxChanging(string value); + partial void Onaddress1_postofficeboxChanged(); /// /// There are no comments for Property businessunitid in the schema. /// @@ -120196,71 +120108,93 @@ public virtual string address1_name partial void Onaddress1_nameChanging(string value); partial void Onaddress1_nameChanged(); /// - /// There are no comments for Property address2_postofficebox in the schema. + /// There are no comments for Property address2_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_postofficebox + public virtual string address2_postalcode { get { - return this._address2_postofficebox; + return this._address2_postalcode; } set { - this.Onaddress2_postofficeboxChanging(value); - this._address2_postofficebox = value; - this.Onaddress2_postofficeboxChanged(); + this.Onaddress2_postalcodeChanging(value); + this._address2_postalcode = value; + this.Onaddress2_postalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_postofficebox; - partial void Onaddress2_postofficeboxChanging(string value); - partial void Onaddress2_postofficeboxChanged(); + private string _address2_postalcode; + partial void Onaddress2_postalcodeChanging(string value); + partial void Onaddress2_postalcodeChanged(); /// - /// There are no comments for Property address2_addressid in the schema. + /// There are no comments for Property picture in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_addressid + public virtual string picture { get { - return this._address2_addressid; + return this._picture; } set { - this.Onaddress2_addressidChanging(value); - this._address2_addressid = value; - this.Onaddress2_addressidChanged(); + this.OnpictureChanging(value); + this._picture = value; + this.OnpictureChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_addressid; - partial void Onaddress2_addressidChanging(global::System.Nullable value); - partial void Onaddress2_addressidChanged(); + private string _picture; + partial void OnpictureChanging(string value); + partial void OnpictureChanged(); /// - /// There are no comments for Property _calendarid_value in the schema. + /// There are no comments for Property address1_addressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _calendarid_value + public virtual global::System.Nullable address1_addressid { get { - return this.__calendarid_value; + return this._address1_addressid; } set { - this.On_calendarid_valueChanging(value); - this.__calendarid_value = value; - this.On_calendarid_valueChanged(); + this.Onaddress1_addressidChanging(value); + this._address1_addressid = value; + this.Onaddress1_addressidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __calendarid_value; - partial void On_calendarid_valueChanging(global::System.Nullable value); - partial void On_calendarid_valueChanged(); + private global::System.Nullable _address1_addressid; + partial void Onaddress1_addressidChanging(global::System.Nullable value); + partial void Onaddress1_addressidChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property address2_telephone2 in the schema. /// @@ -120284,93 +120218,93 @@ public virtual string address2_telephone2 partial void Onaddress2_telephone2Changing(string value); partial void Onaddress2_telephone2Changed(); /// - /// There are no comments for Property address2_postalcode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_postalcode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._address2_postalcode; + return this.__createdonbehalfby_value; } set { - this.Onaddress2_postalcodeChanging(value); - this._address2_postalcode = value; - this.Onaddress2_postalcodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_postalcode; - partial void Onaddress2_postalcodeChanging(string value); - partial void Onaddress2_postalcodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property address2_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string address2_postofficebox { get { - return this._modifiedon; + return this._address2_postofficebox; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.Onaddress2_postofficeboxChanging(value); + this._address2_postofficebox = value; + this.Onaddress2_postofficeboxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private string _address2_postofficebox; + partial void Onaddress2_postofficeboxChanging(string value); + partial void Onaddress2_postofficeboxChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property address2_addresstypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable address2_addresstypecode { get { - return this.__createdby_value; + return this._address2_addresstypecode; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Onaddress2_addresstypecodeChanging(value); + this._address2_addresstypecode = value; + this.Onaddress2_addresstypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _address2_addresstypecode; + partial void Onaddress2_addresstypecodeChanging(global::System.Nullable value); + partial void Onaddress2_addresstypecodeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property address1_utcoffset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable address1_utcoffset { get { - return this.__modifiedby_value; + return this._address1_utcoffset; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.Onaddress1_utcoffsetChanging(value); + this._address1_utcoffset = value; + this.Onaddress1_utcoffsetChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _address1_utcoffset; + partial void Onaddress1_utcoffsetChanging(global::System.Nullable value); + partial void Onaddress1_utcoffsetChanged(); /// /// There are no comments for Property address1_telephone3 in the schema. /// @@ -120416,28 +120350,6 @@ public virtual string address1_telephone3 partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property address2_latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -120482,27 +120394,27 @@ public virtual string address1_telephone3 partial void OncreditlimitChanging(global::System.Nullable value); partial void OncreditlimitChanged(); /// - /// There are no comments for Property address1_county in the schema. + /// There are no comments for Property address2_telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_county + public virtual string address2_telephone3 { get { - return this._address1_county; + return this._address2_telephone3; } set { - this.Onaddress1_countyChanging(value); - this._address1_county = value; - this.Onaddress1_countyChanged(); + this.Onaddress2_telephone3Changing(value); + this._address2_telephone3 = value; + this.Onaddress2_telephone3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_county; - partial void Onaddress1_countyChanging(string value); - partial void Onaddress1_countyChanged(); + private string _address2_telephone3; + partial void Onaddress2_telephone3Changing(string value); + partial void Onaddress2_telephone3Changed(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -120526,27 +120438,27 @@ public virtual string address1_county partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property address1_longitude in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_longitude + public virtual global::System.Nullable modifiedon { get { - return this._address1_longitude; + return this._modifiedon; } set { - this.Onaddress1_longitudeChanging(value); - this._address1_longitude = value; - this.Onaddress1_longitudeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_longitude; - partial void Onaddress1_longitudeChanging(global::System.Nullable value); - partial void Onaddress1_longitudeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property emailaddress in the schema. /// @@ -120570,28 +120482,6 @@ public virtual string emailaddress partial void OnemailaddressChanging(string value); partial void OnemailaddressChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// /// There are no comments for Property address1_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -120680,49 +120570,93 @@ public virtual string address1_fax partial void Onaddress1_faxChanging(string value); partial void Onaddress1_faxChanged(); /// - /// There are no comments for Property address2_line1 in the schema. + /// There are no comments for Property websiteurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_line1 + public virtual string websiteurl { get { - return this._address2_line1; + return this._websiteurl; } set { - this.Onaddress2_line1Changing(value); - this._address2_line1 = value; - this.Onaddress2_line1Changed(); + this.OnwebsiteurlChanging(value); + this._websiteurl = value; + this.OnwebsiteurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line1; - partial void Onaddress2_line1Changing(string value); - partial void Onaddress2_line1Changed(); + private string _websiteurl; + partial void OnwebsiteurlChanging(string value); + partial void OnwebsiteurlChanged(); /// - /// There are no comments for Property address2_addresstypecode in the schema. + /// There are no comments for Property address2_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_addresstypecode + public virtual string address2_city { get { - return this._address2_addresstypecode; + return this._address2_city; } set { - this.Onaddress2_addresstypecodeChanging(value); - this._address2_addresstypecode = value; - this.Onaddress2_addresstypecodeChanged(); + this.Onaddress2_cityChanging(value); + this._address2_city = value; + this.Onaddress2_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_addresstypecode; - partial void Onaddress2_addresstypecodeChanging(global::System.Nullable value); - partial void Onaddress2_addresstypecodeChanged(); + private string _address2_city; + partial void Onaddress2_cityChanging(string value); + partial void Onaddress2_cityChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property address2_line1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_line1 + { + get + { + return this._address2_line1; + } + set + { + this.Onaddress2_line1Changing(value); + this._address2_line1 = value; + this.Onaddress2_line1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_line1; + partial void Onaddress2_line1Changing(string value); + partial void Onaddress2_line1Changed(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -120768,6 +120702,28 @@ public virtual string address2_line1 partial void OnutcoffsetChanging(global::System.Nullable value); partial void OnutcoffsetChanged(); /// + /// There are no comments for Property _calendarid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _calendarid_value + { + get + { + return this.__calendarid_value; + } + set + { + this.On_calendarid_valueChanging(value); + this.__calendarid_value = value; + this.On_calendarid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __calendarid_value; + partial void On_calendarid_valueChanging(global::System.Nullable value); + partial void On_calendarid_valueChanged(); + /// /// There are no comments for Property costcenter in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -120790,71 +120746,71 @@ public virtual string costcenter partial void OncostcenterChanging(string value); partial void OncostcenterChanged(); /// - /// There are no comments for Property address1_postofficebox in the schema. + /// There are no comments for Property stockexchange in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_postofficebox + public virtual string stockexchange { get { - return this._address1_postofficebox; + return this._stockexchange; } set { - this.Onaddress1_postofficeboxChanging(value); - this._address1_postofficebox = value; - this.Onaddress1_postofficeboxChanged(); + this.OnstockexchangeChanging(value); + this._stockexchange = value; + this.OnstockexchangeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_postofficebox; - partial void Onaddress1_postofficeboxChanging(string value); - partial void Onaddress1_postofficeboxChanged(); + private string _stockexchange; + partial void OnstockexchangeChanging(string value); + partial void OnstockexchangeChanged(); /// - /// There are no comments for Property address1_line2 in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_line2 + public virtual global::System.Nullable _organizationid_value { get { - return this._address1_line2; + return this.__organizationid_value; } set { - this.Onaddress1_line2Changing(value); - this._address1_line2 = value; - this.Onaddress1_line2Changed(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line2; - partial void Onaddress1_line2Changing(string value); - partial void Onaddress1_line2Changed(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property address2_longitude in the schema. + /// There are no comments for Property address1_county in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_longitude + public virtual string address1_county { get { - return this._address2_longitude; + return this._address1_county; } set { - this.Onaddress2_longitudeChanging(value); - this._address2_longitude = value; - this.Onaddress2_longitudeChanged(); + this.Onaddress1_countyChanging(value); + this._address1_county = value; + this.Onaddress1_countyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_longitude; - partial void Onaddress2_longitudeChanging(global::System.Nullable value); - partial void Onaddress2_longitudeChanged(); + private string _address1_county; + partial void Onaddress1_countyChanging(string value); + partial void Onaddress1_countyChanged(); /// /// There are no comments for Property address1_upszone in the schema. /// @@ -120878,49 +120834,27 @@ public virtual string address1_upszone partial void Onaddress1_upszoneChanging(string value); partial void Onaddress1_upszoneChanged(); /// - /// There are no comments for Property address2_county in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_county - { - get - { - return this._address2_county; - } - set - { - this.Onaddress2_countyChanging(value); - this._address2_county = value; - this.Onaddress2_countyChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_county; - partial void Onaddress2_countyChanging(string value); - partial void Onaddress2_countyChanged(); - /// - /// There are no comments for Property address2_city in the schema. + /// There are no comments for Property address2_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_city + public virtual global::System.Nullable address2_shippingmethodcode { get { - return this._address2_city; + return this._address2_shippingmethodcode; } set { - this.Onaddress2_cityChanging(value); - this._address2_city = value; - this.Onaddress2_cityChanged(); + this.Onaddress2_shippingmethodcodeChanging(value); + this._address2_shippingmethodcode = value; + this.Onaddress2_shippingmethodcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_city; - partial void Onaddress2_cityChanging(string value); - partial void Onaddress2_cityChanged(); + private global::System.Nullable _address2_shippingmethodcode; + partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress2_shippingmethodcodeChanged(); /// /// There are no comments for Property address1_country in the schema. /// @@ -120966,27 +120900,27 @@ public virtual string fileasname partial void OnfileasnameChanging(string value); partial void OnfileasnameChanged(); /// - /// There are no comments for Property address1_utcoffset in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_utcoffset + public virtual string name { get { - return this._address1_utcoffset; + return this._name; } set { - this.Onaddress1_utcoffsetChanging(value); - this._address1_utcoffset = value; - this.Onaddress1_utcoffsetChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_utcoffset; - partial void Onaddress1_utcoffsetChanging(global::System.Nullable value); - partial void Onaddress1_utcoffsetChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property address1_stateorprovince in the schema. /// @@ -121010,27 +120944,27 @@ public virtual string address1_stateorprovince partial void Onaddress1_stateorprovinceChanging(string value); partial void Onaddress1_stateorprovinceChanged(); /// - /// There are no comments for Property address1_addresstypecode in the schema. + /// There are no comments for Property address1_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_addresstypecode + public virtual string address1_line2 { get { - return this._address1_addresstypecode; + return this._address1_line2; } set { - this.Onaddress1_addresstypecodeChanging(value); - this._address1_addresstypecode = value; - this.Onaddress1_addresstypecodeChanged(); + this.Onaddress1_line2Changing(value); + this._address1_line2 = value; + this.Onaddress1_line2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_addresstypecode; - partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); - partial void Onaddress1_addresstypecodeChanged(); + private string _address1_line2; + partial void Onaddress1_line2Changing(string value); + partial void Onaddress1_line2Changed(); /// /// There are no comments for Property address1_line1 in the schema. /// @@ -121054,6 +120988,28 @@ public virtual string address1_line1 partial void Onaddress1_line1Changing(string value); partial void Onaddress1_line1Changed(); /// + /// There are no comments for Property address2_addressid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address2_addressid + { + get + { + return this._address2_addressid; + } + set + { + this.Onaddress2_addressidChanging(value); + this._address2_addressid = value; + this.Onaddress2_addressidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address2_addressid; + partial void Onaddress2_addressidChanging(global::System.Nullable value); + partial void Onaddress2_addressidChanged(); + /// /// There are no comments for Property _parentbusinessunitid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -121098,6 +121054,28 @@ public virtual string address1_telephone1 partial void Onaddress1_telephone1Changing(string value); partial void Onaddress1_telephone1Changed(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property address2_country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -121120,27 +121098,27 @@ public virtual string address2_country partial void Onaddress2_countryChanging(string value); partial void Onaddress2_countryChanged(); /// - /// There are no comments for Property address2_telephone3 in the schema. + /// There are no comments for Property address1_addresstypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_telephone3 + public virtual global::System.Nullable address1_addresstypecode { get { - return this._address2_telephone3; + return this._address1_addresstypecode; } set { - this.Onaddress2_telephone3Changing(value); - this._address2_telephone3 = value; - this.Onaddress2_telephone3Changed(); + this.Onaddress1_addresstypecodeChanging(value); + this._address1_addresstypecode = value; + this.Onaddress1_addresstypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone3; - partial void Onaddress2_telephone3Changing(string value); - partial void Onaddress2_telephone3Changed(); + private global::System.Nullable _address1_addresstypecode; + partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); + partial void Onaddress1_addresstypecodeChanged(); /// /// There are no comments for Property isdisabled in the schema. /// @@ -121186,27 +121164,27 @@ public virtual string address2_telephone3 partial void Onaddress1_latitudeChanging(global::System.Nullable value); partial void Onaddress1_latitudeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property address2_county in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string address2_county { get { - return this._overriddencreatedon; + return this._address2_county; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onaddress2_countyChanging(value); + this._address2_county = value; + this.Onaddress2_countyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _address2_county; + partial void Onaddress2_countyChanging(string value); + partial void Onaddress2_countyChanged(); /// /// There are no comments for Property inheritancemask in the schema. /// @@ -121230,49 +121208,71 @@ public virtual string address2_telephone3 partial void OninheritancemaskChanging(global::System.Nullable value); partial void OninheritancemaskChanged(); /// - /// There are no comments for Property address2_telephone1 in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_telephone1 + public virtual global::System.Nullable _modifiedby_value { get { - return this._address2_telephone1; + return this.__modifiedby_value; } set { - this.Onaddress2_telephone1Changing(value); - this._address2_telephone1 = value; - this.Onaddress2_telephone1Changed(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone1; - partial void Onaddress2_telephone1Changing(string value); - partial void Onaddress2_telephone1Changed(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property websiteurl in the schema. + /// There are no comments for Property address2_longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string websiteurl + public virtual global::System.Nullable address2_longitude { get { - return this._websiteurl; + return this._address2_longitude; } set { - this.OnwebsiteurlChanging(value); - this._websiteurl = value; - this.OnwebsiteurlChanged(); + this.Onaddress2_longitudeChanging(value); + this._address2_longitude = value; + this.Onaddress2_longitudeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _websiteurl; - partial void OnwebsiteurlChanging(string value); - partial void OnwebsiteurlChanged(); + private global::System.Nullable _address2_longitude; + partial void Onaddress2_longitudeChanging(global::System.Nullable value); + partial void Onaddress2_longitudeChanged(); + /// + /// There are no comments for Property address2_telephone1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_telephone1 + { + get + { + return this._address2_telephone1; + } + set + { + this.Onaddress2_telephone1Changing(value); + this._address2_telephone1 = value; + this.Onaddress2_telephone1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_telephone1; + partial void Onaddress2_telephone1Changing(string value); + partial void Onaddress2_telephone1Changed(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -126105,27 +126105,27 @@ public static calendarrule Createcalendarrule(global::EMBC.ESS.Utilities.Dynamic return calendarrule; } /// - /// There are no comments for Property groupdesignator in the schema. + /// There are no comments for Property duration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string groupdesignator + public virtual global::System.Nullable duration { get { - return this._groupdesignator; + return this._duration; } set { - this.OngroupdesignatorChanging(value); - this._groupdesignator = value; - this.OngroupdesignatorChanged(); + this.OndurationChanging(value); + this._duration = value; + this.OndurationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _groupdesignator; - partial void OngroupdesignatorChanging(string value); - partial void OngroupdesignatorChanged(); + private global::System.Nullable _duration; + partial void OndurationChanging(global::System.Nullable value); + partial void OndurationChanged(); /// /// There are no comments for Property rank in the schema. /// @@ -126149,49 +126149,27 @@ public virtual string groupdesignator partial void OnrankChanging(global::System.Nullable value); partial void OnrankChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property starttime in the schema. + /// There are no comments for Property timezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable starttime + public virtual global::System.Nullable timezonecode { get { - return this._starttime; + return this._timezonecode; } set { - this.OnstarttimeChanging(value); - this._starttime = value; - this.OnstarttimeChanged(); + this.OntimezonecodeChanging(value); + this._timezonecode = value; + this.OntimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _starttime; - partial void OnstarttimeChanging(global::System.Nullable value); - partial void OnstarttimeChanged(); + private global::System.Nullable _timezonecode; + partial void OntimezonecodeChanging(global::System.Nullable value); + partial void OntimezonecodeChanged(); /// /// There are no comments for Property _serviceid_value in the schema. /// @@ -126215,27 +126193,27 @@ public virtual string groupdesignator partial void On_serviceid_valueChanging(global::System.Nullable value); partial void On_serviceid_valueChanged(); /// - /// There are no comments for Property organizationid in the schema. + /// There are no comments for Property _innercalendarid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable organizationid + public virtual global::System.Nullable _innercalendarid_value { get { - return this._organizationid; + return this.__innercalendarid_value; } set { - this.OnorganizationidChanging(value); - this._organizationid = value; - this.OnorganizationidChanged(); + this.On_innercalendarid_valueChanging(value); + this.__innercalendarid_value = value; + this.On_innercalendarid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _organizationid; - partial void OnorganizationidChanging(global::System.Nullable value); - partial void OnorganizationidChanged(); + private global::System.Nullable __innercalendarid_value; + partial void On_innercalendarid_valueChanging(global::System.Nullable value); + partial void On_innercalendarid_valueChanged(); /// /// There are no comments for Property isselected in the schema. /// @@ -126259,27 +126237,27 @@ public virtual string groupdesignator partial void OnisselectedChanging(global::System.Nullable value); partial void OnisselectedChanged(); /// - /// There are no comments for Property duration in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable duration + public virtual global::System.Nullable modifiedon { get { - return this._duration; + return this._modifiedon; } set { - this.OndurationChanging(value); - this._duration = value; - this.OndurationChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _duration; - partial void OndurationChanging(global::System.Nullable value); - partial void OndurationChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property offset in the schema. /// @@ -126325,71 +126303,71 @@ public virtual string groupdesignator partial void OntimecodeChanging(global::System.Nullable value); partial void OntimecodeChanged(); /// - /// There are no comments for Property _innercalendarid_value in the schema. + /// There are no comments for Property effectiveintervalend in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _innercalendarid_value + public virtual global::System.Nullable effectiveintervalend { get { - return this.__innercalendarid_value; + return this._effectiveintervalend; } set { - this.On_innercalendarid_valueChanging(value); - this.__innercalendarid_value = value; - this.On_innercalendarid_valueChanged(); + this.OneffectiveintervalendChanging(value); + this._effectiveintervalend = value; + this.OneffectiveintervalendChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __innercalendarid_value; - partial void On_innercalendarid_valueChanging(global::System.Nullable value); - partial void On_innercalendarid_valueChanged(); + private global::System.Nullable _effectiveintervalend; + partial void OneffectiveintervalendChanging(global::System.Nullable value); + partial void OneffectiveintervalendChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable createdon { get { - return this._modifiedon; + return this._createdon; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property extentcode in the schema. + /// There are no comments for Property endtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable extentcode + public virtual global::System.Nullable endtime { get { - return this._extentcode; + return this._endtime; } set { - this.OnextentcodeChanging(value); - this._extentcode = value; - this.OnextentcodeChanged(); + this.OnendtimeChanging(value); + this._endtime = value; + this.OnendtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _extentcode; - partial void OnextentcodeChanging(global::System.Nullable value); - partial void OnextentcodeChanged(); + private global::System.Nullable _endtime; + partial void OnendtimeChanging(global::System.Nullable value); + partial void OnendtimeChanged(); /// /// There are no comments for Property subcode in the schema. /// @@ -126413,28 +126391,6 @@ public virtual string groupdesignator partial void OnsubcodeChanging(global::System.Nullable value); partial void OnsubcodeChanged(); /// - /// There are no comments for Property isvaried in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isvaried - { - get - { - return this._isvaried; - } - set - { - this.OnisvariedChanging(value); - this._isvaried = value; - this.OnisvariedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isvaried; - partial void OnisvariedChanging(global::System.Nullable value); - partial void OnisvariedChanged(); - /// /// There are no comments for Property effectiveintervalstart in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -126457,49 +126413,49 @@ public virtual string groupdesignator partial void OneffectiveintervalstartChanging(global::System.Nullable value); partial void OneffectiveintervalstartChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property ismodified in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable ismodified { get { - return this._name; + return this._ismodified; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnismodifiedChanging(value); + this._ismodified = value; + this.OnismodifiedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _ismodified; + partial void OnismodifiedChanging(global::System.Nullable value); + partial void OnismodifiedChanged(); /// - /// There are no comments for Property endtime in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable endtime + public virtual string name { get { - return this._endtime; + return this._name; } set { - this.OnendtimeChanging(value); - this._endtime = value; - this.OnendtimeChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _endtime; - partial void OnendtimeChanging(global::System.Nullable value); - partial void OnendtimeChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -126523,27 +126479,27 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property issimple in the schema. + /// There are no comments for Property isvaried in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable issimple + public virtual global::System.Nullable isvaried { get { - return this._issimple; + return this._isvaried; } set { - this.OnissimpleChanging(value); - this._issimple = value; - this.OnissimpleChanged(); + this.OnisvariedChanging(value); + this._isvaried = value; + this.OnisvariedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _issimple; - partial void OnissimpleChanging(global::System.Nullable value); - partial void OnissimpleChanged(); + private global::System.Nullable _isvaried; + partial void OnisvariedChanging(global::System.Nullable value); + partial void OnisvariedChanged(); /// /// There are no comments for Property calendarruleid in the schema. /// @@ -126567,27 +126523,49 @@ public virtual string name partial void OncalendarruleidChanging(global::System.Nullable value); partial void OncalendarruleidChanged(); /// - /// There are no comments for Property timezonecode in the schema. + /// There are no comments for Property groupdesignator in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezonecode + public virtual string groupdesignator { get { - return this._timezonecode; + return this._groupdesignator; } set { - this.OntimezonecodeChanging(value); - this._timezonecode = value; - this.OntimezonecodeChanged(); + this.OngroupdesignatorChanging(value); + this._groupdesignator = value; + this.OngroupdesignatorChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezonecode; - partial void OntimezonecodeChanging(global::System.Nullable value); - partial void OntimezonecodeChanged(); + private string _groupdesignator; + partial void OngroupdesignatorChanging(string value); + partial void OngroupdesignatorChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property pattern in the schema. /// @@ -126633,6 +126611,28 @@ public virtual string pattern partial void OneffortChanging(global::System.Nullable value); partial void OneffortChanged(); /// + /// There are no comments for Property businessunitid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable businessunitid + { + get + { + return this._businessunitid; + } + set + { + this.OnbusinessunitidChanging(value); + this._businessunitid = value; + this.OnbusinessunitidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _businessunitid; + partial void OnbusinessunitidChanging(global::System.Nullable value); + partial void OnbusinessunitidChanged(); + /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -126655,27 +126655,27 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property ismodified in the schema. + /// There are no comments for Property extentcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismodified + public virtual global::System.Nullable extentcode { get { - return this._ismodified; + return this._extentcode; } set { - this.OnismodifiedChanging(value); - this._ismodified = value; - this.OnismodifiedChanged(); + this.OnextentcodeChanging(value); + this._extentcode = value; + this.OnextentcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismodified; - partial void OnismodifiedChanging(global::System.Nullable value); - partial void OnismodifiedChanged(); + private global::System.Nullable _extentcode; + partial void OnextentcodeChanging(global::System.Nullable value); + partial void OnextentcodeChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -126721,115 +126721,115 @@ public virtual string description partial void On_calendarid_valueChanging(global::System.Nullable value); partial void On_calendarid_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property issimple in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable issimple { get { - return this.__modifiedonbehalfby_value; + return this._issimple; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnissimpleChanging(value); + this._issimple = value; + this.OnissimpleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _issimple; + partial void OnissimpleChanging(global::System.Nullable value); + partial void OnissimpleChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property organizationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable organizationid { get { - return this.__createdonbehalfby_value; + return this._organizationid; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnorganizationidChanging(value); + this._organizationid = value; + this.OnorganizationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _organizationid; + partial void OnorganizationidChanging(global::System.Nullable value); + partial void OnorganizationidChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._versionnumber; + return this.__modifiedonbehalfby_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property effectiveintervalend in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable effectiveintervalend + public virtual global::System.Nullable versionnumber { get { - return this._effectiveintervalend; + return this._versionnumber; } set { - this.OneffectiveintervalendChanging(value); - this._effectiveintervalend = value; - this.OneffectiveintervalendChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _effectiveintervalend; - partial void OneffectiveintervalendChanging(global::System.Nullable value); - partial void OneffectiveintervalendChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property businessunitid in the schema. + /// There are no comments for Property starttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable businessunitid + public virtual global::System.Nullable starttime { get { - return this._businessunitid; + return this._starttime; } set { - this.OnbusinessunitidChanging(value); - this._businessunitid = value; - this.OnbusinessunitidChanged(); + this.OnstarttimeChanging(value); + this._starttime = value; + this.OnstarttimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _businessunitid; - partial void OnbusinessunitidChanging(global::System.Nullable value); - partial void OnbusinessunitidChanged(); + private global::System.Nullable _starttime; + partial void OnstarttimeChanging(global::System.Nullable value); + partial void OnstarttimeChanged(); /// /// There are no comments for Property calendarid in the schema. /// @@ -127766,28 +127766,6 @@ public virtual string description partial void On_holidayschedulecalendarid_valueChanging(global::System.Nullable value); partial void On_holidayschedulecalendarid_valueChanged(); /// - /// There are no comments for Property calendarid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable calendarid - { - get - { - return this._calendarid; - } - set - { - this.OncalendaridChanging(value); - this._calendarid = value; - this.OncalendaridChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _calendarid; - partial void OncalendaridChanging(global::System.Nullable value); - partial void OncalendaridChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -127832,6 +127810,28 @@ public virtual string description partial void OnissharedChanging(global::System.Nullable value); partial void OnissharedChanged(); /// + /// There are no comments for Property calendarid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable calendarid + { + get + { + return this._calendarid; + } + set + { + this.OncalendaridChanging(value); + this._calendarid = value; + this.OncalendaridChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _calendarid; + partial void OncalendaridChanging(global::System.Nullable value); + partial void OncalendaridChanged(); + /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -128566,28 +128566,6 @@ public static callbackregistration Createcallbackregistration(global::EMBC.ESS.U return callbackregistration; } /// - /// There are no comments for Property entityname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string entityname - { - get - { - return this._entityname; - } - set - { - this.OnentitynameChanging(value); - this._entityname = value; - this.OnentitynameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityname; - partial void OnentitynameChanging(string value); - partial void OnentitynameChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -128632,116 +128610,6 @@ public virtual string entityname partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property url in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string url - { - get - { - return this._url; - } - set - { - this.OnurlChanging(value); - this._url = value; - this.OnurlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _url; - partial void OnurlChanging(string value); - partial void OnurlChanged(); - /// - /// There are no comments for Property scope in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable scope - { - get - { - return this._scope; - } - set - { - this.OnscopeChanging(value); - this._scope = value; - this.OnscopeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _scope; - partial void OnscopeChanging(global::System.Nullable value); - partial void OnscopeChanged(); - /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -128764,49 +128632,115 @@ public virtual string url partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property runas in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable runas + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._runas; + return this.__createdonbehalfby_value; } set { - this.OnrunasChanging(value); - this._runas = value; - this.OnrunasChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _runas; - partial void OnrunasChanging(global::System.Nullable value); - partial void OnrunasChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual string url { get { - return this._name; + return this._url; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnurlChanging(value); + this._url = value; + this.OnurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private string _url; + partial void OnurlChanging(string value); + partial void OnurlChanged(); + /// + /// There are no comments for Property scope in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable scope + { + get + { + return this._scope; + } + set + { + this.OnscopeChanging(value); + this._scope = value; + this.OnscopeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _scope; + partial void OnscopeChanging(global::System.Nullable value); + partial void OnscopeChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -128830,6 +128764,50 @@ public virtual string name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property runas in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable runas + { + get + { + return this._runas; + } + set + { + this.OnrunasChanging(value); + this._runas = value; + this.OnrunasChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _runas; + partial void OnrunasChanging(global::System.Nullable value); + partial void OnrunasChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property version in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -128852,6 +128830,28 @@ public virtual string name partial void OnversionChanging(global::System.Nullable value); partial void OnversionChanged(); /// + /// There are no comments for Property postponeuntil in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string postponeuntil + { + get + { + return this._postponeuntil; + } + set + { + this.OnpostponeuntilChanging(value); + this._postponeuntil = value; + this.OnpostponeuntilChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _postponeuntil; + partial void OnpostponeuntilChanging(string value); + partial void OnpostponeuntilChanged(); + /// /// There are no comments for Property message in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -128940,27 +128940,27 @@ public virtual string filteringattributes partial void OnfilteringattributesChanging(string value); partial void OnfilteringattributesChanged(); /// - /// There are no comments for Property postponeuntil in the schema. + /// There are no comments for Property entityname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string postponeuntil + public virtual string entityname { get { - return this._postponeuntil; + return this._entityname; } set { - this.OnpostponeuntilChanging(value); - this._postponeuntil = value; - this.OnpostponeuntilChanged(); + this.OnentitynameChanging(value); + this._entityname = value; + this.OnentitynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _postponeuntil; - partial void OnpostponeuntilChanging(string value); - partial void OnpostponeuntilChanged(); + private string _entityname; + partial void OnentitynameChanging(string value); + partial void OnentitynameChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -132229,27 +132229,27 @@ public virtual string category partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property budgetedcost in the schema. + /// There are no comments for Property actualcost in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable budgetedcost + public virtual global::System.Nullable actualcost { get { - return this._budgetedcost; + return this._actualcost; } set { - this.OnbudgetedcostChanging(value); - this._budgetedcost = value; - this.OnbudgetedcostChanged(); + this.OnactualcostChanging(value); + this._actualcost = value; + this.OnactualcostChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _budgetedcost; - partial void OnbudgetedcostChanging(global::System.Nullable value); - partial void OnbudgetedcostChanged(); + private global::System.Nullable _actualcost; + partial void OnactualcostChanging(global::System.Nullable value); + partial void OnactualcostChanged(); /// /// There are no comments for Property typecode in the schema. /// @@ -132273,71 +132273,71 @@ public virtual string category partial void OntypecodeChanging(global::System.Nullable value); partial void OntypecodeChanged(); /// - /// There are no comments for Property actualcost in the schema. + /// There are no comments for Property budgetedcost in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable actualcost + public virtual global::System.Nullable budgetedcost { get { - return this._actualcost; + return this._budgetedcost; } set { - this.OnactualcostChanging(value); - this._actualcost = value; - this.OnactualcostChanged(); + this.OnbudgetedcostChanging(value); + this._budgetedcost = value; + this.OnbudgetedcostChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualcost; - partial void OnactualcostChanging(global::System.Nullable value); - partial void OnactualcostChanged(); + private global::System.Nullable _budgetedcost; + partial void OnbudgetedcostChanging(global::System.Nullable value); + partial void OnbudgetedcostChanged(); /// - /// There are no comments for Property budgetedcost_base in the schema. + /// There are no comments for Property subcategory in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable budgetedcost_base + public virtual string subcategory { get { - return this._budgetedcost_base; + return this._subcategory; } set { - this.Onbudgetedcost_baseChanging(value); - this._budgetedcost_base = value; - this.Onbudgetedcost_baseChanged(); + this.OnsubcategoryChanging(value); + this._subcategory = value; + this.OnsubcategoryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _budgetedcost_base; - partial void Onbudgetedcost_baseChanging(global::System.Nullable value); - partial void Onbudgetedcost_baseChanged(); + private string _subcategory; + partial void OnsubcategoryChanging(string value); + partial void OnsubcategoryChanged(); /// - /// There are no comments for Property subcategory in the schema. + /// There are no comments for Property budgetedcost_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string subcategory + public virtual global::System.Nullable budgetedcost_base { get { - return this._subcategory; + return this._budgetedcost_base; } set { - this.OnsubcategoryChanging(value); - this._subcategory = value; - this.OnsubcategoryChanged(); + this.Onbudgetedcost_baseChanging(value); + this._budgetedcost_base = value; + this.Onbudgetedcost_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _subcategory; - partial void OnsubcategoryChanging(string value); - partial void OnsubcategoryChanged(); + private global::System.Nullable _budgetedcost_base; + partial void Onbudgetedcost_baseChanging(global::System.Nullable value); + partial void Onbudgetedcost_baseChanged(); /// /// There are no comments for Property excludeifcontactedinxdays in the schema. /// @@ -133775,27 +133775,49 @@ public static campaignactivityitem Createcampaignactivityitem(global::EMBC.ESS.U return campaignactivityitem; } /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property itemid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable itemid { get { - return this._versionnumber; + return this._itemid; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnitemidChanging(value); + this._itemid = value; + this.OnitemidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _itemid; + partial void OnitemidChanging(global::System.Nullable value); + partial void OnitemidChanged(); + /// + /// There are no comments for Property owningbusinessunit in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable owningbusinessunit + { + get + { + return this._owningbusinessunit; + } + set + { + this.OnowningbusinessunitChanging(value); + this._owningbusinessunit = value; + this.OnowningbusinessunitChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _owningbusinessunit; + partial void OnowningbusinessunitChanging(global::System.Nullable value); + partial void OnowningbusinessunitChanged(); /// /// There are no comments for Property owninguser in the schema. /// @@ -133819,93 +133841,93 @@ public static campaignactivityitem Createcampaignactivityitem(global::EMBC.ESS.U partial void OnowninguserChanging(global::System.Nullable value); partial void OnowninguserChanged(); /// - /// There are no comments for Property itemobjecttypecode in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string itemobjecttypecode + public virtual string name { get { - return this._itemobjecttypecode; + return this._name; } set { - this.OnitemobjecttypecodeChanging(value); - this._itemobjecttypecode = value; - this.OnitemobjecttypecodeChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _itemobjecttypecode; - partial void OnitemobjecttypecodeChanging(string value); - partial void OnitemobjecttypecodeChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property itemid in the schema. + /// There are no comments for Property itemobjecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable itemid + public virtual string itemobjecttypecode { get { - return this._itemid; + return this._itemobjecttypecode; } set { - this.OnitemidChanging(value); - this._itemid = value; - this.OnitemidChanged(); + this.OnitemobjecttypecodeChanging(value); + this._itemobjecttypecode = value; + this.OnitemobjecttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _itemid; - partial void OnitemidChanging(global::System.Nullable value); - partial void OnitemidChanged(); + private string _itemobjecttypecode; + partial void OnitemobjecttypecodeChanging(string value); + partial void OnitemobjecttypecodeChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable versionnumber { get { - return this._timezoneruleversionnumber; + return this._versionnumber; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable importsequencenumber { get { - return this._name; + return this._importsequencenumber; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property campaignactivityitemid in the schema. /// @@ -133973,28 +133995,6 @@ public virtual string name partial void On_campaignactivityid_valueChanging(global::System.Nullable value); partial void On_campaignactivityid_valueChanged(); /// - /// There are no comments for Property owningbusinessunit in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable owningbusinessunit - { - get - { - return this._owningbusinessunit; - } - set - { - this.OnowningbusinessunitChanging(value); - this._owningbusinessunit = value; - this.OnowningbusinessunitChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _owningbusinessunit; - partial void OnowningbusinessunitChanging(global::System.Nullable value); - partial void OnowningbusinessunitChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -134017,49 +134017,49 @@ public virtual string name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._utcconversiontimezonecode; + return this._timezoneruleversionnumber; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._importsequencenumber; + return this._utcconversiontimezonecode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property campaignactivityitem_AsyncOperations in the schema. /// @@ -134334,27 +134334,27 @@ public partial class campaignitem : crmbaseentity partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _campaignid_value in the schema. + /// There are no comments for Property entityid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _campaignid_value + public virtual global::System.Nullable entityid { get { - return this.__campaignid_value; + return this._entityid; } set { - this.On_campaignid_valueChanging(value); - this.__campaignid_value = value; - this.On_campaignid_valueChanged(); + this.OnentityidChanging(value); + this._entityid = value; + this.OnentityidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __campaignid_value; - partial void On_campaignid_valueChanging(global::System.Nullable value); - partial void On_campaignid_valueChanged(); + private global::System.Nullable _entityid; + partial void OnentityidChanging(global::System.Nullable value); + partial void OnentityidChanged(); /// /// There are no comments for Property owningbusinessunit in the schema. /// @@ -134422,28 +134422,6 @@ public partial class campaignitem : crmbaseentity partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -134466,27 +134444,27 @@ public virtual string name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property entityid in the schema. + /// There are no comments for Property _campaignid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityid + public virtual global::System.Nullable _campaignid_value { get { - return this._entityid; + return this.__campaignid_value; } set { - this.OnentityidChanging(value); - this._entityid = value; - this.OnentityidChanged(); + this.On_campaignid_valueChanging(value); + this.__campaignid_value = value; + this.On_campaignid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityid; - partial void OnentityidChanging(global::System.Nullable value); - partial void OnentityidChanged(); + private global::System.Nullable __campaignid_value; + partial void On_campaignid_valueChanging(global::System.Nullable value); + partial void On_campaignid_valueChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -134532,6 +134510,28 @@ public virtual string entitytype partial void OnentitytypeChanging(string value); partial void OnentitytypeChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -137898,6 +137898,28 @@ public virtual string companyname partial void OncompanynameChanging(string value); partial void OncompanynameChanged(); /// + /// There are no comments for Property yomicompanyname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string yomicompanyname + { + get + { + return this._yomicompanyname; + } + set + { + this.OnyomicompanynameChanging(value); + this._yomicompanyname = value; + this.OnyomicompanynameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _yomicompanyname; + partial void OnyomicompanynameChanging(string value); + partial void OnyomicompanynameChanged(); + /// /// There are no comments for Property promotioncodename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -138074,28 +138096,6 @@ public virtual string yomilastname partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property yomicompanyname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string yomicompanyname - { - get - { - return this._yomicompanyname; - } - set - { - this.OnyomicompanynameChanging(value); - this._yomicompanyname = value; - this.OnyomicompanynameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _yomicompanyname; - partial void OnyomicompanynameChanging(string value); - partial void OnyomicompanynameChanged(); - /// /// There are no comments for Property category in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -140439,248 +140439,6 @@ public static campaign Createcampaign(global::EMBC.ESS.Utilities.Dynamics.Micros return campaign; } /// - /// There are no comments for Property codename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string codename - { - get - { - return this._codename; - } - set - { - this.OncodenameChanging(value); - this._codename = value; - this.OncodenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _codename; - partial void OncodenameChanging(string value); - partial void OncodenameChanged(); - /// - /// There are no comments for Property expectedresponse in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable expectedresponse - { - get - { - return this._expectedresponse; - } - set - { - this.OnexpectedresponseChanging(value); - this._expectedresponse = value; - this.OnexpectedresponseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expectedresponse; - partial void OnexpectedresponseChanging(global::System.Nullable value); - partial void OnexpectedresponseChanged(); - /// - /// There are no comments for Property message in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string message - { - get - { - return this._message; - } - set - { - this.OnmessageChanging(value); - this._message = value; - this.OnmessageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _message; - partial void OnmessageChanging(string value); - partial void OnmessageChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property totalactualcost_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable totalactualcost_base - { - get - { - return this._totalactualcost_base; - } - set - { - this.Ontotalactualcost_baseChanging(value); - this._totalactualcost_base = value; - this.Ontotalactualcost_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totalactualcost_base; - partial void Ontotalactualcost_baseChanging(global::System.Nullable value); - partial void Ontotalactualcost_baseChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property othercost in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable othercost - { - get - { - return this._othercost; - } - set - { - this.OnothercostChanging(value); - this._othercost = value; - this.OnothercostChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _othercost; - partial void OnothercostChanging(global::System.Nullable value); - partial void OnothercostChanged(); - /// - /// There are no comments for Property typecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable typecode - { - get - { - return this._typecode; - } - set - { - this.OntypecodeChanging(value); - this._typecode = value; - this.OntypecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _typecode; - partial void OntypecodeChanging(global::System.Nullable value); - partial void OntypecodeChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property campaignid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable campaignid - { - get - { - return this._campaignid; - } - set - { - this.OncampaignidChanging(value); - this._campaignid = value; - this.OncampaignidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _campaignid; - partial void OncampaignidChanging(global::System.Nullable value); - partial void OncampaignidChanged(); - /// /// There are no comments for Property tmpregardingobjectid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -140703,71 +140461,291 @@ public virtual string tmpregardingobjectid partial void OntmpregardingobjectidChanging(string value); partial void OntmpregardingobjectidChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property expectedresponse in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable expectedresponse { get { - return this.__owningteam_value; + return this._expectedresponse; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnexpectedresponseChanging(value); + this._expectedresponse = value; + this.OnexpectedresponseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _expectedresponse; + partial void OnexpectedresponseChanging(global::System.Nullable value); + partial void OnexpectedresponseChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property message in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual string message { get { - return this._entityimage_url; + return this._message; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.OnmessageChanging(value); + this._message = value; + this.OnmessageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private string _message; + partial void OnmessageChanging(string value); + partial void OnmessageChanged(); /// - /// There are no comments for Property budgetedcost in the schema. + /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable budgetedcost + public virtual global::System.Nullable processid { get { - return this._budgetedcost; + return this._processid; } set { - this.OnbudgetedcostChanging(value); - this._budgetedcost = value; - this.OnbudgetedcostChanged(); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _budgetedcost; - partial void OnbudgetedcostChanging(global::System.Nullable value); - partial void OnbudgetedcostChanged(); + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property stageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable stageid + { + get + { + return this._stageid; + } + set + { + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _stageid; + partial void OnstageidChanging(global::System.Nullable value); + partial void OnstageidChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property othercost in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable othercost + { + get + { + return this._othercost; + } + set + { + this.OnothercostChanging(value); + this._othercost = value; + this.OnothercostChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _othercost; + partial void OnothercostChanging(global::System.Nullable value); + partial void OnothercostChanged(); + /// + /// There are no comments for Property typecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable typecode + { + get + { + return this._typecode; + } + set + { + this.OntypecodeChanging(value); + this._typecode = value; + this.OntypecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _typecode; + partial void OntypecodeChanging(global::System.Nullable value); + partial void OntypecodeChanged(); + /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property expectedrevenue_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable expectedrevenue_base + { + get + { + return this._expectedrevenue_base; + } + set + { + this.Onexpectedrevenue_baseChanging(value); + this._expectedrevenue_base = value; + this.Onexpectedrevenue_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _expectedrevenue_base; + partial void Onexpectedrevenue_baseChanging(global::System.Nullable value); + partial void Onexpectedrevenue_baseChanged(); + /// + /// There are no comments for Property totalactualcost_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable totalactualcost_base + { + get + { + return this._totalactualcost_base; + } + set + { + this.Ontotalactualcost_baseChanging(value); + this._totalactualcost_base = value; + this.Ontotalactualcost_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _totalactualcost_base; + partial void Ontotalactualcost_baseChanging(global::System.Nullable value); + partial void Ontotalactualcost_baseChanged(); + /// + /// There are no comments for Property totalactualcost in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable totalactualcost + { + get + { + return this._totalactualcost; + } + set + { + this.OntotalactualcostChanging(value); + this._totalactualcost = value; + this.OntotalactualcostChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _totalactualcost; + partial void OntotalactualcostChanging(global::System.Nullable value); + partial void OntotalactualcostChanged(); + /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property entityimage_timestamp in the schema. /// @@ -140857,27 +140835,27 @@ public virtual string entityimage_url partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property actualend in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable actualend { get { - return this._utcconversiontimezonecode; + return this._actualend; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnactualendChanging(value); + this._actualend = value; + this.OnactualendChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _actualend; + partial void OnactualendChanging(global::System.Nullable value); + partial void OnactualendChanged(); /// /// There are no comments for Property emailaddress in the schema. /// @@ -140945,6 +140923,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property traversedpath in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string traversedpath + { + get + { + return this._traversedpath; + } + set + { + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -140967,6 +140967,50 @@ public virtual string name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// + /// There are no comments for Property budgetedcost_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable budgetedcost_base + { + get + { + return this._budgetedcost_base; + } + set + { + this.Onbudgetedcost_baseChanging(value); + this._budgetedcost_base = value; + this.Onbudgetedcost_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _budgetedcost_base; + partial void Onbudgetedcost_baseChanging(global::System.Nullable value); + partial void Onbudgetedcost_baseChanged(); + /// /// There are no comments for Property totalcampaignactivityactualcost_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -141011,27 +141055,27 @@ public virtual string name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property expectedrevenue_base in the schema. + /// There are no comments for Property campaignid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable expectedrevenue_base + public virtual global::System.Nullable campaignid { get { - return this._expectedrevenue_base; + return this._campaignid; } set { - this.Onexpectedrevenue_baseChanging(value); - this._expectedrevenue_base = value; - this.Onexpectedrevenue_baseChanged(); + this.OncampaignidChanging(value); + this._campaignid = value; + this.OncampaignidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expectedrevenue_base; - partial void Onexpectedrevenue_baseChanging(global::System.Nullable value); - partial void Onexpectedrevenue_baseChanged(); + private global::System.Nullable _campaignid; + partial void OncampaignidChanging(global::System.Nullable value); + partial void OncampaignidChanged(); /// /// There are no comments for Property entityimageid in the schema. /// @@ -141055,71 +141099,71 @@ public virtual string name partial void OnentityimageidChanging(global::System.Nullable value); partial void OnentityimageidChanged(); /// - /// There are no comments for Property stageid in the schema. + /// There are no comments for Property codename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable stageid + public virtual string codename { get { - return this._stageid; + return this._codename; } set { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); + this.OncodenameChanging(value); + this._codename = value; + this.OncodenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stageid; - partial void OnstageidChanging(global::System.Nullable value); - partial void OnstageidChanged(); + private string _codename; + partial void OncodenameChanging(string value); + partial void OncodenameChanged(); /// - /// There are no comments for Property budgetedcost_base in the schema. + /// There are no comments for Property istemplate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable budgetedcost_base + public virtual global::System.Nullable istemplate { get { - return this._budgetedcost_base; + return this._istemplate; } set { - this.Onbudgetedcost_baseChanging(value); - this._budgetedcost_base = value; - this.Onbudgetedcost_baseChanged(); + this.OnistemplateChanging(value); + this._istemplate = value; + this.OnistemplateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _budgetedcost_base; - partial void Onbudgetedcost_baseChanging(global::System.Nullable value); - partial void Onbudgetedcost_baseChanged(); + private global::System.Nullable _istemplate; + partial void OnistemplateChanging(global::System.Nullable value); + partial void OnistemplateChanged(); /// - /// There are no comments for Property processid in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processid + public virtual string entityimage_url { get { - return this._processid; + return this._entityimage_url; } set { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// /// There are no comments for Property othercost_base in the schema. /// @@ -141187,49 +141231,49 @@ public virtual string name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property actualstart in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable actualstart + public virtual global::System.Nullable _createdby_value { get { - return this._actualstart; + return this.__createdby_value; } set { - this.OnactualstartChanging(value); - this._actualstart = value; - this.OnactualstartChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualstart; - partial void OnactualstartChanging(global::System.Nullable value); - partial void OnactualstartChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property actualstart in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable actualstart { get { - return this._statuscode; + return this._actualstart; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnactualstartChanging(value); + this._actualstart = value; + this.OnactualstartChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _actualstart; + partial void OnactualstartChanging(global::System.Nullable value); + partial void OnactualstartChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -141297,6 +141341,28 @@ public virtual string name partial void On_pricelistid_valueChanging(global::System.Nullable value); partial void On_pricelistid_valueChanged(); /// + /// There are no comments for Property proposedend in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable proposedend + { + get + { + return this._proposedend; + } + set + { + this.OnproposedendChanging(value); + this._proposedend = value; + this.OnproposedendChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _proposedend; + partial void OnproposedendChanging(global::System.Nullable value); + partial void OnproposedendChanged(); + /// /// There are no comments for Property objective in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -141429,71 +141495,27 @@ public virtual string promotioncodename partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property actualend in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable actualend - { - get - { - return this._actualend; - } - set - { - this.OnactualendChanging(value); - this._actualend = value; - this.OnactualendChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualend; - partial void OnactualendChanging(global::System.Nullable value); - partial void OnactualendChanged(); - /// - /// There are no comments for Property traversedpath in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string traversedpath - { - get - { - return this._traversedpath; - } - set - { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); - /// - /// There are no comments for Property proposedend in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable proposedend + public virtual global::System.Nullable modifiedon { get { - return this._proposedend; + return this._modifiedon; } set { - this.OnproposedendChanging(value); - this._proposedend = value; - this.OnproposedendChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _proposedend; - partial void OnproposedendChanging(global::System.Nullable value); - partial void OnproposedendChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property entityimage in the schema. /// @@ -141517,49 +141539,49 @@ public virtual byte[] entityimage partial void OnentityimageChanging(byte[] value); partial void OnentityimageChanged(); /// - /// There are no comments for Property istemplate in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable istemplate + public virtual global::System.Nullable statuscode { get { - return this._istemplate; + return this._statuscode; } set { - this.OnistemplateChanging(value); - this._istemplate = value; - this.OnistemplateChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _istemplate; - partial void OnistemplateChanging(global::System.Nullable value); - partial void OnistemplateChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property totalactualcost in the schema. + /// There are no comments for Property budgetedcost in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable totalactualcost + public virtual global::System.Nullable budgetedcost { get { - return this._totalactualcost; + return this._budgetedcost; } set { - this.OntotalactualcostChanging(value); - this._totalactualcost = value; - this.OntotalactualcostChanged(); + this.OnbudgetedcostChanging(value); + this._budgetedcost = value; + this.OnbudgetedcostChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totalactualcost; - partial void OntotalactualcostChanging(global::System.Nullable value); - partial void OntotalactualcostChanged(); + private global::System.Nullable _budgetedcost; + partial void OnbudgetedcostChanging(global::System.Nullable value); + partial void OnbudgetedcostChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -141583,28 +141605,6 @@ public virtual byte[] entityimage partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property campaign_abs_scheduledprocessexecutions in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -143070,28 +143070,6 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property description in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string description - { - get - { - return this._description; - } - set - { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); - /// /// There are no comments for Property mediumicon_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -143136,28 +143114,6 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -143246,71 +143202,49 @@ public virtual string appversion partial void OnappversionChanging(string value); partial void OnappversionChanged(); /// - /// There are no comments for Property smallicon_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string smallicon_name - { - get - { - return this._smallicon_name; - } - set - { - this.Onsmallicon_nameChanging(value); - this._smallicon_name = value; - this.Onsmallicon_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _smallicon_name; - partial void Onsmallicon_nameChanging(string value); - partial void Onsmallicon_nameChanged(); - /// - /// There are no comments for Property isheroapp in the schema. + /// There are no comments for Property largeicon_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isheroapp + public virtual string largeicon_name { get { - return this._isheroapp; + return this._largeicon_name; } set { - this.OnisheroappChanging(value); - this._isheroapp = value; - this.OnisheroappChanged(); + this.Onlargeicon_nameChanging(value); + this._largeicon_name = value; + this.Onlargeicon_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isheroapp; - partial void OnisheroappChanging(global::System.Nullable value); - partial void OnisheroappChanged(); + private string _largeicon_name; + partial void Onlargeicon_nameChanging(string value); + partial void Onlargeicon_nameChanged(); /// - /// There are no comments for Property galleryitemid in the schema. + /// There are no comments for Property createdtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string galleryitemid + public virtual global::System.Nullable createdtime { get { - return this._galleryitemid; + return this._createdtime; } set { - this.OngalleryitemidChanging(value); - this._galleryitemid = value; - this.OngalleryitemidChanged(); + this.OncreatedtimeChanging(value); + this._createdtime = value; + this.OncreatedtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _galleryitemid; - partial void OngalleryitemidChanging(string value); - partial void OngalleryitemidChanged(); + private global::System.Nullable _createdtime; + partial void OncreatedtimeChanging(global::System.Nullable value); + partial void OncreatedtimeChanged(); /// /// There are no comments for Property createdbyclientversion in the schema. /// @@ -143334,115 +143268,115 @@ public virtual string createdbyclientversion partial void OncreatedbyclientversionChanging(string value); partial void OncreatedbyclientversionChanged(); /// - /// There are no comments for Property embeddedapp in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string embeddedapp + public virtual global::System.Nullable _owningteam_value { get { - return this._embeddedapp; + return this.__owningteam_value; } set { - this.OnembeddedappChanging(value); - this._embeddedapp = value; - this.OnembeddedappChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _embeddedapp; - partial void OnembeddedappChanging(string value); - partial void OnembeddedappChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property tags in the schema. + /// There are no comments for Property canvasappid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string tags + public virtual global::System.Nullable canvasappid { get { - return this._tags; + return this._canvasappid; } set { - this.OntagsChanging(value); - this._tags = value; - this.OntagsChanged(); + this.OncanvasappidChanging(value); + this._canvasappid = value; + this.OncanvasappidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _tags; - partial void OntagsChanging(string value); - partial void OntagsChanged(); + private global::System.Nullable _canvasappid; + partial void OncanvasappidChanging(global::System.Nullable value); + partial void OncanvasappidChanged(); /// - /// There are no comments for Property large_icon in the schema. + /// There are no comments for Property connectionreferences in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] large_icon + public virtual string connectionreferences { get { - return this._large_icon; + return this._connectionreferences; } set { - this.Onlarge_iconChanging(value); - this._large_icon = value; - this.Onlarge_iconChanged(); + this.OnconnectionreferencesChanging(value); + this._connectionreferences = value; + this.OnconnectionreferencesChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _large_icon; - partial void Onlarge_iconChanging(byte[] value); - partial void Onlarge_iconChanged(); + private string _connectionreferences; + partial void OnconnectionreferencesChanging(string value); + partial void OnconnectionreferencesChanged(); /// - /// There are no comments for Property assets_name in the schema. + /// There are no comments for Property databasereferences in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string assets_name + public virtual string databasereferences { get { - return this._assets_name; + return this._databasereferences; } set { - this.Onassets_nameChanging(value); - this._assets_name = value; - this.Onassets_nameChanged(); + this.OndatabasereferencesChanging(value); + this._databasereferences = value; + this.OndatabasereferencesChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _assets_name; - partial void Onassets_nameChanging(string value); - partial void Onassets_nameChanged(); + private string _databasereferences; + partial void OndatabasereferencesChanging(string value); + partial void OndatabasereferencesChanged(); /// - /// There are no comments for Property largeicon_name in the schema. + /// There are no comments for Property assets_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string largeicon_name + public virtual string assets_name { get { - return this._largeicon_name; + return this._assets_name; } set { - this.Onlargeicon_nameChanging(value); - this._largeicon_name = value; - this.Onlargeicon_nameChanged(); + this.Onassets_nameChanging(value); + this._assets_name = value; + this.Onassets_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _largeicon_name; - partial void Onlargeicon_nameChanging(string value); - partial void Onlargeicon_nameChanged(); + private string _assets_name; + partial void Onassets_nameChanging(string value); + partial void Onassets_nameChanged(); /// /// There are no comments for Property admincontrolbypassconsent in the schema. /// @@ -143466,27 +143400,27 @@ public virtual string largeicon_name partial void OnadmincontrolbypassconsentChanging(global::System.Nullable value); partial void OnadmincontrolbypassconsentChanged(); /// - /// There are no comments for Property document_name in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string document_name + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._document_name; + return this.__owningbusinessunit_value; } set { - this.Ondocument_nameChanging(value); - this._document_name = value; - this.Ondocument_nameChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _document_name; - partial void Ondocument_nameChanging(string value); - partial void Ondocument_nameChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property teamsicon_name in the schema. /// @@ -143532,203 +143466,181 @@ public virtual string teamsicon_name partial void OnlastmodifiedtimeChanging(global::System.Nullable value); partial void OnlastmodifiedtimeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property galleryitemid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual string galleryitemid { get { - return this._componentstate; + return this._galleryitemid; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OngalleryitemidChanging(value); + this._galleryitemid = value; + this.OngalleryitemidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private string _galleryitemid; + partial void OngalleryitemidChanging(string value); + partial void OngalleryitemidChanged(); /// - /// There are no comments for Property bypassconsent in the schema. + /// There are no comments for Property embeddedapp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable bypassconsent + public virtual string embeddedapp { get { - return this._bypassconsent; + return this._embeddedapp; } set { - this.OnbypassconsentChanging(value); - this._bypassconsent = value; - this.OnbypassconsentChanged(); + this.OnembeddedappChanging(value); + this._embeddedapp = value; + this.OnembeddedappChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _bypassconsent; - partial void OnbypassconsentChanging(global::System.Nullable value); - partial void OnbypassconsentChanged(); + private string _embeddedapp; + partial void OnembeddedappChanging(string value); + partial void OnembeddedappChanged(); /// - /// There are no comments for Property wide_icon in the schema. + /// There are no comments for Property appcomponents in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] wide_icon + public virtual string appcomponents { get { - return this._wide_icon; + return this._appcomponents; } set { - this.Onwide_iconChanging(value); - this._wide_icon = value; - this.Onwide_iconChanged(); + this.OnappcomponentsChanging(value); + this._appcomponents = value; + this.OnappcomponentsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _wide_icon; - partial void Onwide_iconChanging(byte[] value); - partial void Onwide_iconChanged(); + private string _appcomponents; + partial void OnappcomponentsChanging(string value); + partial void OnappcomponentsChanged(); /// - /// There are no comments for Property aadlastpublishedbyid in the schema. + /// There are no comments for Property status in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string aadlastpublishedbyid + public virtual string status { get { - return this._aadlastpublishedbyid; + return this._status; } set { - this.OnaadlastpublishedbyidChanging(value); - this._aadlastpublishedbyid = value; - this.OnaadlastpublishedbyidChanged(); + this.OnstatusChanging(value); + this._status = value; + this.OnstatusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _aadlastpublishedbyid; - partial void OnaadlastpublishedbyidChanging(string value); - partial void OnaadlastpublishedbyidChanged(); + private string _status; + partial void OnstatusChanging(string value); + partial void OnstatusChanged(); /// - /// There are no comments for Property appcomponents in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string appcomponents + public virtual string description { get { - return this._appcomponents; + return this._description; } set { - this.OnappcomponentsChanging(value); - this._appcomponents = value; - this.OnappcomponentsChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _appcomponents; - partial void OnappcomponentsChanging(string value); - partial void OnappcomponentsChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// - /// There are no comments for Property background_image in the schema. + /// There are no comments for Property medium_icon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] background_image + public virtual byte[] medium_icon { get { - return this._background_image; + return this._medium_icon; } set { - this.Onbackground_imageChanging(value); - this._background_image = value; - this.Onbackground_imageChanged(); + this.Onmedium_iconChanging(value); + this._medium_icon = value; + this.Onmedium_iconChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _background_image; - partial void Onbackground_imageChanging(byte[] value); - partial void Onbackground_imageChanged(); + private byte[] _medium_icon; + partial void Onmedium_iconChanging(byte[] value); + partial void Onmedium_iconChanged(); /// - /// There are no comments for Property connectionreferences in the schema. + /// There are no comments for Property isheroapp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string connectionreferences + public virtual global::System.Nullable isheroapp { get { - return this._connectionreferences; + return this._isheroapp; } set { - this.OnconnectionreferencesChanging(value); - this._connectionreferences = value; - this.OnconnectionreferencesChanged(); + this.OnisheroappChanging(value); + this._isheroapp = value; + this.OnisheroappChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _connectionreferences; - partial void OnconnectionreferencesChanging(string value); - partial void OnconnectionreferencesChanged(); + private global::System.Nullable _isheroapp; + partial void OnisheroappChanging(global::System.Nullable value); + partial void OnisheroappChanged(); /// - /// There are no comments for Property medium_icon in the schema. + /// There are no comments for Property document_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] medium_icon + public virtual string document_name { get { - return this._medium_icon; + return this._document_name; } set { - this.Onmedium_iconChanging(value); - this._medium_icon = value; - this.Onmedium_iconChanged(); + this.Ondocument_nameChanging(value); + this._document_name = value; + this.Ondocument_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _medium_icon; - partial void Onmedium_iconChanging(byte[] value); - partial void Onmedium_iconChanged(); + private string _document_name; + partial void Ondocument_nameChanging(string value); + partial void Ondocument_nameChanged(); /// /// There are no comments for Property aadlastmodifiedbyid in the schema. /// @@ -143774,49 +143686,27 @@ public virtual byte[] document partial void OndocumentChanging(byte[] value); partial void OndocumentChanged(); /// - /// There are no comments for Property commitmessage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string commitmessage - { - get - { - return this._commitmessage; - } - set - { - this.OncommitmessageChanging(value); - this._commitmessage = value; - this.OncommitmessageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _commitmessage; - partial void OncommitmessageChanging(string value); - partial void OncommitmessageChanged(); - /// - /// There are no comments for Property databasereferences in the schema. + /// There are no comments for Property displayname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string databasereferences + public virtual string displayname { get { - return this._databasereferences; + return this._displayname; } set { - this.OndatabasereferencesChanging(value); - this._databasereferences = value; - this.OndatabasereferencesChanged(); + this.OndisplaynameChanging(value); + this._displayname = value; + this.OndisplaynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _databasereferences; - partial void OndatabasereferencesChanging(string value); - partial void OndatabasereferencesChanged(); + private string _displayname; + partial void OndisplaynameChanging(string value); + partial void OndisplaynameChanged(); /// /// There are no comments for Property canvasapptype in the schema. /// @@ -143906,27 +143796,71 @@ public virtual string minclientversion partial void OniscdsupgradedChanging(global::System.Nullable value); partial void OniscdsupgradedChanged(); /// - /// There are no comments for Property canvasappid in the schema. + /// There are no comments for Property tags in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable canvasappid + public virtual string tags { get { - return this._canvasappid; + return this._tags; } set { - this.OncanvasappidChanging(value); - this._canvasappid = value; - this.OncanvasappidChanged(); + this.OntagsChanging(value); + this._tags = value; + this.OntagsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _canvasappid; - partial void OncanvasappidChanging(global::System.Nullable value); - partial void OncanvasappidChanged(); + private string _tags; + partial void OntagsChanging(string value); + partial void OntagsChanged(); + /// + /// There are no comments for Property teams_icon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual byte[] teams_icon + { + get + { + return this._teams_icon; + } + set + { + this.Onteams_iconChanging(value); + this._teams_icon = value; + this.Onteams_iconChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private byte[] _teams_icon; + partial void Onteams_iconChanging(byte[] value); + partial void Onteams_iconChanged(); + /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property canconsumeapppass in the schema. /// @@ -143950,27 +143884,49 @@ public virtual string minclientversion partial void OncanconsumeapppassChanging(global::System.Nullable value); partial void OncanconsumeapppassChanged(); /// - /// There are no comments for Property createdtime in the schema. + /// There are no comments for Property commitmessage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdtime + public virtual string commitmessage { get { - return this._createdtime; + return this._commitmessage; } set { - this.OncreatedtimeChanging(value); - this._createdtime = value; - this.OncreatedtimeChanged(); + this.OncommitmessageChanging(value); + this._commitmessage = value; + this.OncommitmessageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdtime; - partial void OncreatedtimeChanging(global::System.Nullable value); - partial void OncreatedtimeChanged(); + private string _commitmessage; + partial void OncommitmessageChanging(string value); + partial void OncommitmessageChanged(); + /// + /// There are no comments for Property appcomponentdependencies in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string appcomponentdependencies + { + get + { + return this._appcomponentdependencies; + } + set + { + this.OnappcomponentdependenciesChanging(value); + this._appcomponentdependencies = value; + this.OnappcomponentdependenciesChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _appcomponentdependencies; + partial void OnappcomponentdependenciesChanging(string value); + partial void OnappcomponentdependenciesChanged(); /// /// There are no comments for Property isfeaturedapp in the schema. /// @@ -144038,27 +143994,27 @@ public virtual byte[] small_icon partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property displayname in the schema. + /// There are no comments for Property large_icon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string displayname + public virtual byte[] large_icon { get { - return this._displayname; + return this._large_icon; } set { - this.OndisplaynameChanging(value); - this._displayname = value; - this.OndisplaynameChanged(); + this.Onlarge_iconChanging(value); + this._large_icon = value; + this.Onlarge_iconChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _displayname; - partial void OndisplaynameChanging(string value); - partial void OndisplaynameChanged(); + private byte[] _large_icon; + partial void Onlarge_iconChanging(byte[] value); + partial void Onlarge_iconChanged(); /// /// There are no comments for Property assets in the schema. /// @@ -144082,49 +144038,71 @@ public virtual byte[] assets partial void OnassetsChanging(byte[] value); partial void OnassetsChanged(); /// - /// There are no comments for Property teams_icon in the schema. + /// There are no comments for Property smallicon_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] teams_icon + public virtual string smallicon_name { get { - return this._teams_icon; + return this._smallicon_name; } set { - this.Onteams_iconChanging(value); - this._teams_icon = value; - this.Onteams_iconChanged(); + this.Onsmallicon_nameChanging(value); + this._smallicon_name = value; + this.Onsmallicon_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _teams_icon; - partial void Onteams_iconChanging(byte[] value); - partial void Onteams_iconChanged(); + private string _smallicon_name; + partial void Onsmallicon_nameChanging(string value); + partial void Onsmallicon_nameChanged(); /// - /// There are no comments for Property appcomponentdependencies in the schema. + /// There are no comments for Property aadlastpublishedbyid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string appcomponentdependencies + public virtual string aadlastpublishedbyid { get { - return this._appcomponentdependencies; + return this._aadlastpublishedbyid; } set { - this.OnappcomponentdependenciesChanging(value); - this._appcomponentdependencies = value; - this.OnappcomponentdependenciesChanged(); + this.OnaadlastpublishedbyidChanging(value); + this._aadlastpublishedbyid = value; + this.OnaadlastpublishedbyidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _appcomponentdependencies; - partial void OnappcomponentdependenciesChanging(string value); - partial void OnappcomponentdependenciesChanged(); + private string _aadlastpublishedbyid; + partial void OnaadlastpublishedbyidChanging(string value); + partial void OnaadlastpublishedbyidChanged(); + /// + /// There are no comments for Property wide_icon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual byte[] wide_icon + { + get + { + return this._wide_icon; + } + set + { + this.Onwide_iconChanging(value); + this._wide_icon = value; + this.Onwide_iconChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private byte[] _wide_icon; + partial void Onwide_iconChanging(byte[] value); + partial void Onwide_iconChanged(); /// /// There are no comments for Property publisher in the schema. /// @@ -144148,6 +144126,28 @@ public virtual string publisher partial void OnpublisherChanging(string value); partial void OnpublisherChanged(); /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// /// There are no comments for Property ishidden in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -144192,27 +144192,27 @@ public virtual string appopenuri partial void OnappopenuriChanging(string value); partial void OnappopenuriChanged(); /// - /// There are no comments for Property status in the schema. + /// There are no comments for Property cdsdependencies in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string status + public virtual string cdsdependencies { get { - return this._status; + return this._cdsdependencies; } set { - this.OnstatusChanging(value); - this._status = value; - this.OnstatusChanged(); + this.OncdsdependenciesChanging(value); + this._cdsdependencies = value; + this.OncdsdependenciesChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _status; - partial void OnstatusChanging(string value); - partial void OnstatusChanged(); + private string _cdsdependencies; + partial void OncdsdependenciesChanging(string value); + partial void OncdsdependenciesChanged(); /// /// There are no comments for Property backgroundcolor in the schema. /// @@ -144258,27 +144258,27 @@ public virtual string backgroundcolor partial void OncanvasapprowidChanging(global::System.Nullable value); partial void OncanvasapprowidChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property background_image in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual byte[] background_image { get { - return this.__owninguser_value; + return this._background_image; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.Onbackground_imageChanging(value); + this._background_image = value; + this.Onbackground_imageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private byte[] _background_image; + partial void Onbackground_imageChanging(byte[] value); + partial void Onbackground_imageChanged(); /// /// There are no comments for Property lastpublishtime in the schema. /// @@ -144324,49 +144324,49 @@ public virtual string backgroundcolor partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property bypassconsent in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable bypassconsent { get { - return this._overwritetime; + return this._bypassconsent; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnbypassconsentChanging(value); + this._bypassconsent = value; + this.OnbypassconsentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _bypassconsent; + partial void OnbypassconsentChanging(global::System.Nullable value); + partial void OnbypassconsentChanged(); /// - /// There are no comments for Property cdsdependencies in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string cdsdependencies + public virtual global::System.Nullable componentstate { get { - return this._cdsdependencies; + return this._componentstate; } set { - this.OncdsdependenciesChanging(value); - this._cdsdependencies = value; - this.OncdsdependenciesChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _cdsdependencies; - partial void OncdsdependenciesChanging(string value); - partial void OncdsdependenciesChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property wideicon_name in the schema. /// @@ -145783,28 +145783,6 @@ public cascadegrantrevokeaccessversiontrackerSingle(global::Microsoft.OData.Clie [global::Microsoft.OData.Client.Key("cascadegrantrevokeaccessversiontrackerid")] public partial class cascadegrantrevokeaccessversiontracker : crmbaseentity { - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -145850,49 +145828,27 @@ public partial class cascadegrantrevokeaccessversiontracker : crmbaseentity partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property parententityid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string parententityid { get { - return this.__modifiedby_value; + return this._parententityid; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnparententityidChanging(value); + this._parententityid = value; + this.OnparententityidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _parententityid; + partial void OnparententityidChanging(string value); + partial void OnparententityidChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -145938,27 +145894,27 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property parentobjecttypecode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable parentobjecttypecode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._parentobjecttypecode; + return this.__createdonbehalfby_value; } set { - this.OnparentobjecttypecodeChanging(value); - this._parentobjecttypecode = value; - this.OnparentobjecttypecodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _parentobjecttypecode; - partial void OnparentobjecttypecodeChanging(global::System.Nullable value); - partial void OnparentobjecttypecodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -145982,6 +145938,50 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property messagename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -146070,49 +146070,49 @@ public virtual string messagename partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property parententityid in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string parententityid + public virtual global::System.Nullable createdon { get { - return this._parententityid; + return this._createdon; } set { - this.OnparententityidChanging(value); - this._parententityid = value; - this.OnparententityidChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _parententityid; - partial void OnparententityidChanging(string value); - partial void OnparententityidChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property parentobjecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable parentobjecttypecode { get { - return this._createdon; + return this._parentobjecttypecode; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnparentobjecttypecodeChanging(value); + this._parentobjecttypecode = value; + this.OnparentobjecttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _parentobjecttypecode; + partial void OnparentobjecttypecodeChanging(global::System.Nullable value); + partial void OnparentobjecttypecodeChanged(); /// /// There are no comments for Property cascadegrantrevokeaccessversiontrackerid in the schema. /// @@ -146840,6 +146840,28 @@ public static catalogassignment Createcatalogassignment(global::EMBC.ESS.Utiliti partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _object_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -146906,28 +146928,6 @@ public static catalogassignment Createcatalogassignment(global::EMBC.ESS.Utiliti partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -146950,93 +146950,93 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable versionnumber { get { - return this.__organizationid_value; + return this._versionnumber; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable componentstate { get { - return this._overwritetime; + return this._componentstate; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable _organizationid_value { get { - return this._iscustomizable; + return this.__organizationid_value; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable overwritetime { get { - return this._utcconversiontimezonecode; + return this._overwritetime; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property _catalogid_value in the schema. /// @@ -147082,27 +147082,27 @@ public virtual string name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._versionnumber; + return this._timezoneruleversionnumber; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -147148,93 +147148,93 @@ public virtual string name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this._statuscode; + return this._iscustomizable; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable statuscode { get { - return this._createdon; + return this._statuscode; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _modifiedby_value { get { - return this._componentstate; + return this.__modifiedby_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _createdby_value { get { - return this._importsequencenumber; + return this.__createdby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property solutionid in the schema. /// @@ -147258,27 +147258,27 @@ public virtual string name partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable createdon { get { - return this.__createdby_value; + return this._createdon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -147302,27 +147302,27 @@ public virtual string name partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__modifiedby_value; + return this._utcconversiontimezonecode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property catalogassignmentid in the schema. /// @@ -148107,28 +148107,6 @@ public static catalog Createcatalog(global::EMBC.ESS.Utilities.Dynamics.Microsof return catalog; } /// - /// There are no comments for Property componentidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentidunique - { - get - { - return this._componentidunique; - } - set - { - this.OncomponentiduniqueChanging(value); - this._componentidunique = value; - this.OncomponentiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentidunique; - partial void OncomponentiduniqueChanging(global::System.Nullable value); - partial void OncomponentiduniqueChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -148217,28 +148195,6 @@ public static catalog Createcatalog(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property catalogid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable catalogid - { - get - { - return this._catalogid; - } - set - { - this.OncatalogidChanging(value); - this._catalogid = value; - this.OncatalogidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _catalogid; - partial void OncatalogidChanging(global::System.Nullable value); - partial void OncatalogidChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -148305,49 +148261,71 @@ public static catalog Createcatalog(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this.__organizationid_value; + return this._iscustomizable; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual string description { get { - return this._versionnumber; + return this._description; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); + /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -148393,49 +148371,49 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property componentidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable componentidunique { get { - return this._overwritetime; + return this._componentidunique; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OncomponentiduniqueChanging(value); + this._componentidunique = value; + this.OncomponentiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _componentidunique; + partial void OncomponentiduniqueChanging(global::System.Nullable value); + partial void OncomponentiduniqueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _organizationid_value { get { - return this._timezoneruleversionnumber; + return this.__organizationid_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property _parentcatalogid_value in the schema. /// @@ -148459,6 +148437,28 @@ public virtual string name partial void On_parentcatalogid_valueChanging(global::System.Nullable value); partial void On_parentcatalogid_valueChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property uniquename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -148481,71 +148481,71 @@ public virtual string uniquename partial void OnuniquenameChanging(string value); partial void OnuniquenameChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable solutionid { get { - return this.__modifiedonbehalfby_value; + return this._solutionid; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._description; + return this._timezoneruleversionnumber; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property catalogid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable catalogid { get { - return this._solutionid; + return this._catalogid; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OncatalogidChanging(value); + this._catalogid = value; + this.OncatalogidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable _catalogid; + partial void OncatalogidChanging(global::System.Nullable value); + partial void OncatalogidChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -148569,27 +148569,49 @@ public virtual string description partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._iscustomizable; + return this.__modifiedonbehalfby_value; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -148635,28 +148657,6 @@ public virtual string description partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property displayname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -149322,6 +149322,28 @@ public static category Createcategory(global::EMBC.ESS.Utilities.Dynamics.Micros return category; } /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -149366,27 +149388,49 @@ public static category Createcategory(global::EMBC.ESS.Utilities.Dynamics.Micros partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _owningteam_value { get { - return this._modifiedon; + return this.__owningteam_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _transactioncurrencyid_value + { + get + { + return this.__transactioncurrencyid_value; + } + set + { + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -149432,27 +149476,27 @@ public virtual string title partial void OntitleChanging(string value); partial void OntitleChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property _parentcategoryid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable _parentcategoryid_value { get { - return this._description; + return this.__parentcategoryid_value; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.On_parentcategoryid_valueChanging(value); + this.__parentcategoryid_value = value; + this.On_parentcategoryid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable __parentcategoryid_value; + partial void On_parentcategoryid_valueChanging(global::System.Nullable value); + partial void On_parentcategoryid_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -149476,28 +149520,6 @@ public virtual string description partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property categorynumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -149542,72 +149564,6 @@ public virtual string categorynumber partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// - /// There are no comments for Property _parentcategoryid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _parentcategoryid_value - { - get - { - return this.__parentcategoryid_value; - } - set - { - this.On_parentcategoryid_valueChanging(value); - this.__parentcategoryid_value = value; - this.On_parentcategoryid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentcategoryid_value; - partial void On_parentcategoryid_valueChanging(global::System.Nullable value); - partial void On_parentcategoryid_valueChanged(); - /// - /// There are no comments for Property sequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable sequencenumber - { - get - { - return this._sequencenumber; - } - set - { - this.OnsequencenumberChanging(value); - this._sequencenumber = value; - this.OnsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sequencenumber; - partial void OnsequencenumberChanging(global::System.Nullable value); - partial void OnsequencenumberChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -149630,71 +149586,115 @@ public virtual string categorynumber partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual string description { get { - return this.__transactioncurrencyid_value; + return this._description; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._exchangerate; + return this.__owningbusinessunit_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__owningbusinessunit_value; + return this.__ownerid_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// + /// There are no comments for Property sequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sequencenumber + { + get + { + return this._sequencenumber; + } + set + { + this.OnsequencenumberChanging(value); + this._sequencenumber = value; + this.OnsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sequencenumber; + partial void OnsequencenumberChanging(global::System.Nullable value); + partial void OnsequencenumberChanged(); + /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -150771,27 +150771,27 @@ public static characteristic Createcharacteristic(global::EMBC.ESS.Utilities.Dyn return characteristic; } /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string name { get { - return this._overriddencreatedon; + return this._name; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -150815,27 +150815,27 @@ public static characteristic Createcharacteristic(global::EMBC.ESS.Utilities.Dyn partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._name; + return this.__owningbusinessunit_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -150947,27 +150947,27 @@ public virtual string name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable exchangerate { get { - return this.__createdby_value; + return this._exchangerate; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -151035,27 +151035,27 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable overriddencreatedon { get { - return this._statuscode; + return this._overriddencreatedon; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -151079,6 +151079,94 @@ public virtual string description partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property characteristicid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable characteristicid + { + get + { + return this._characteristicid; + } + set + { + this.OncharacteristicidChanging(value); + this._characteristicid = value; + this.OncharacteristicidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _characteristicid; + partial void OncharacteristicidChanging(global::System.Nullable value); + partial void OncharacteristicidChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -151123,94 +151211,6 @@ public virtual string description partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property characteristicid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable characteristicid - { - get - { - return this._characteristicid; - } - set - { - this.OncharacteristicidChanging(value); - this._characteristicid = value; - this.OncharacteristicidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _characteristicid; - partial void OncharacteristicidChanging(global::System.Nullable value); - partial void OncharacteristicidChanged(); - /// - /// There are no comments for Property exchangerate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable exchangerate - { - get - { - return this._exchangerate; - } - set - { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -151233,27 +151233,27 @@ public virtual string description partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__owningbusinessunit_value; + return this.__createdonbehalfby_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -151902,116 +151902,6 @@ public static columnmapping Createcolumnmapping(global::EMBC.ESS.Utilities.Dynam return columnmapping; } /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property sourceattributename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string sourceattributename - { - get - { - return this._sourceattributename; - } - set - { - this.OnsourceattributenameChanging(value); - this._sourceattributename = value; - this.OnsourceattributenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sourceattributename; - partial void OnsourceattributenameChanging(string value); - partial void OnsourceattributenameChanged(); - /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// - /// There are no comments for Property introducedversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string introducedversion - { - get - { - return this._introducedversion; - } - set - { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); - /// /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -152034,50 +151924,6 @@ public virtual string introducedversion partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -152100,115 +151946,115 @@ public virtual string introducedversion partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property processcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable processcode { get { - return this._statecode; + return this._processcode; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnprocesscodeChanging(value); + this._processcode = value; + this.OnprocesscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _processcode; + partial void OnprocesscodeChanging(global::System.Nullable value); + partial void OnprocesscodeChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable _modifiedby_value { get { - return this._ismanaged; + return this.__modifiedby_value; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property columnmappingidunique in the schema. + /// There are no comments for Property sourceattributename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable columnmappingidunique + public virtual string sourceattributename { get { - return this._columnmappingidunique; + return this._sourceattributename; } set { - this.OncolumnmappingiduniqueChanging(value); - this._columnmappingidunique = value; - this.OncolumnmappingiduniqueChanged(); + this.OnsourceattributenameChanging(value); + this._sourceattributename = value; + this.OnsourceattributenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _columnmappingidunique; - partial void OncolumnmappingiduniqueChanging(global::System.Nullable value); - partial void OncolumnmappingiduniqueChanged(); + private string _sourceattributename; + partial void OnsourceattributenameChanging(string value); + partial void OnsourceattributenameChanged(); /// - /// There are no comments for Property processcode in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processcode + public virtual global::System.Nullable statuscode { get { - return this._processcode; + return this._statuscode; } set { - this.OnprocesscodeChanging(value); - this._processcode = value; - this.OnprocesscodeChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processcode; - partial void OnprocesscodeChanging(global::System.Nullable value); - partial void OnprocesscodeChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable solutionid { get { - return this._createdon; + return this._solutionid; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property columnmappingid in the schema. /// @@ -152254,6 +152100,160 @@ public virtual string introducedversion partial void On_importmapid_valueChanging(global::System.Nullable value); partial void On_importmapid_valueChanged(); /// + /// There are no comments for Property sourceentityname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string sourceentityname + { + get + { + return this._sourceentityname; + } + set + { + this.OnsourceentitynameChanging(value); + this._sourceentityname = value; + this.OnsourceentitynameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _sourceentityname; + partial void OnsourceentitynameChanging(string value); + partial void OnsourceentitynameChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// + /// There are no comments for Property columnmappingidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable columnmappingidunique + { + get + { + return this._columnmappingidunique; + } + set + { + this.OncolumnmappingiduniqueChanging(value); + this._columnmappingidunique = value; + this.OncolumnmappingiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _columnmappingidunique; + partial void OncolumnmappingiduniqueChanging(global::System.Nullable value); + partial void OncolumnmappingiduniqueChanged(); + /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -152320,49 +152320,49 @@ public virtual string targetattributename partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property sourceentityname in the schema. + /// There are no comments for Property targetentityname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string sourceentityname + public virtual string targetentityname { get { - return this._sourceentityname; + return this._targetentityname; } set { - this.OnsourceentitynameChanging(value); - this._sourceentityname = value; - this.OnsourceentitynameChanged(); + this.OntargetentitynameChanging(value); + this._targetentityname = value; + this.OntargetentitynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sourceentityname; - partial void OnsourceentitynameChanging(string value); - partial void OnsourceentitynameChanged(); + private string _targetentityname; + partial void OntargetentitynameChanging(string value); + partial void OntargetentitynameChanged(); /// - /// There are no comments for Property targetentityname in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string targetentityname + public virtual global::System.Nullable _createdby_value { get { - return this._targetentityname; + return this.__createdby_value; } set { - this.OntargetentitynameChanging(value); - this._targetentityname = value; - this.OntargetentitynameChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _targetentityname; - partial void OntargetentitynameChanging(string value); - partial void OntargetentitynameChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property PickListMapping_ColumnMapping in the schema. /// @@ -152916,6 +152916,28 @@ public virtual string county partial void OncountyChanging(string value); partial void OncountyChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property _parentid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -153114,49 +153136,27 @@ public virtual string line1 partial void Online1Changing(string value); partial void Online1Changed(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property utcoffset in the schema. + /// There are no comments for Property telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcoffset + public virtual string telephone1 { get { - return this._utcoffset; + return this._telephone1; } set { - this.OnutcoffsetChanging(value); - this._utcoffset = value; - this.OnutcoffsetChanged(); + this.Ontelephone1Changing(value); + this._telephone1 = value; + this.Ontelephone1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcoffset; - partial void OnutcoffsetChanging(global::System.Nullable value); - partial void OnutcoffsetChanged(); + private string _telephone1; + partial void Ontelephone1Changing(string value); + partial void Ontelephone1Changed(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -153180,28 +153180,6 @@ public virtual string line1 partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property line2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string line2 - { - get - { - return this._line2; - } - set - { - this.Online2Changing(value); - this._line2 = value; - this.Online2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _line2; - partial void Online2Changing(string value); - partial void Online2Changed(); - /// /// There are no comments for Property country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -153224,49 +153202,49 @@ public virtual string country partial void OncountryChanging(string value); partial void OncountryChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable longitude { get { - return this._utcconversiontimezonecode; + return this._longitude; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnlongitudeChanging(value); + this._longitude = value; + this.OnlongitudeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _longitude; + partial void OnlongitudeChanging(global::System.Nullable value); + partial void OnlongitudeChanged(); /// - /// There are no comments for Property longitude in the schema. + /// There are no comments for Property line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable longitude + public virtual string line2 { get { - return this._longitude; + return this._line2; } set { - this.OnlongitudeChanging(value); - this._longitude = value; - this.OnlongitudeChanged(); + this.Online2Changing(value); + this._line2 = value; + this.Online2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _longitude; - partial void OnlongitudeChanging(global::System.Nullable value); - partial void OnlongitudeChanged(); + private string _line2; + partial void Online2Changing(string value); + partial void Online2Changed(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -153334,159 +153312,159 @@ public virtual string postofficebox partial void OnpostofficeboxChanging(string value); partial void OnpostofficeboxChanged(); /// - /// There are no comments for Property addressnumber in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable addressnumber + public virtual string name { get { - return this._addressnumber; + return this._name; } set { - this.OnaddressnumberChanging(value); - this._addressnumber = value; - this.OnaddressnumberChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _addressnumber; - partial void OnaddressnumberChanging(global::System.Nullable value); - partial void OnaddressnumberChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property line3 in the schema. + /// There are no comments for Property utcoffset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string line3 + public virtual global::System.Nullable utcoffset { get { - return this._line3; + return this._utcoffset; } set { - this.Online3Changing(value); - this._line3 = value; - this.Online3Changed(); + this.OnutcoffsetChanging(value); + this._utcoffset = value; + this.OnutcoffsetChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _line3; - partial void Online3Changing(string value); - partial void Online3Changed(); + private global::System.Nullable _utcoffset; + partial void OnutcoffsetChanging(global::System.Nullable value); + partial void OnutcoffsetChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property addressnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable addressnumber { get { - return this._overriddencreatedon; + return this._addressnumber; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnaddressnumberChanging(value); + this._addressnumber = value; + this.OnaddressnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _addressnumber; + partial void OnaddressnumberChanging(global::System.Nullable value); + partial void OnaddressnumberChanged(); /// - /// There are no comments for Property telephone1 in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string telephone1 + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._telephone1; + return this._utcconversiontimezonecode; } set { - this.Ontelephone1Changing(value); - this._telephone1 = value; - this.Ontelephone1Changed(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _telephone1; - partial void Ontelephone1Changing(string value); - partial void Ontelephone1Changed(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property addresstypecode in the schema. + /// There are no comments for Property line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable addresstypecode + public virtual string line3 { get { - return this._addresstypecode; + return this._line3; } set { - this.OnaddresstypecodeChanging(value); - this._addresstypecode = value; - this.OnaddresstypecodeChanged(); + this.Online3Changing(value); + this._line3 = value; + this.Online3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _addresstypecode; - partial void OnaddresstypecodeChanging(global::System.Nullable value); - partial void OnaddresstypecodeChanged(); + private string _line3; + partial void Online3Changing(string value); + partial void Online3Changed(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property addresstypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable addresstypecode { get { - return this._name; + return this._addresstypecode; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnaddresstypecodeChanging(value); + this._addresstypecode = value; + this.OnaddresstypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _addresstypecode; + partial void OnaddresstypecodeChanging(global::System.Nullable value); + partial void OnaddresstypecodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__modifiedonbehalfby_value; + return this.__createdby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -153576,6 +153554,28 @@ public virtual string postalcode partial void OncompetitoraddressidChanging(global::System.Nullable value); partial void OncompetitoraddressidChanged(); /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -154842,28 +154842,6 @@ public static competitor Createcompetitor(global::EMBC.ESS.Utilities.Dynamics.Mi return competitor; } /// - /// There are no comments for Property address2_city in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_city - { - get - { - return this._address2_city; - } - set - { - this.Onaddress2_cityChanging(value); - this._address2_city = value; - this.Onaddress2_cityChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_city; - partial void Onaddress2_cityChanging(string value); - partial void Onaddress2_cityChanged(); - /// /// There are no comments for Property address2_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -154952,27 +154930,49 @@ public virtual string address2_county partial void Onentityimage_timestampChanging(global::System.Nullable value); partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property weaknesses in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string weaknesses + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._weaknesses; + return this.__transactioncurrencyid_value; } set { - this.OnweaknessesChanging(value); - this._weaknesses = value; - this.OnweaknessesChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _weaknesses; - partial void OnweaknessesChanging(string value); - partial void OnweaknessesChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); + /// + /// There are no comments for Property address2_line1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_line1 + { + get + { + return this._address2_line1; + } + set + { + this.Onaddress2_line1Changing(value); + this._address2_line1 = value; + this.Onaddress2_line1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_line1; + partial void Onaddress2_line1Changing(string value); + partial void Onaddress2_line1Changed(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -154996,27 +154996,27 @@ public virtual string weaknesses partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property yominame in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string yominame + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._yominame; + return this._utcconversiontimezonecode; } set { - this.OnyominameChanging(value); - this._yominame = value; - this.OnyominameChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _yominame; - partial void OnyominameChanging(string value); - partial void OnyominameChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property entityimage_url in the schema. /// @@ -155040,27 +155040,49 @@ public virtual string entityimage_url partial void Onentityimage_urlChanging(string value); partial void Onentityimage_urlChanged(); /// - /// There are no comments for Property competitorid in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable competitorid + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._competitorid; + return this._timezoneruleversionnumber; } set { - this.OncompetitoridChanging(value); - this._competitorid = value; - this.OncompetitoridChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _competitorid; - partial void OncompetitoridChanging(global::System.Nullable value); - partial void OncompetitoridChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property entityimage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual byte[] entityimage + { + get + { + return this._entityimage; + } + set + { + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); /// /// There are no comments for Property name in the schema. /// @@ -155150,49 +155172,49 @@ public virtual string address1_postalcode partial void OnreportingquarterChanging(global::System.Nullable value); partial void OnreportingquarterChanged(); /// - /// There are no comments for Property address1_postofficebox in the schema. + /// There are no comments for Property yominame in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_postofficebox + public virtual string yominame { get { - return this._address1_postofficebox; + return this._yominame; } set { - this.Onaddress1_postofficeboxChanging(value); - this._address1_postofficebox = value; - this.Onaddress1_postofficeboxChanged(); + this.OnyominameChanging(value); + this._yominame = value; + this.OnyominameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_postofficebox; - partial void Onaddress1_postofficeboxChanging(string value); - partial void Onaddress1_postofficeboxChanged(); + private string _yominame; + partial void OnyominameChanging(string value); + partial void OnyominameChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property address1_line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string address1_line3 { get { - return this._timezoneruleversionnumber; + return this._address1_line3; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onaddress1_line3Changing(value); + this._address1_line3 = value; + this.Onaddress1_line3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _address1_line3; + partial void Onaddress1_line3Changing(string value); + partial void Onaddress1_line3Changed(); /// /// There are no comments for Property address2_upszone in the schema. /// @@ -155216,27 +155238,49 @@ public virtual string address2_upszone partial void Onaddress2_upszoneChanging(string value); partial void Onaddress2_upszoneChanged(); /// - /// There are no comments for Property entityimage in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] entityimage + public virtual global::System.Nullable versionnumber { get { - return this._entityimage; + return this._versionnumber; } set { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property threats in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string threats + { + get + { + return this._threats; + } + set + { + this.OnthreatsChanging(value); + this._threats = value; + this.OnthreatsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _threats; + partial void OnthreatsChanging(string value); + partial void OnthreatsChanged(); /// /// There are no comments for Property address1_telephone3 in the schema. /// @@ -155282,71 +155326,71 @@ public virtual string address2_postalcode partial void Onaddress2_postalcodeChanging(string value); partial void Onaddress2_postalcodeChanged(); /// - /// There are no comments for Property entityimageid in the schema. + /// There are no comments for Property keyproduct in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimageid + public virtual string keyproduct { get { - return this._entityimageid; + return this._keyproduct; } set { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); + this.OnkeyproductChanging(value); + this._keyproduct = value; + this.OnkeyproductChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); + private string _keyproduct; + partial void OnkeyproductChanging(string value); + partial void OnkeyproductChanged(); /// - /// There are no comments for Property threats in the schema. + /// There are no comments for Property tickersymbol in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string threats + public virtual string tickersymbol { get { - return this._threats; + return this._tickersymbol; } set { - this.OnthreatsChanging(value); - this._threats = value; - this.OnthreatsChanged(); + this.OntickersymbolChanging(value); + this._tickersymbol = value; + this.OntickersymbolChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _threats; - partial void OnthreatsChanging(string value); - partial void OnthreatsChanged(); + private string _tickersymbol; + partial void OntickersymbolChanging(string value); + partial void OntickersymbolChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property address1_upszone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string address1_upszone { get { - return this.__createdby_value; + return this._address1_upszone; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Onaddress1_upszoneChanging(value); + this._address1_upszone = value; + this.Onaddress1_upszoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _address1_upszone; + partial void Onaddress1_upszoneChanging(string value); + partial void Onaddress1_upszoneChanged(); /// /// There are no comments for Property address2_name in the schema. /// @@ -155458,6 +155502,28 @@ public virtual string address1_city partial void Onaddress1_cityChanging(string value); partial void Onaddress1_cityChanged(); /// + /// There are no comments for Property address2_postofficebox in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_postofficebox + { + get + { + return this._address2_postofficebox; + } + set + { + this.Onaddress2_postofficeboxChanging(value); + this._address2_postofficebox = value; + this.Onaddress2_postofficeboxChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_postofficebox; + partial void Onaddress2_postofficeboxChanging(string value); + partial void Onaddress2_postofficeboxChanged(); + /// /// There are no comments for Property address1_stateorprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -155502,49 +155568,49 @@ public virtual string stockexchange partial void OnstockexchangeChanging(string value); partial void OnstockexchangeChanged(); /// - /// There are no comments for Property keyproduct in the schema. + /// There are no comments for Property address1_addresstypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string keyproduct + public virtual global::System.Nullable address1_addresstypecode { get { - return this._keyproduct; + return this._address1_addresstypecode; } set { - this.OnkeyproductChanging(value); - this._keyproduct = value; - this.OnkeyproductChanged(); + this.Onaddress1_addresstypecodeChanging(value); + this._address1_addresstypecode = value; + this.Onaddress1_addresstypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _keyproduct; - partial void OnkeyproductChanging(string value); - partial void OnkeyproductChanged(); + private global::System.Nullable _address1_addresstypecode; + partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); + partial void Onaddress1_addresstypecodeChanged(); /// - /// There are no comments for Property address1_upszone in the schema. + /// There are no comments for Property address2_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_upszone + public virtual string address2_line2 { get { - return this._address1_upszone; + return this._address2_line2; } set { - this.Onaddress1_upszoneChanging(value); - this._address1_upszone = value; - this.Onaddress1_upszoneChanged(); + this.Onaddress2_line2Changing(value); + this._address2_line2 = value; + this.Onaddress2_line2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_upszone; - partial void Onaddress1_upszoneChanging(string value); - partial void Onaddress1_upszoneChanged(); + private string _address2_line2; + partial void Onaddress2_line2Changing(string value); + partial void Onaddress2_line2Changed(); /// /// There are no comments for Property winpercentage in the schema. /// @@ -155568,6 +155634,28 @@ public virtual string address1_upszone partial void OnwinpercentageChanging(global::System.Nullable value); partial void OnwinpercentageChanged(); /// + /// There are no comments for Property address2_stateorprovince in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_stateorprovince + { + get + { + return this._address2_stateorprovince; + } + set + { + this.Onaddress2_stateorprovinceChanging(value); + this._address2_stateorprovince = value; + this.Onaddress2_stateorprovinceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_stateorprovince; + partial void Onaddress2_stateorprovinceChanging(string value); + partial void Onaddress2_stateorprovinceChanged(); + /// /// There are no comments for Property reportedrevenue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -155590,27 +155678,27 @@ public virtual string address1_upszone partial void OnreportedrevenueChanging(global::System.Nullable value); partial void OnreportedrevenueChanged(); /// - /// There are no comments for Property address2_postofficebox in the schema. + /// There are no comments for Property strengths in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_postofficebox + public virtual string strengths { get { - return this._address2_postofficebox; + return this._strengths; } set { - this.Onaddress2_postofficeboxChanging(value); - this._address2_postofficebox = value; - this.Onaddress2_postofficeboxChanged(); + this.OnstrengthsChanging(value); + this._strengths = value; + this.OnstrengthsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_postofficebox; - partial void Onaddress2_postofficeboxChanging(string value); - partial void Onaddress2_postofficeboxChanged(); + private string _strengths; + partial void OnstrengthsChanging(string value); + partial void OnstrengthsChanged(); /// /// There are no comments for Property opportunities in the schema. /// @@ -155634,27 +155722,27 @@ public virtual string opportunities partial void OnopportunitiesChanging(string value); partial void OnopportunitiesChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property address1_composite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string address1_composite { get { - return this._utcconversiontimezonecode; + return this._address1_composite; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onaddress1_compositeChanging(value); + this._address1_composite = value; + this.Onaddress1_compositeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _address1_composite; + partial void Onaddress1_compositeChanging(string value); + partial void Onaddress1_compositeChanged(); /// /// There are no comments for Property address1_telephone1 in the schema. /// @@ -155766,27 +155854,27 @@ public virtual string address2_line3 partial void Onreportedrevenue_baseChanging(global::System.Nullable value); partial void Onreportedrevenue_baseChanged(); /// - /// There are no comments for Property tickersymbol in the schema. + /// There are no comments for Property address1_telephone2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string tickersymbol + public virtual string address1_telephone2 { get { - return this._tickersymbol; + return this._address1_telephone2; } set { - this.OntickersymbolChanging(value); - this._tickersymbol = value; - this.OntickersymbolChanged(); + this.Onaddress1_telephone2Changing(value); + this._address1_telephone2 = value; + this.Onaddress1_telephone2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _tickersymbol; - partial void OntickersymbolChanging(string value); - partial void OntickersymbolChanged(); + private string _address1_telephone2; + partial void Onaddress1_telephone2Changing(string value); + partial void Onaddress1_telephone2Changed(); /// /// There are no comments for Property address1_line2 in the schema. /// @@ -155898,71 +155986,71 @@ public virtual string address2_telephone3 partial void Onaddress2_telephone3Changing(string value); partial void Onaddress2_telephone3Changed(); /// - /// There are no comments for Property strengths in the schema. + /// There are no comments for Property competitorid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string strengths + public virtual global::System.Nullable competitorid { get { - return this._strengths; + return this._competitorid; } set { - this.OnstrengthsChanging(value); - this._strengths = value; - this.OnstrengthsChanged(); + this.OncompetitoridChanging(value); + this._competitorid = value; + this.OncompetitoridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _strengths; - partial void OnstrengthsChanging(string value); - partial void OnstrengthsChanged(); + private global::System.Nullable _competitorid; + partial void OncompetitoridChanging(global::System.Nullable value); + partial void OncompetitoridChanged(); /// - /// There are no comments for Property address1_line3 in the schema. + /// There are no comments for Property address2_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_line3 + public virtual string address2_city { get { - return this._address1_line3; + return this._address2_city; } set { - this.Onaddress1_line3Changing(value); - this._address1_line3 = value; - this.Onaddress1_line3Changed(); + this.Onaddress2_cityChanging(value); + this._address2_city = value; + this.Onaddress2_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line3; - partial void Onaddress1_line3Changing(string value); - partial void Onaddress1_line3Changed(); + private string _address2_city; + partial void Onaddress2_cityChanging(string value); + partial void Onaddress2_cityChanged(); /// - /// There are no comments for Property traversedpath in the schema. + /// There are no comments for Property entityimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string traversedpath + public virtual global::System.Nullable entityimageid { get { - return this._traversedpath; + return this._entityimageid; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); /// /// There are no comments for Property address2_fax in the schema. /// @@ -156008,27 +156096,27 @@ public virtual string address2_fax partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property overview in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual string overview { get { - return this._versionnumber; + return this._overview; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnoverviewChanging(value); + this._overview = value; + this.OnoverviewChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private string _overview; + partial void OnoverviewChanging(string value); + partial void OnoverviewChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -156096,27 +156184,27 @@ public virtual string address1_fax partial void Onaddress1_faxChanging(string value); partial void Onaddress1_faxChanged(); /// - /// There are no comments for Property overview in the schema. + /// There are no comments for Property address1_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string overview + public virtual string address1_postofficebox { get { - return this._overview; + return this._address1_postofficebox; } set { - this.OnoverviewChanging(value); - this._overview = value; - this.OnoverviewChanged(); + this.Onaddress1_postofficeboxChanging(value); + this._address1_postofficebox = value; + this.Onaddress1_postofficeboxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _overview; - partial void OnoverviewChanging(string value); - partial void OnoverviewChanged(); + private string _address1_postofficebox; + partial void Onaddress1_postofficeboxChanging(string value); + partial void Onaddress1_postofficeboxChanged(); /// /// There are no comments for Property processid in the schema. /// @@ -156250,28 +156338,6 @@ public virtual string address1_country partial void Onaddress1_addressidChanging(global::System.Nullable value); partial void Onaddress1_addressidChanged(); /// - /// There are no comments for Property address2_stateorprovince in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_stateorprovince - { - get - { - return this._address2_stateorprovince; - } - set - { - this.Onaddress2_stateorprovinceChanging(value); - this._address2_stateorprovince = value; - this.Onaddress2_stateorprovinceChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_stateorprovince; - partial void Onaddress2_stateorprovinceChanging(string value); - partial void Onaddress2_stateorprovinceChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -156294,50 +156360,6 @@ public virtual string address2_stateorprovince partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property exchangerate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable exchangerate - { - get - { - return this._exchangerate; - } - set - { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); - /// - /// There are no comments for Property address2_addresstypecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable address2_addresstypecode - { - get - { - return this._address2_addresstypecode; - } - set - { - this.Onaddress2_addresstypecodeChanging(value); - this._address2_addresstypecode = value; - this.Onaddress2_addresstypecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_addresstypecode; - partial void Onaddress2_addresstypecodeChanging(global::System.Nullable value); - partial void Onaddress2_addresstypecodeChanged(); - /// /// There are no comments for Property address1_longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -156360,49 +156382,93 @@ public virtual string address2_stateorprovince partial void Onaddress1_longitudeChanging(global::System.Nullable value); partial void Onaddress1_longitudeChanged(); /// - /// There are no comments for Property address1_shippingmethodcode in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_shippingmethodcode + public virtual global::System.Nullable exchangerate { get { - return this._address1_shippingmethodcode; + return this._exchangerate; } set { - this.Onaddress1_shippingmethodcodeChanging(value); - this._address1_shippingmethodcode = value; - this.Onaddress1_shippingmethodcodeChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_shippingmethodcode; - partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress1_shippingmethodcodeChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// - /// There are no comments for Property address1_composite in the schema. + /// There are no comments for Property address2_addresstypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_composite + public virtual global::System.Nullable address2_addresstypecode { get { - return this._address1_composite; + return this._address2_addresstypecode; } set { - this.Onaddress1_compositeChanging(value); - this._address1_composite = value; - this.Onaddress1_compositeChanged(); + this.Onaddress2_addresstypecodeChanging(value); + this._address2_addresstypecode = value; + this.Onaddress2_addresstypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_composite; - partial void Onaddress1_compositeChanging(string value); - partial void Onaddress1_compositeChanged(); + private global::System.Nullable _address2_addresstypecode; + partial void Onaddress2_addresstypecodeChanging(global::System.Nullable value); + partial void Onaddress2_addresstypecodeChanged(); + /// + /// There are no comments for Property weaknesses in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string weaknesses + { + get + { + return this._weaknesses; + } + set + { + this.OnweaknessesChanging(value); + this._weaknesses = value; + this.OnweaknessesChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _weaknesses; + partial void OnweaknessesChanging(string value); + partial void OnweaknessesChanged(); + /// + /// There are no comments for Property address1_shippingmethodcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address1_shippingmethodcode + { + get + { + return this._address1_shippingmethodcode; + } + set + { + this.Onaddress1_shippingmethodcodeChanging(value); + this._address1_shippingmethodcode = value; + this.Onaddress1_shippingmethodcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address1_shippingmethodcode; + partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress1_shippingmethodcodeChanged(); /// /// There are no comments for Property address2_telephone2 in the schema. /// @@ -156470,28 +156536,6 @@ public virtual string address2_country partial void Onaddress2_countryChanging(string value); partial void Onaddress2_countryChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -156558,71 +156602,49 @@ public virtual string referenceinfourl partial void OnreferenceinfourlChanging(string value); partial void OnreferenceinfourlChanged(); /// - /// There are no comments for Property address2_line2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_line2 - { - get - { - return this._address2_line2; - } - set - { - this.Onaddress2_line2Changing(value); - this._address2_line2 = value; - this.Onaddress2_line2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line2; - partial void Onaddress2_line2Changing(string value); - partial void Onaddress2_line2Changed(); - /// - /// There are no comments for Property address1_addresstypecode in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_addresstypecode + public virtual string traversedpath { get { - return this._address1_addresstypecode; + return this._traversedpath; } set { - this.Onaddress1_addresstypecodeChanging(value); - this._address1_addresstypecode = value; - this.Onaddress1_addresstypecodeChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_addresstypecode; - partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); - partial void Onaddress1_addresstypecodeChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// - /// There are no comments for Property address1_telephone2 in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone2 + public virtual global::System.Nullable _createdby_value { get { - return this._address1_telephone2; + return this.__createdby_value; } set { - this.Onaddress1_telephone2Changing(value); - this._address1_telephone2 = value; - this.Onaddress1_telephone2Changed(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone2; - partial void Onaddress1_telephone2Changing(string value); - partial void Onaddress1_telephone2Changed(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property address1_line1 in the schema. /// @@ -156646,28 +156668,6 @@ public virtual string address1_line1 partial void Onaddress1_line1Changing(string value); partial void Onaddress1_line1Changed(); /// - /// There are no comments for Property address2_line1 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_line1 - { - get - { - return this._address2_line1; - } - set - { - this.Onaddress2_line1Changing(value); - this._address2_line1 = value; - this.Onaddress2_line1Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line1; - partial void Onaddress2_line1Changing(string value); - partial void Onaddress2_line1Changed(); - /// /// There are no comments for Property competitor_PostRegardings in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -157475,27 +157475,27 @@ public virtual string name partial void OncompetitoridChanging(global::System.Nullable value); partial void OncompetitoridChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property salesliteratureid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable salesliteratureid { get { - return this._importsequencenumber; + return this._salesliteratureid; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnsalesliteratureidChanging(value); + this._salesliteratureid = value; + this.OnsalesliteratureidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _salesliteratureid; + partial void OnsalesliteratureidChanging(global::System.Nullable value); + partial void OnsalesliteratureidChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -157519,27 +157519,27 @@ public virtual string name partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property salesliteratureid in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable salesliteratureid + public virtual global::System.Nullable importsequencenumber { get { - return this._salesliteratureid; + return this._importsequencenumber; } set { - this.OnsalesliteratureidChanging(value); - this._salesliteratureid = value; - this.OnsalesliteratureidChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _salesliteratureid; - partial void OnsalesliteratureidChanging(global::System.Nullable value); - partial void OnsalesliteratureidChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -157721,6 +157721,28 @@ public static complexcontrol Createcomplexcontrol(global::EMBC.ESS.Utilities.Dyn return complexcontrol; } /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -157743,27 +157765,27 @@ public static complexcontrol Createcomplexcontrol(global::EMBC.ESS.Utilities.Dyn partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual string name { get { - return this.__organizationid_value; + return this._name; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property complexcontrolid in the schema. /// @@ -157831,49 +157853,27 @@ public static complexcontrol Createcomplexcontrol(global::EMBC.ESS.Utilities.Dyn partial void OnversionChanging(global::System.Nullable value); partial void OnversionChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property complexcontrolidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable complexcontrolidunique { get { - return this._componentstate; + return this._complexcontrolidunique; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OncomplexcontroliduniqueChanging(value); + this._complexcontrolidunique = value; + this.OncomplexcontroliduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _complexcontrolidunique; + partial void OncomplexcontroliduniqueChanging(global::System.Nullable value); + partial void OncomplexcontroliduniqueChanged(); /// /// There are no comments for Property type in the schema. /// @@ -157897,27 +157897,27 @@ public virtual string name partial void OntypeChanging(global::System.Nullable value); partial void OntypeChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable _organizationid_value { get { - return this._overwritetime; + return this.__organizationid_value; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property complexcontrolxml in the schema. /// @@ -157963,27 +157963,27 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// - /// There are no comments for Property complexcontrolidunique in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable complexcontrolidunique + public virtual global::System.Nullable overwritetime { get { - return this._complexcontrolidunique; + return this._overwritetime; } set { - this.OncomplexcontroliduniqueChanging(value); - this._complexcontrolidunique = value; - this.OncomplexcontroliduniqueChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _complexcontrolidunique; - partial void OncomplexcontroliduniqueChanging(global::System.Nullable value); - partial void OncomplexcontroliduniqueChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property solutionid in the schema. /// @@ -158472,93 +158472,71 @@ public static connectionreference Createconnectionreference(global::EMBC.ESS.Uti return connectionreference; } /// - /// There are no comments for Property connectorid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string connectorid - { - get - { - return this._connectorid; - } - set - { - this.OnconnectoridChanging(value); - this._connectorid = value; - this.OnconnectoridChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _connectorid; - partial void OnconnectoridChanging(string value); - partial void OnconnectoridChanged(); - /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property connectionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string connectionid { get { - return this.__owningteam_value; + return this._connectionid; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnconnectionidChanging(value); + this._connectionid = value; + this.OnconnectionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _connectionid; + partial void OnconnectionidChanging(string value); + partial void OnconnectionidChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._modifiedon; + return this._timezoneruleversionnumber; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _owninguser_value { get { - return this._overriddencreatedon; + return this.__owninguser_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property connectionreferenceid in the schema. /// @@ -158604,27 +158582,49 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _owningteam_value { get { - return this._timezoneruleversionnumber; + return this.__owningteam_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property connectionreferencelogicalname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string connectionreferencelogicalname + { + get + { + return this._connectionreferencelogicalname; + } + set + { + this.OnconnectionreferencelogicalnameChanging(value); + this._connectionreferencelogicalname = value; + this.OnconnectionreferencelogicalnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _connectionreferencelogicalname; + partial void OnconnectionreferencelogicalnameChanging(string value); + partial void OnconnectionreferencelogicalnameChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -158648,27 +158648,27 @@ public virtual string description partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._createdon; + return this.__owningbusinessunit_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -158692,27 +158692,27 @@ public virtual string description partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property _customconnectorid_value in the schema. + /// There are no comments for Property connectorid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _customconnectorid_value + public virtual string connectorid { get { - return this.__customconnectorid_value; + return this._connectorid; } set { - this.On_customconnectorid_valueChanging(value); - this.__customconnectorid_value = value; - this.On_customconnectorid_valueChanged(); + this.OnconnectoridChanging(value); + this._connectorid = value; + this.OnconnectoridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __customconnectorid_value; - partial void On_customconnectorid_valueChanging(global::System.Nullable value); - partial void On_customconnectorid_valueChanged(); + private string _connectorid; + partial void OnconnectoridChanging(string value); + partial void OnconnectoridChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -158736,49 +158736,49 @@ public virtual string description partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property connectionid in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string connectionid + public virtual global::System.Nullable createdon { get { - return this._connectionid; + return this._createdon; } set { - this.OnconnectionidChanging(value); - this._connectionid = value; - this.OnconnectionidChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _connectionid; - partial void OnconnectionidChanging(string value); - partial void OnconnectionidChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property connectionreferencedisplayname in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string connectionreferencedisplayname + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._connectionreferencedisplayname; + return this.__createdonbehalfby_value; } set { - this.OnconnectionreferencedisplaynameChanging(value); - this._connectionreferencedisplayname = value; - this.OnconnectionreferencedisplaynameChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _connectionreferencedisplayname; - partial void OnconnectionreferencedisplaynameChanging(string value); - partial void OnconnectionreferencedisplaynameChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -158802,27 +158802,49 @@ public virtual string connectionreferencedisplayname partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable modifiedon { get { - return this.__owninguser_value; + return this._modifiedon; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property _customconnectorid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _customconnectorid_value + { + get + { + return this.__customconnectorid_value; + } + set + { + this.On_customconnectorid_valueChanging(value); + this.__customconnectorid_value = value; + this.On_customconnectorid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __customconnectorid_value; + partial void On_customconnectorid_valueChanging(global::System.Nullable value); + partial void On_customconnectorid_valueChanged(); /// /// There are no comments for Property solutionid in the schema. /// @@ -158868,6 +158890,28 @@ public virtual string connectionreferencedisplayname partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// + /// There are no comments for Property componentidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentidunique + { + get + { + return this._componentidunique; + } + set + { + this.OncomponentiduniqueChanging(value); + this._componentidunique = value; + this.OncomponentiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentidunique; + partial void OncomponentiduniqueChanging(global::System.Nullable value); + partial void OncomponentiduniqueChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -158890,93 +158934,93 @@ public virtual string connectionreferencedisplayname partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._statecode; + return this._utcconversiontimezonecode; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property connectionreferencedisplayname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual string connectionreferencedisplayname { get { - return this._versionnumber; + return this._connectionreferencedisplayname; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnconnectionreferencedisplaynameChanging(value); + this._connectionreferencedisplayname = value; + this.OnconnectionreferencedisplaynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private string _connectionreferencedisplayname; + partial void OnconnectionreferencedisplaynameChanging(string value); + partial void OnconnectionreferencedisplaynameChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable statecode { get { - return this.__modifiedby_value; + return this._statecode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable versionnumber { get { - return this.__modifiedonbehalfby_value; + return this._versionnumber; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -159000,27 +159044,27 @@ public virtual string connectionreferencedisplayname partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _modifiedby_value { get { - return this._utcconversiontimezonecode; + return this.__modifiedby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property iscustomizable in the schema. /// @@ -159044,93 +159088,49 @@ public virtual string connectionreferencedisplayname partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// - /// There are no comments for Property connectionreferencelogicalname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string connectionreferencelogicalname - { - get - { - return this._connectionreferencelogicalname; - } - set - { - this.OnconnectionreferencelogicalnameChanging(value); - this._connectionreferencelogicalname = value; - this.OnconnectionreferencelogicalnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _connectionreferencelogicalname; - partial void OnconnectionreferencelogicalnameChanging(string value); - partial void OnconnectionreferencelogicalnameChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__owningbusinessunit_value; + return this._overriddencreatedon; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property componentidunique in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentidunique + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._componentidunique; + return this.__modifiedonbehalfby_value; } set { - this.OncomponentiduniqueChanging(value); - this._componentidunique = value; - this.OncomponentiduniqueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentidunique; - partial void OncomponentiduniqueChanging(global::System.Nullable value); - partial void OncomponentiduniqueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -159940,71 +159940,27 @@ public static connectionrole Createconnectionrole(global::EMBC.ESS.Utilities.Dyn partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._componentstate; + return this.__modifiedonbehalfby_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -160072,27 +160028,27 @@ public virtual string description partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this._createdon; + return this._iscustomizable; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -160116,93 +160072,93 @@ public virtual string description partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable solutionid { get { - return this._name; + return this._solutionid; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual string name { get { - return this._solutionid; + return this._name; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable statuscode { get { - return this.__modifiedonbehalfby_value; + return this._statuscode; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property category in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable category + public virtual global::System.Nullable createdon { get { - return this._category; + return this._createdon; } set { - this.OncategoryChanging(value); - this._category = value; - this.OncategoryChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _category; - partial void OncategoryChanging(global::System.Nullable value); - partial void OncategoryChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -160248,27 +160204,27 @@ public virtual string name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable versionnumber { get { - return this._iscustomizable; + return this._versionnumber; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property connectionroleid in the schema. /// @@ -160336,6 +160292,28 @@ public virtual string name partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -160358,27 +160336,49 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property category in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable category { get { - return this._introducedversion; + return this._category; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.OncategoryChanging(value); + this._category = value; + this.OncategoryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable _category; + partial void OncategoryChanging(global::System.Nullable value); + partial void OncategoryChanged(); + /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -167145,6 +167145,28 @@ public virtual string policytemplateinstances partial void OnpolicytemplateinstancesChanging(string value); partial void OnpolicytemplateinstancesChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -167277,28 +167299,6 @@ public virtual string policytemplateinstances partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property iconblob_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -168612,50 +168612,6 @@ public static constraintbasedgroup Createconstraintbasedgroup(global::EMBC.ESS.U return constraintbasedgroup; } /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property grouptypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -168722,6 +168678,50 @@ public virtual string description partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -168788,27 +168788,27 @@ public virtual string description partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__createdonbehalfby_value; + return this.__organizationid_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -168832,28 +168832,6 @@ public virtual string description partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property constraintbasedgroupid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -168986,6 +168964,28 @@ public virtual string constraints partial void OnconstraintsChanging(string value); partial void OnconstraintsChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -170403,28 +170403,6 @@ public partial class contactorders : crmbaseentity partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property contactid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -170469,6 +170447,28 @@ public partial class contactorders : crmbaseentity partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property salesorderid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable salesorderid + { + get + { + return this._salesorderid; + } + set + { + this.OnsalesorderidChanging(value); + this._salesorderid = value; + this.OnsalesorderidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _salesorderid; + partial void OnsalesorderidChanging(global::System.Nullable value); + partial void OnsalesorderidChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -170513,27 +170513,27 @@ public virtual string name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property salesorderid in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable salesorderid + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._salesorderid; + return this._utcconversiontimezonecode; } set { - this.OnsalesorderidChanging(value); - this._salesorderid = value; - this.OnsalesorderidChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _salesorderid; - partial void OnsalesorderidChanging(global::System.Nullable value); - partial void OnsalesorderidChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property contactorders_AsyncOperations in the schema. /// @@ -173470,28 +173470,6 @@ public static contact Createcontact(global::EMBC.ESS.Utilities.Dynamics.Microsof return contact; } /// - /// There are no comments for Property onholdtime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable onholdtime - { - get - { - return this._onholdtime; - } - set - { - this.OnonholdtimeChanging(value); - this._onholdtime = value; - this.OnonholdtimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _onholdtime; - partial void OnonholdtimeChanging(global::System.Nullable value); - partial void OnonholdtimeChanged(); - /// /// There are no comments for Property address3_latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -173536,6 +173514,28 @@ public static contact Createcontact(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void Onaddress1_longitudeChanging(global::System.Nullable value); partial void Onaddress1_longitudeChanged(); /// + /// There are no comments for Property numberofchildren in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable numberofchildren + { + get + { + return this._numberofchildren; + } + set + { + this.OnnumberofchildrenChanging(value); + this._numberofchildren = value; + this.OnnumberofchildrenChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _numberofchildren; + partial void OnnumberofchildrenChanging(global::System.Nullable value); + partial void OnnumberofchildrenChanged(); + /// /// There are no comments for Property customersizecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -173558,6 +173558,28 @@ public static contact Createcontact(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void OncustomersizecodeChanging(global::System.Nullable value); partial void OncustomersizecodeChanged(); /// + /// There are no comments for Property yomifullname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string yomifullname + { + get + { + return this._yomifullname; + } + set + { + this.OnyomifullnameChanging(value); + this._yomifullname = value; + this.OnyomifullnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _yomifullname; + partial void OnyomifullnameChanging(string value); + partial void OnyomifullnameChanged(); + /// /// There are no comments for Property address2_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -173580,27 +173602,27 @@ public virtual string address2_name partial void Onaddress2_nameChanging(string value); partial void Onaddress2_nameChanged(); /// - /// There are no comments for Property anniversary in the schema. + /// There are no comments for Property managerphone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable anniversary + public virtual string managerphone { get { - return this._anniversary; + return this._managerphone; } set { - this.OnanniversaryChanging(value); - this._anniversary = value; - this.OnanniversaryChanged(); + this.OnmanagerphoneChanging(value); + this._managerphone = value; + this.OnmanagerphoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _anniversary; - partial void OnanniversaryChanging(global::System.Nullable value); - partial void OnanniversaryChanged(); + private string _managerphone; + partial void OnmanagerphoneChanging(string value); + partial void OnmanagerphoneChanged(); /// /// There are no comments for Property governmentid in the schema. /// @@ -173646,28 +173668,6 @@ public virtual string assistantname partial void OnassistantnameChanging(string value); partial void OnassistantnameChanged(); /// - /// There are no comments for Property msdyn_gdproptout in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_gdproptout - { - get - { - return this._msdyn_gdproptout; - } - set - { - this.Onmsdyn_gdproptoutChanging(value); - this._msdyn_gdproptout = value; - this.Onmsdyn_gdproptoutChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_gdproptout; - partial void Onmsdyn_gdproptoutChanging(global::System.Nullable value); - partial void Onmsdyn_gdproptoutChanged(); - /// /// There are no comments for Property creditlimit in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -173690,28 +173690,6 @@ public virtual string assistantname partial void OncreditlimitChanging(global::System.Nullable value); partial void OncreditlimitChanged(); /// - /// There are no comments for Property emailaddress1 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string emailaddress1 - { - get - { - return this._emailaddress1; - } - set - { - this.Onemailaddress1Changing(value); - this._emailaddress1 = value; - this.Onemailaddress1Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress1; - partial void Onemailaddress1Changing(string value); - partial void Onemailaddress1Changed(); - /// /// There are no comments for Property participatesinworkflow in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -173778,6 +173756,28 @@ public virtual string timespentbymeonemailandmeetings partial void OnfollowemailChanging(global::System.Nullable value); partial void OnfollowemailChanged(); /// + /// There are no comments for Property telephone1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string telephone1 + { + get + { + return this._telephone1; + } + set + { + this.Ontelephone1Changing(value); + this._telephone1 = value; + this.Ontelephone1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _telephone1; + partial void Ontelephone1Changing(string value); + partial void Ontelephone1Changed(); + /// /// There are no comments for Property aging60 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -173800,6 +173800,28 @@ public virtual string timespentbymeonemailandmeetings partial void Onaging60Changing(global::System.Nullable value); partial void Onaging60Changed(); /// + /// There are no comments for Property entityimage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual byte[] entityimage + { + get + { + return this._entityimage; + } + set + { + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -173866,28 +173888,6 @@ public virtual string address2_line3 partial void Onaddress2_line3Changing(string value); partial void Onaddress2_line3Changed(); /// - /// There are no comments for Property suffix in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string suffix - { - get - { - return this._suffix; - } - set - { - this.OnsuffixChanging(value); - this._suffix = value; - this.OnsuffixChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _suffix; - partial void OnsuffixChanging(string value); - partial void OnsuffixChanged(); - /// /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -173932,27 +173932,27 @@ public virtual string suffix partial void Onannualincome_baseChanging(global::System.Nullable value); partial void Onannualincome_baseChanged(); /// - /// There are no comments for Property address2_longitude in the schema. + /// There are no comments for Property address3_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_longitude + public virtual string address3_postofficebox { get { - return this._address2_longitude; + return this._address3_postofficebox; } set { - this.Onaddress2_longitudeChanging(value); - this._address2_longitude = value; - this.Onaddress2_longitudeChanged(); + this.Onaddress3_postofficeboxChanging(value); + this._address3_postofficebox = value; + this.Onaddress3_postofficeboxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_longitude; - partial void Onaddress2_longitudeChanging(global::System.Nullable value); - partial void Onaddress2_longitudeChanged(); + private string _address3_postofficebox; + partial void Onaddress3_postofficeboxChanging(string value); + partial void Onaddress3_postofficeboxChanged(); /// /// There are no comments for Property address2_primarycontactname in the schema. /// @@ -173976,27 +173976,27 @@ public virtual string address2_primarycontactname partial void Onaddress2_primarycontactnameChanging(string value); partial void Onaddress2_primarycontactnameChanged(); /// - /// There are no comments for Property address1_latitude in the schema. + /// There are no comments for Property address2_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_latitude + public virtual global::System.Nullable address2_shippingmethodcode { get { - return this._address1_latitude; + return this._address2_shippingmethodcode; } set { - this.Onaddress1_latitudeChanging(value); - this._address1_latitude = value; - this.Onaddress1_latitudeChanged(); + this.Onaddress2_shippingmethodcodeChanging(value); + this._address2_shippingmethodcode = value; + this.Onaddress2_shippingmethodcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_latitude; - partial void Onaddress1_latitudeChanging(global::System.Nullable value); - partial void Onaddress1_latitudeChanged(); + private global::System.Nullable _address2_shippingmethodcode; + partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress2_shippingmethodcodeChanged(); /// /// There are no comments for Property address1_addresstypecode in the schema. /// @@ -174020,71 +174020,49 @@ public virtual string address2_primarycontactname partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); partial void Onaddress1_addresstypecodeChanged(); /// - /// There are no comments for Property emailaddress2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string emailaddress2 - { - get - { - return this._emailaddress2; - } - set - { - this.Onemailaddress2Changing(value); - this._emailaddress2 = value; - this.Onemailaddress2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress2; - partial void Onemailaddress2Changing(string value); - partial void Onemailaddress2Changed(); - /// - /// There are no comments for Property middlename in the schema. + /// There are no comments for Property address2_county in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string middlename + public virtual string address2_county { get { - return this._middlename; + return this._address2_county; } set { - this.OnmiddlenameChanging(value); - this._middlename = value; - this.OnmiddlenameChanged(); + this.Onaddress2_countyChanging(value); + this._address2_county = value; + this.Onaddress2_countyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _middlename; - partial void OnmiddlenameChanging(string value); - partial void OnmiddlenameChanged(); + private string _address2_county; + partial void Onaddress2_countyChanging(string value); + partial void Onaddress2_countyChanged(); /// - /// There are no comments for Property address2_county in the schema. + /// There are no comments for Property _createdbyexternalparty_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_county + public virtual global::System.Nullable _createdbyexternalparty_value { get { - return this._address2_county; + return this.__createdbyexternalparty_value; } set { - this.Onaddress2_countyChanging(value); - this._address2_county = value; - this.Onaddress2_countyChanged(); + this.On_createdbyexternalparty_valueChanging(value); + this.__createdbyexternalparty_value = value; + this.On_createdbyexternalparty_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_county; - partial void Onaddress2_countyChanging(string value); - partial void Onaddress2_countyChanged(); + private global::System.Nullable __createdbyexternalparty_value; + partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); + partial void On_createdbyexternalparty_valueChanged(); /// /// There are no comments for Property birthdate in the schema. /// @@ -174152,28 +174130,6 @@ public virtual string address2_county partial void OnsubscriptionidChanging(global::System.Nullable value); partial void OnsubscriptionidChanged(); /// - /// There are no comments for Property era_securityquestiontext1 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_securityquestiontext1 - { - get - { - return this._era_securityquestiontext1; - } - set - { - this.Onera_securityquestiontext1Changing(value); - this._era_securityquestiontext1 = value; - this.Onera_securityquestiontext1Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_securityquestiontext1; - partial void Onera_securityquestiontext1Changing(string value); - partial void Onera_securityquestiontext1Changed(); - /// /// There are no comments for Property address2_latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -174240,6 +174196,28 @@ public virtual string address3_telephone2 partial void Onaddress3_telephone2Changing(string value); partial void Onaddress3_telephone2Changed(); /// + /// There are no comments for Property anniversary in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable anniversary + { + get + { + return this._anniversary; + } + set + { + this.OnanniversaryChanging(value); + this._anniversary = value; + this.OnanniversaryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _anniversary; + partial void OnanniversaryChanging(global::System.Nullable value); + partial void OnanniversaryChanged(); + /// /// There are no comments for Property address3_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -174328,28 +174306,6 @@ public virtual string address2_upszone partial void Onaddress2_upszoneChanging(string value); partial void Onaddress2_upszoneChanged(); /// - /// There are no comments for Property traversedpath in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string traversedpath - { - get - { - return this._traversedpath; - } - set - { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -174460,6 +174416,28 @@ public virtual string address3_line3 partial void Onaddress3_line3Changing(string value); partial void Onaddress3_line3Changed(); /// + /// There are no comments for Property address2_utcoffset in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address2_utcoffset + { + get + { + return this._address2_utcoffset; + } + set + { + this.Onaddress2_utcoffsetChanging(value); + this._address2_utcoffset = value; + this.Onaddress2_utcoffsetChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address2_utcoffset; + partial void Onaddress2_utcoffsetChanging(global::System.Nullable value); + partial void Onaddress2_utcoffsetChanged(); + /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -174504,6 +174482,28 @@ public virtual string address3_line3 partial void On_era_city_valueChanging(global::System.Nullable value); partial void On_era_city_valueChanged(); /// + /// There are no comments for Property address3_telephone3 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address3_telephone3 + { + get + { + return this._address3_telephone3; + } + set + { + this.Onaddress3_telephone3Changing(value); + this._address3_telephone3 = value; + this.Onaddress3_telephone3Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address3_telephone3; + partial void Onaddress3_telephone3Changing(string value); + partial void Onaddress3_telephone3Changed(); + /// /// There are no comments for Property address2_freighttermscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -174548,49 +174548,49 @@ public virtual string address3_line3 partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property emailaddress3 in the schema. + /// There are no comments for Property address1_county in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailaddress3 + public virtual string address1_county { get { - return this._emailaddress3; + return this._address1_county; } set { - this.Onemailaddress3Changing(value); - this._emailaddress3 = value; - this.Onemailaddress3Changed(); + this.Onaddress1_countyChanging(value); + this._address1_county = value; + this.Onaddress1_countyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress3; - partial void Onemailaddress3Changing(string value); - partial void Onemailaddress3Changed(); + private string _address1_county; + partial void Onaddress1_countyChanging(string value); + partial void Onaddress1_countyChanged(); /// - /// There are no comments for Property fullname in the schema. + /// There are no comments for Property era_lastlogin in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string fullname + public virtual global::System.Nullable era_lastlogin { get { - return this._fullname; + return this._era_lastlogin; } set { - this.OnfullnameChanging(value); - this._fullname = value; - this.OnfullnameChanged(); + this.Onera_lastloginChanging(value); + this._era_lastlogin = value; + this.Onera_lastloginChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _fullname; - partial void OnfullnameChanging(string value); - partial void OnfullnameChanged(); + private global::System.Nullable _era_lastlogin; + partial void Onera_lastloginChanging(global::System.Nullable value); + partial void Onera_lastloginChanged(); /// /// There are no comments for Property _masterid_value in the schema. /// @@ -174680,49 +174680,49 @@ public virtual string fullname partial void OnpaymenttermscodeChanging(global::System.Nullable value); partial void OnpaymenttermscodeChanged(); /// - /// There are no comments for Property _preferredserviceid_value in the schema. + /// There are no comments for Property lastonholdtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _preferredserviceid_value + public virtual global::System.Nullable lastonholdtime { get { - return this.__preferredserviceid_value; + return this._lastonholdtime; } set { - this.On_preferredserviceid_valueChanging(value); - this.__preferredserviceid_value = value; - this.On_preferredserviceid_valueChanged(); + this.OnlastonholdtimeChanging(value); + this._lastonholdtime = value; + this.OnlastonholdtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __preferredserviceid_value; - partial void On_preferredserviceid_valueChanging(global::System.Nullable value); - partial void On_preferredserviceid_valueChanged(); + private global::System.Nullable _lastonholdtime; + partial void OnlastonholdtimeChanging(global::System.Nullable value); + partial void OnlastonholdtimeChanged(); /// - /// There are no comments for Property address2_composite in the schema. + /// There are no comments for Property _preferredserviceid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_composite + public virtual global::System.Nullable _preferredserviceid_value { get { - return this._address2_composite; + return this.__preferredserviceid_value; } set { - this.Onaddress2_compositeChanging(value); - this._address2_composite = value; - this.Onaddress2_compositeChanged(); + this.On_preferredserviceid_valueChanging(value); + this.__preferredserviceid_value = value; + this.On_preferredserviceid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_composite; - partial void Onaddress2_compositeChanging(string value); - partial void Onaddress2_compositeChanged(); + private global::System.Nullable __preferredserviceid_value; + partial void On_preferredserviceid_valueChanging(global::System.Nullable value); + partial void On_preferredserviceid_valueChanged(); /// /// There are no comments for Property address1_addressid in the schema. /// @@ -174746,49 +174746,49 @@ public virtual string address2_composite partial void Onaddress1_addressidChanging(global::System.Nullable value); partial void Onaddress1_addressidChanged(); /// - /// There are no comments for Property salutation in the schema. + /// There are no comments for Property address2_composite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string salutation + public virtual string address2_composite { get { - return this._salutation; + return this._address2_composite; } set { - this.OnsalutationChanging(value); - this._salutation = value; - this.OnsalutationChanged(); + this.Onaddress2_compositeChanging(value); + this._address2_composite = value; + this.Onaddress2_compositeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _salutation; - partial void OnsalutationChanging(string value); - partial void OnsalutationChanged(); + private string _address2_composite; + partial void Onaddress2_compositeChanging(string value); + partial void Onaddress2_compositeChanged(); /// - /// There are no comments for Property telephone3 in the schema. + /// There are no comments for Property salutation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string telephone3 + public virtual string salutation { get { - return this._telephone3; + return this._salutation; } set { - this.Ontelephone3Changing(value); - this._telephone3 = value; - this.Ontelephone3Changed(); + this.OnsalutationChanging(value); + this._salutation = value; + this.OnsalutationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _telephone3; - partial void Ontelephone3Changing(string value); - partial void Ontelephone3Changed(); + private string _salutation; + partial void OnsalutationChanging(string value); + partial void OnsalutationChanged(); /// /// There are no comments for Property preferredcontactmethodcode in the schema. /// @@ -174812,27 +174812,49 @@ public virtual string telephone3 partial void OnpreferredcontactmethodcodeChanging(global::System.Nullable value); partial void OnpreferredcontactmethodcodeChanged(); /// - /// There are no comments for Property address2_utcoffset in the schema. + /// There are no comments for Property aging60_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_utcoffset + public virtual global::System.Nullable aging60_base { get { - return this._address2_utcoffset; + return this._aging60_base; } set { - this.Onaddress2_utcoffsetChanging(value); - this._address2_utcoffset = value; - this.Onaddress2_utcoffsetChanged(); + this.Onaging60_baseChanging(value); + this._aging60_base = value; + this.Onaging60_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_utcoffset; - partial void Onaddress2_utcoffsetChanging(global::System.Nullable value); - partial void Onaddress2_utcoffsetChanged(); + private global::System.Nullable _aging60_base; + partial void Onaging60_baseChanging(global::System.Nullable value); + partial void Onaging60_baseChanged(); + /// + /// There are no comments for Property address3_longitude in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address3_longitude + { + get + { + return this._address3_longitude; + } + set + { + this.Onaddress3_longitudeChanging(value); + this._address3_longitude = value; + this.Onaddress3_longitudeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address3_longitude; + partial void Onaddress3_longitudeChanging(global::System.Nullable value); + partial void Onaddress3_longitudeChanged(); /// /// There are no comments for Property _era_reviewedbyid_value in the schema. /// @@ -174878,6 +174900,28 @@ public virtual string websiteurl partial void OnwebsiteurlChanging(string value); partial void OnwebsiteurlChanged(); /// + /// There are no comments for Property entityimage_url in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string entityimage_url + { + get + { + return this._entityimage_url; + } + set + { + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); + /// /// There are no comments for Property employeeid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -174900,71 +174944,137 @@ public virtual string employeeid partial void OnemployeeidChanging(string value); partial void OnemployeeidChanged(); /// - /// There are no comments for Property processid in the schema. + /// There are no comments for Property fullname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processid + public virtual string fullname { get { - return this._processid; + return this._fullname; } set { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); + this.OnfullnameChanging(value); + this._fullname = value; + this.OnfullnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); + private string _fullname; + partial void OnfullnameChanging(string value); + partial void OnfullnameChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property spousesname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual string spousesname { get { - return this._entityimage_url; + return this._spousesname; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.OnspousesnameChanging(value); + this._spousesname = value; + this.OnspousesnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private string _spousesname; + partial void OnspousesnameChanging(string value); + partial void OnspousesnameChanged(); /// - /// There are no comments for Property address3_shippingmethodcode in the schema. + /// There are no comments for Property emailaddress3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address3_shippingmethodcode + public virtual string emailaddress3 { get { - return this._address3_shippingmethodcode; + return this._emailaddress3; } set { - this.Onaddress3_shippingmethodcodeChanging(value); - this._address3_shippingmethodcode = value; - this.Onaddress3_shippingmethodcodeChanged(); + this.Onemailaddress3Changing(value); + this._emailaddress3 = value; + this.Onemailaddress3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address3_shippingmethodcode; - partial void Onaddress3_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress3_shippingmethodcodeChanged(); + private string _emailaddress3; + partial void Onemailaddress3Changing(string value); + partial void Onemailaddress3Changed(); + /// + /// There are no comments for Property _era_mailingcountry_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_mailingcountry_value + { + get + { + return this.__era_mailingcountry_value; + } + set + { + this.On_era_mailingcountry_valueChanging(value); + this.__era_mailingcountry_value = value; + this.On_era_mailingcountry_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_mailingcountry_value; + partial void On_era_mailingcountry_valueChanging(global::System.Nullable value); + partial void On_era_mailingcountry_valueChanged(); + /// + /// There are no comments for Property _era_provincestate_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_provincestate_value + { + get + { + return this.__era_provincestate_value; + } + set + { + this.On_era_provincestate_valueChanging(value); + this.__era_provincestate_value = value; + this.On_era_provincestate_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_provincestate_value; + partial void On_era_provincestate_valueChanging(global::System.Nullable value); + partial void On_era_provincestate_valueChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property businesscard in the schema. /// @@ -175054,49 +175164,49 @@ public virtual string address1_name partial void OneducationcodeChanging(global::System.Nullable value); partial void OneducationcodeChanged(); /// - /// There are no comments for Property address3_stateorprovince in the schema. + /// There are no comments for Property donotemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_stateorprovince + public virtual global::System.Nullable donotemail { get { - return this._address3_stateorprovince; + return this._donotemail; } set { - this.Onaddress3_stateorprovinceChanging(value); - this._address3_stateorprovince = value; - this.Onaddress3_stateorprovinceChanged(); + this.OndonotemailChanging(value); + this._donotemail = value; + this.OndonotemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_stateorprovince; - partial void Onaddress3_stateorprovinceChanging(string value); - partial void Onaddress3_stateorprovinceChanged(); + private global::System.Nullable _donotemail; + partial void OndonotemailChanging(global::System.Nullable value); + partial void OndonotemailChanged(); /// - /// There are no comments for Property address1_line2 in the schema. + /// There are no comments for Property address3_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_line2 + public virtual global::System.Nullable address3_shippingmethodcode { get { - return this._address1_line2; + return this._address3_shippingmethodcode; } set { - this.Onaddress1_line2Changing(value); - this._address1_line2 = value; - this.Onaddress1_line2Changed(); + this.Onaddress3_shippingmethodcodeChanging(value); + this._address3_shippingmethodcode = value; + this.Onaddress3_shippingmethodcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line2; - partial void Onaddress1_line2Changing(string value); - partial void Onaddress1_line2Changed(); + private global::System.Nullable _address3_shippingmethodcode; + partial void Onaddress3_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress3_shippingmethodcodeChanged(); /// /// There are no comments for Property address1_fax in the schema. /// @@ -175120,27 +175230,27 @@ public virtual string address1_fax partial void Onaddress1_faxChanging(string value); partial void Onaddress1_faxChanged(); /// - /// There are no comments for Property lastusedincampaign in the schema. + /// There are no comments for Property address3_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lastusedincampaign + public virtual string address3_fax { get { - return this._lastusedincampaign; + return this._address3_fax; } set { - this.OnlastusedincampaignChanging(value); - this._lastusedincampaign = value; - this.OnlastusedincampaignChanged(); + this.Onaddress3_faxChanging(value); + this._address3_fax = value; + this.Onaddress3_faxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastusedincampaign; - partial void OnlastusedincampaignChanging(global::System.Nullable value); - partial void OnlastusedincampaignChanged(); + private string _address3_fax; + partial void Onaddress3_faxChanging(string value); + partial void Onaddress3_faxChanged(); /// /// There are no comments for Property yomifirstname in the schema. /// @@ -175186,27 +175296,27 @@ public virtual string callback partial void OncallbackChanging(string value); partial void OncallbackChanged(); /// - /// There are no comments for Property address3_fax in the schema. + /// There are no comments for Property territorycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_fax + public virtual global::System.Nullable territorycode { get { - return this._address3_fax; + return this._territorycode; } set { - this.Onaddress3_faxChanging(value); - this._address3_fax = value; - this.Onaddress3_faxChanged(); + this.OnterritorycodeChanging(value); + this._territorycode = value; + this.OnterritorycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_fax; - partial void Onaddress3_faxChanging(string value); - partial void Onaddress3_faxChanged(); + private global::System.Nullable _territorycode; + partial void OnterritorycodeChanging(global::System.Nullable value); + partial void OnterritorycodeChanged(); /// /// There are no comments for Property address1_composite in the schema. /// @@ -175274,27 +175384,49 @@ public virtual string address2_line1 partial void Onaddress2_line1Changing(string value); partial void Onaddress2_line1Changed(); /// - /// There are no comments for Property era_securityquestion2answer in the schema. + /// There are no comments for Property familystatuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_securityquestion2answer + public virtual global::System.Nullable familystatuscode { get { - return this._era_securityquestion2answer; + return this._familystatuscode; } set { - this.Onera_securityquestion2answerChanging(value); - this._era_securityquestion2answer = value; - this.Onera_securityquestion2answerChanged(); + this.OnfamilystatuscodeChanging(value); + this._familystatuscode = value; + this.OnfamilystatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_securityquestion2answer; - partial void Onera_securityquestion2answerChanging(string value); - partial void Onera_securityquestion2answerChanged(); + private global::System.Nullable _familystatuscode; + partial void OnfamilystatuscodeChanging(global::System.Nullable value); + partial void OnfamilystatuscodeChanged(); + /// + /// There are no comments for Property address3_primarycontactname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address3_primarycontactname + { + get + { + return this._address3_primarycontactname; + } + set + { + this.Onaddress3_primarycontactnameChanging(value); + this._address3_primarycontactname = value; + this.Onaddress3_primarycontactnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address3_primarycontactname; + partial void Onaddress3_primarycontactnameChanging(string value); + partial void Onaddress3_primarycontactnameChanged(); /// /// There are no comments for Property _parentcontactid_value in the schema. /// @@ -175384,49 +175516,49 @@ public virtual string mobilephone partial void Onaging30Changing(global::System.Nullable value); partial void Onaging30Changed(); /// - /// There are no comments for Property _accountid_value in the schema. + /// There are no comments for Property era_securityquestion2answer in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _accountid_value + public virtual string era_securityquestion2answer { get { - return this.__accountid_value; + return this._era_securityquestion2answer; } set { - this.On_accountid_valueChanging(value); - this.__accountid_value = value; - this.On_accountid_valueChanged(); + this.Onera_securityquestion2answerChanging(value); + this._era_securityquestion2answer = value; + this.Onera_securityquestion2answerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __accountid_value; - partial void On_accountid_valueChanging(global::System.Nullable value); - partial void On_accountid_valueChanged(); + private string _era_securityquestion2answer; + partial void Onera_securityquestion2answerChanging(string value); + partial void Onera_securityquestion2answerChanged(); /// - /// There are no comments for Property address1_telephone1 in the schema. + /// There are no comments for Property lastusedincampaign in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone1 + public virtual global::System.Nullable lastusedincampaign { get { - return this._address1_telephone1; + return this._lastusedincampaign; } set { - this.Onaddress1_telephone1Changing(value); - this._address1_telephone1 = value; - this.Onaddress1_telephone1Changed(); + this.OnlastusedincampaignChanging(value); + this._lastusedincampaign = value; + this.OnlastusedincampaignChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone1; - partial void Onaddress1_telephone1Changing(string value); - partial void Onaddress1_telephone1Changed(); + private global::System.Nullable _lastusedincampaign; + partial void OnlastusedincampaignChanging(global::System.Nullable value); + partial void OnlastusedincampaignChanged(); /// /// There are no comments for Property jobtitle in the schema. /// @@ -175472,49 +175604,49 @@ public virtual string address1_stateorprovince partial void Onaddress1_stateorprovinceChanging(string value); partial void Onaddress1_stateorprovinceChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property donotbulkpostalmail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable donotbulkpostalmail { get { - return this._statuscode; + return this._donotbulkpostalmail; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OndonotbulkpostalmailChanging(value); + this._donotbulkpostalmail = value; + this.OndonotbulkpostalmailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _donotbulkpostalmail; + partial void OndonotbulkpostalmailChanging(global::System.Nullable value); + partial void OndonotbulkpostalmailChanged(); /// - /// There are no comments for Property address1_telephone2 in the schema. + /// There are no comments for Property onholdtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone2 + public virtual global::System.Nullable onholdtime { get { - return this._address1_telephone2; + return this._onholdtime; } set { - this.Onaddress1_telephone2Changing(value); - this._address1_telephone2 = value; - this.Onaddress1_telephone2Changed(); + this.OnonholdtimeChanging(value); + this._onholdtime = value; + this.OnonholdtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone2; - partial void Onaddress1_telephone2Changing(string value); - partial void Onaddress1_telephone2Changed(); + private global::System.Nullable _onholdtime; + partial void OnonholdtimeChanging(global::System.Nullable value); + partial void OnonholdtimeChanged(); /// /// There are no comments for Property yomilastname in the schema. /// @@ -175538,6 +175670,28 @@ public virtual string yomilastname partial void OnyomilastnameChanging(string value); partial void OnyomilastnameChanged(); /// + /// There are no comments for Property entityimageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable entityimageid + { + get + { + return this._entityimageid; + } + set + { + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); + /// /// There are no comments for Property era_sitesuppliernumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -175648,27 +175802,49 @@ public virtual string address3_line1 partial void Onaddress3_line1Changing(string value); partial void Onaddress3_line1Changed(); /// - /// There are no comments for Property _slaid_value in the schema. + /// There are no comments for Property emailaddress2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _slaid_value + public virtual string emailaddress2 { get { - return this.__slaid_value; + return this._emailaddress2; } set { - this.On_slaid_valueChanging(value); - this.__slaid_value = value; - this.On_slaid_valueChanged(); + this.Onemailaddress2Changing(value); + this._emailaddress2 = value; + this.Onemailaddress2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __slaid_value; - partial void On_slaid_valueChanging(global::System.Nullable value); - partial void On_slaid_valueChanged(); + private string _emailaddress2; + partial void Onemailaddress2Changing(string value); + partial void Onemailaddress2Changed(); + /// + /// There are no comments for Property suffix in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string suffix + { + get + { + return this._suffix; + } + set + { + this.OnsuffixChanging(value); + this._suffix = value; + this.OnsuffixChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _suffix; + partial void OnsuffixChanging(string value); + partial void OnsuffixChanged(); /// /// There are no comments for Property donotphone in the schema. /// @@ -175714,6 +175890,50 @@ public virtual string address1_line1 partial void Onaddress1_line1Changing(string value); partial void Onaddress1_line1Changed(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property address2_line2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_line2 + { + get + { + return this._address2_line2; + } + set + { + this.Onaddress2_line2Changing(value); + this._address2_line2 = value; + this.Onaddress2_line2Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_line2; + partial void Onaddress2_line2Changing(string value); + partial void Onaddress2_line2Changed(); + /// /// There are no comments for Property isbackofficecustomer in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -175736,27 +175956,27 @@ public virtual string address1_line1 partial void OnisbackofficecustomerChanging(global::System.Nullable value); partial void OnisbackofficecustomerChanged(); /// - /// There are no comments for Property address3_telephone3 in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_telephone3 + public virtual global::System.Nullable statuscode { get { - return this._address3_telephone3; + return this._statuscode; } set { - this.Onaddress3_telephone3Changing(value); - this._address3_telephone3 = value; - this.Onaddress3_telephone3Changed(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_telephone3; - partial void Onaddress3_telephone3Changing(string value); - partial void Onaddress3_telephone3Changed(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property nickname in the schema. /// @@ -175824,28 +176044,6 @@ public virtual string childrensnames partial void On_preferredequipmentid_valueChanging(global::System.Nullable value); partial void On_preferredequipmentid_valueChanged(); /// - /// There are no comments for Property era_securityquestiontext2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_securityquestiontext2 - { - get - { - return this._era_securityquestiontext2; - } - set - { - this.Onera_securityquestiontext2Changing(value); - this._era_securityquestiontext2 = value; - this.Onera_securityquestiontext2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_securityquestiontext2; - partial void Onera_securityquestiontext2Changing(string value); - partial void Onera_securityquestiontext2Changed(); - /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -175868,28 +176066,6 @@ public virtual string era_securityquestiontext2 partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property era_securityquestion3answer in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_securityquestion3answer - { - get - { - return this._era_securityquestion3answer; - } - set - { - this.Onera_securityquestion3answerChanging(value); - this._era_securityquestion3answer = value; - this.Onera_securityquestion3answerChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_securityquestion3answer; - partial void Onera_securityquestion3answerChanging(string value); - partial void Onera_securityquestion3answerChanged(); - /// /// There are no comments for Property msdyn_orgchangestatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -175934,27 +176110,49 @@ public virtual string era_securityquestion3answer partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property donotemail in the schema. + /// There are no comments for Property address1_latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable donotemail + public virtual global::System.Nullable address1_latitude { get { - return this._donotemail; + return this._address1_latitude; } set { - this.OndonotemailChanging(value); - this._donotemail = value; - this.OndonotemailChanged(); + this.Onaddress1_latitudeChanging(value); + this._address1_latitude = value; + this.Onaddress1_latitudeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotemail; - partial void OndonotemailChanging(global::System.Nullable value); - partial void OndonotemailChanged(); + private global::System.Nullable _address1_latitude; + partial void Onaddress1_latitudeChanging(global::System.Nullable value); + partial void Onaddress1_latitudeChanged(); + /// + /// There are no comments for Property _accountid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _accountid_value + { + get + { + return this.__accountid_value; + } + set + { + this.On_accountid_valueChanging(value); + this.__accountid_value = value; + this.On_accountid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __accountid_value; + partial void On_accountid_valueChanging(global::System.Nullable value); + partial void On_accountid_valueChanged(); /// /// There are no comments for Property _era_mailingcity_value in the schema. /// @@ -176000,6 +176198,50 @@ public virtual string era_securityquestion3answer partial void Onaddress1_freighttermscodeChanging(global::System.Nullable value); partial void Onaddress1_freighttermscodeChanged(); /// + /// There are no comments for Property address3_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address3_name + { + get + { + return this._address3_name; + } + set + { + this.Onaddress3_nameChanging(value); + this._address3_name = value; + this.Onaddress3_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address3_name; + partial void Onaddress3_nameChanging(string value); + partial void Onaddress3_nameChanged(); + /// + /// There are no comments for Property era_authenticated in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_authenticated + { + get + { + return this._era_authenticated; + } + set + { + this.Onera_authenticatedChanging(value); + this._era_authenticated = value; + this.Onera_authenticatedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_authenticated; + partial void Onera_authenticatedChanging(global::System.Nullable value); + partial void Onera_authenticatedChanged(); + /// /// There are no comments for Property address1_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -176044,27 +176286,27 @@ public virtual string address1_city partial void OncustomertypecodeChanging(global::System.Nullable value); partial void OncustomertypecodeChanged(); /// - /// There are no comments for Property address1_shippingmethodcode in the schema. + /// There are no comments for Property era_registrationdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_shippingmethodcode + public virtual global::System.Nullable era_registrationdate { get { - return this._address1_shippingmethodcode; + return this._era_registrationdate; } set { - this.Onaddress1_shippingmethodcodeChanging(value); - this._address1_shippingmethodcode = value; - this.Onaddress1_shippingmethodcodeChanged(); + this.Onera_registrationdateChanging(value); + this._era_registrationdate = value; + this.Onera_registrationdateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_shippingmethodcode; - partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress1_shippingmethodcodeChanged(); + private global::System.Nullable _era_registrationdate; + partial void Onera_registrationdateChanging(global::System.Nullable value); + partial void Onera_registrationdateChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -176198,27 +176440,27 @@ public virtual string yomimiddlename partial void OnstageidChanging(global::System.Nullable value); partial void OnstageidChanged(); /// - /// There are no comments for Property donotbulkpostalmail in the schema. + /// There are no comments for Property address1_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable donotbulkpostalmail + public virtual string address1_telephone1 { get { - return this._donotbulkpostalmail; + return this._address1_telephone1; } set { - this.OndonotbulkpostalmailChanging(value); - this._donotbulkpostalmail = value; - this.OndonotbulkpostalmailChanged(); + this.Onaddress1_telephone1Changing(value); + this._address1_telephone1 = value; + this.Onaddress1_telephone1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotbulkpostalmail; - partial void OndonotbulkpostalmailChanging(global::System.Nullable value); - partial void OndonotbulkpostalmailChanged(); + private string _address1_telephone1; + partial void Onaddress1_telephone1Changing(string value); + partial void Onaddress1_telephone1Changed(); /// /// There are no comments for Property era_securityquestiontext3 in the schema. /// @@ -176242,28 +176484,6 @@ public virtual string era_securityquestiontext3 partial void Onera_securityquestiontext3Changing(string value); partial void Onera_securityquestiontext3Changed(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property donotsendmm in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -176286,28 +176506,6 @@ public virtual string era_securityquestiontext3 partial void OndonotsendmmChanging(global::System.Nullable value); partial void OndonotsendmmChanged(); /// - /// There are no comments for Property numberofchildren in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable numberofchildren - { - get - { - return this._numberofchildren; - } - set - { - this.OnnumberofchildrenChanging(value); - this._numberofchildren = value; - this.OnnumberofchildrenChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _numberofchildren; - partial void OnnumberofchildrenChanging(global::System.Nullable value); - partial void OnnumberofchildrenChanged(); - /// /// There are no comments for Property _originatingleadid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -176352,28 +176550,6 @@ public virtual string era_securityquestiontext3 partial void Onera_collectionandauthorizationChanging(global::System.Nullable value); partial void Onera_collectionandauthorizationChanged(); /// - /// There are no comments for Property address2_shippingmethodcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable address2_shippingmethodcode - { - get - { - return this._address2_shippingmethodcode; - } - set - { - this.Onaddress2_shippingmethodcodeChanging(value); - this._address2_shippingmethodcode = value; - this.Onaddress2_shippingmethodcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_shippingmethodcode; - partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress2_shippingmethodcodeChanged(); - /// /// There are no comments for Property address2_stateorprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -176418,49 +176594,49 @@ public virtual string address2_stateorprovince partial void OnaccountrolecodeChanging(global::System.Nullable value); partial void OnaccountrolecodeChanged(); /// - /// There are no comments for Property assistantphone in the schema. + /// There are no comments for Property address3_upszone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string assistantphone + public virtual string address3_upszone { get { - return this._assistantphone; + return this._address3_upszone; } set { - this.OnassistantphoneChanging(value); - this._assistantphone = value; - this.OnassistantphoneChanged(); + this.Onaddress3_upszoneChanging(value); + this._address3_upszone = value; + this.Onaddress3_upszoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _assistantphone; - partial void OnassistantphoneChanging(string value); - partial void OnassistantphoneChanged(); + private string _address3_upszone; + partial void Onaddress3_upszoneChanging(string value); + partial void Onaddress3_upszoneChanged(); /// - /// There are no comments for Property address1_county in the schema. + /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_county + public virtual global::System.Nullable processid { get { - return this._address1_county; + return this._processid; } set { - this.Onaddress1_countyChanging(value); - this._address1_county = value; - this.Onaddress1_countyChanged(); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_county; - partial void Onaddress1_countyChanging(string value); - partial void Onaddress1_countyChanged(); + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); /// /// There are no comments for Property donotpostalmail in the schema. /// @@ -176528,49 +176704,27 @@ public virtual string businesscardattributes partial void OnbusinesscardattributesChanging(string value); partial void OnbusinesscardattributesChanged(); /// - /// There are no comments for Property yomifullname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string yomifullname - { - get - { - return this._yomifullname; - } - set - { - this.OnyomifullnameChanging(value); - this._yomifullname = value; - this.OnyomifullnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _yomifullname; - partial void OnyomifullnameChanging(string value); - partial void OnyomifullnameChanged(); - /// - /// There are no comments for Property address3_name in the schema. + /// There are no comments for Property era_securityquestiontext1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_name + public virtual string era_securityquestiontext1 { get { - return this._address3_name; + return this._era_securityquestiontext1; } set { - this.Onaddress3_nameChanging(value); - this._address3_name = value; - this.Onaddress3_nameChanged(); + this.Onera_securityquestiontext1Changing(value); + this._era_securityquestiontext1 = value; + this.Onera_securityquestiontext1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_name; - partial void Onaddress3_nameChanging(string value); - partial void Onaddress3_nameChanged(); + private string _era_securityquestiontext1; + partial void Onera_securityquestiontext1Changing(string value); + partial void Onera_securityquestiontext1Changed(); /// /// There are no comments for Property address2_country in the schema. /// @@ -176770,28 +176924,6 @@ public virtual string fax partial void OngendercodeChanging(global::System.Nullable value); partial void OngendercodeChanged(); /// - /// There are no comments for Property _era_mailingprovincestate_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_mailingprovincestate_value - { - get - { - return this.__era_mailingprovincestate_value; - } - set - { - this.On_era_mailingprovincestate_valueChanging(value); - this.__era_mailingprovincestate_value = value; - this.On_era_mailingprovincestate_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_mailingprovincestate_value; - partial void On_era_mailingprovincestate_valueChanging(global::System.Nullable value); - partial void On_era_mailingprovincestate_valueChanged(); - /// /// There are no comments for Property address3_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -176880,93 +177012,27 @@ public virtual string address2_postofficebox partial void Onaddress2_postofficeboxChanging(string value); partial void Onaddress2_postofficeboxChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property entityimage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual byte[] entityimage - { - get - { - return this._entityimage; - } - set - { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); - /// - /// There are no comments for Property era_authenticated in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_authenticated - { - get - { - return this._era_authenticated; - } - set - { - this.Onera_authenticatedChanging(value); - this._era_authenticated = value; - this.Onera_authenticatedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_authenticated; - partial void Onera_authenticatedChanging(global::System.Nullable value); - partial void Onera_authenticatedChanged(); - /// - /// There are no comments for Property lastonholdtime in the schema. + /// There are no comments for Property emailaddress1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lastonholdtime + public virtual string emailaddress1 { get { - return this._lastonholdtime; + return this._emailaddress1; } set { - this.OnlastonholdtimeChanging(value); - this._lastonholdtime = value; - this.OnlastonholdtimeChanged(); + this.Onemailaddress1Changing(value); + this._emailaddress1 = value; + this.Onemailaddress1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastonholdtime; - partial void OnlastonholdtimeChanging(global::System.Nullable value); - partial void OnlastonholdtimeChanged(); + private string _emailaddress1; + partial void Onemailaddress1Changing(string value); + partial void Onemailaddress1Changed(); /// /// There are no comments for Property address1_country in the schema. /// @@ -176990,28 +177056,6 @@ public virtual string address1_country partial void Onaddress1_countryChanging(string value); partial void Onaddress1_countryChanged(); /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property era_primarybcresident in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -177034,49 +177078,27 @@ public virtual string address1_country partial void Onera_primarybcresidentChanging(global::System.Nullable value); partial void Onera_primarybcresidentChanged(); /// - /// There are no comments for Property territorycode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable territorycode - { - get - { - return this._territorycode; - } - set - { - this.OnterritorycodeChanging(value); - this._territorycode = value; - this.OnterritorycodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _territorycode; - partial void OnterritorycodeChanging(global::System.Nullable value); - partial void OnterritorycodeChanged(); - /// - /// There are no comments for Property era_lastlogin in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_lastlogin + public virtual string traversedpath { get { - return this._era_lastlogin; + return this._traversedpath; } set { - this.Onera_lastloginChanging(value); - this._era_lastlogin = value; - this.Onera_lastloginChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_lastlogin; - partial void Onera_lastloginChanging(global::System.Nullable value); - partial void Onera_lastloginChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// /// There are no comments for Property _preferredsystemuserid_value in the schema. /// @@ -177122,49 +177144,49 @@ public virtual string address3_county partial void Onaddress3_countyChanging(string value); partial void Onaddress3_countyChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property msdyn_gdproptout in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable msdyn_gdproptout { get { - return this.__modifiedonbehalfby_value; + return this._msdyn_gdproptout; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onmsdyn_gdproptoutChanging(value); + this._msdyn_gdproptout = value; + this.Onmsdyn_gdproptoutChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _msdyn_gdproptout; + partial void Onmsdyn_gdproptoutChanging(global::System.Nullable value); + partial void Onmsdyn_gdproptoutChanged(); /// - /// There are no comments for Property externaluseridentifier in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string externaluseridentifier + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._externaluseridentifier; + return this.__modifiedonbehalfby_value; } set { - this.OnexternaluseridentifierChanging(value); - this._externaluseridentifier = value; - this.OnexternaluseridentifierChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _externaluseridentifier; - partial void OnexternaluseridentifierChanging(string value); - partial void OnexternaluseridentifierChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _era_country_value in the schema. /// @@ -177254,6 +177276,28 @@ public virtual string address1_line3 partial void Onaddress1_line3Changing(string value); partial void Onaddress1_line3Changed(); /// + /// There are no comments for Property company in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string company + { + get + { + return this._company; + } + set + { + this.OncompanyChanging(value); + this._company = value; + this.OncompanyChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _company; + partial void OncompanyChanging(string value); + partial void OncompanyChanged(); + /// /// There are no comments for Property address2_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -177364,27 +177408,27 @@ public virtual string address2_fax partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property address3_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string address3_city { get { - return this._importsequencenumber; + return this._address3_city; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.Onaddress3_cityChanging(value); + this._address3_city = value; + this.Onaddress3_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _address3_city; + partial void Onaddress3_cityChanging(string value); + partial void Onaddress3_cityChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -177496,27 +177540,27 @@ public virtual string managername partial void OnmanagernameChanging(string value); partial void OnmanagernameChanged(); /// - /// There are no comments for Property telephone1 in the schema. + /// There are no comments for Property telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string telephone1 + public virtual string telephone3 { get { - return this._telephone1; + return this._telephone3; } set { - this.Ontelephone1Changing(value); - this._telephone1 = value; - this.Ontelephone1Changed(); + this.Ontelephone3Changing(value); + this._telephone3 = value; + this.Ontelephone3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _telephone1; - partial void Ontelephone1Changing(string value); - partial void Ontelephone1Changed(); + private string _telephone3; + partial void Ontelephone3Changing(string value); + partial void Ontelephone3Changed(); /// /// There are no comments for Property contactid in the schema. /// @@ -177584,49 +177628,71 @@ public virtual string telephone1 partial void OndonotfaxChanging(global::System.Nullable value); partial void OndonotfaxChanged(); /// - /// There are no comments for Property spousesname in the schema. + /// There are no comments for Property address2_addressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spousesname + public virtual global::System.Nullable address2_addressid { get { - return this._spousesname; + return this._address2_addressid; } set { - this.OnspousesnameChanging(value); - this._spousesname = value; - this.OnspousesnameChanged(); + this.Onaddress2_addressidChanging(value); + this._address2_addressid = value; + this.Onaddress2_addressidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spousesname; - partial void OnspousesnameChanging(string value); - partial void OnspousesnameChanged(); + private global::System.Nullable _address2_addressid; + partial void Onaddress2_addressidChanging(global::System.Nullable value); + partial void Onaddress2_addressidChanged(); /// - /// There are no comments for Property address2_addressid in the schema. + /// There are no comments for Property business2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_addressid + public virtual string business2 { get { - return this._address2_addressid; + return this._business2; } set { - this.Onaddress2_addressidChanging(value); - this._address2_addressid = value; - this.Onaddress2_addressidChanged(); + this.Onbusiness2Changing(value); + this._business2 = value; + this.Onbusiness2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_addressid; - partial void Onaddress2_addressidChanging(global::System.Nullable value); - partial void Onaddress2_addressidChanged(); + private string _business2; + partial void Onbusiness2Changing(string value); + partial void Onbusiness2Changed(); + /// + /// There are no comments for Property address3_stateorprovince in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address3_stateorprovince + { + get + { + return this._address3_stateorprovince; + } + set + { + this.Onaddress3_stateorprovinceChanging(value); + this._address3_stateorprovince = value; + this.Onaddress3_stateorprovinceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address3_stateorprovince; + partial void Onaddress3_stateorprovinceChanging(string value); + partial void Onaddress3_stateorprovinceChanged(); /// /// There are no comments for Property department in the schema. /// @@ -177650,27 +177716,27 @@ public virtual string department partial void OndepartmentChanging(string value); partial void OndepartmentChanged(); /// - /// There are no comments for Property business2 in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string business2 + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._business2; + return this._utcconversiontimezonecode; } set { - this.Onbusiness2Changing(value); - this._business2 = value; - this.Onbusiness2Changed(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _business2; - partial void Onbusiness2Changing(string value); - partial void Onbusiness2Changed(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property creditlimit_base in the schema. /// @@ -177694,49 +177760,27 @@ public virtual string business2 partial void Oncreditlimit_baseChanging(global::System.Nullable value); partial void Oncreditlimit_baseChanged(); /// - /// There are no comments for Property managerphone in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string managerphone - { - get - { - return this._managerphone; - } - set - { - this.OnmanagerphoneChanging(value); - this._managerphone = value; - this.OnmanagerphoneChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _managerphone; - partial void OnmanagerphoneChanging(string value); - partial void OnmanagerphoneChanged(); - /// - /// There are no comments for Property aging60_base in the schema. + /// There are no comments for Property address1_telephone2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable aging60_base + public virtual string address1_telephone2 { get { - return this._aging60_base; + return this._address1_telephone2; } set { - this.Onaging60_baseChanging(value); - this._aging60_base = value; - this.Onaging60_baseChanged(); + this.Onaddress1_telephone2Changing(value); + this._address1_telephone2 = value; + this.Onaddress1_telephone2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _aging60_base; - partial void Onaging60_baseChanging(global::System.Nullable value); - partial void Onaging60_baseChanged(); + private string _address1_telephone2; + partial void Onaddress1_telephone2Changing(string value); + partial void Onaddress1_telephone2Changed(); /// /// There are no comments for Property _defaultpricelevelid_value in the schema. /// @@ -177826,28 +177870,6 @@ public virtual string address2_city partial void Onaddress3_addressidChanging(global::System.Nullable value); partial void Onaddress3_addressidChanged(); /// - /// There are no comments for Property familystatuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable familystatuscode - { - get - { - return this._familystatuscode; - } - set - { - this.OnfamilystatuscodeChanging(value); - this._familystatuscode = value; - this.OnfamilystatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _familystatuscode; - partial void OnfamilystatuscodeChanging(global::System.Nullable value); - partial void OnfamilystatuscodeChanged(); - /// /// There are no comments for Property era_verified in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -177892,6 +177914,28 @@ public virtual string address2_telephone3 partial void Onaddress2_telephone3Changing(string value); partial void Onaddress2_telephone3Changed(); /// + /// There are no comments for Property assistantphone in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string assistantphone + { + get + { + return this._assistantphone; + } + set + { + this.OnassistantphoneChanging(value); + this._assistantphone = value; + this.OnassistantphoneChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _assistantphone; + partial void OnassistantphoneChanging(string value); + partial void OnassistantphoneChanged(); + /// /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -177958,28 +178002,6 @@ public virtual string address2_telephone3 partial void OnshippingmethodcodeChanging(global::System.Nullable value); partial void OnshippingmethodcodeChanged(); /// - /// There are no comments for Property address3_primarycontactname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address3_primarycontactname - { - get - { - return this._address3_primarycontactname; - } - set - { - this.Onaddress3_primarycontactnameChanging(value); - this._address3_primarycontactname = value; - this.Onaddress3_primarycontactnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_primarycontactname; - partial void Onaddress3_primarycontactnameChanging(string value); - partial void Onaddress3_primarycontactnameChanged(); - /// /// There are no comments for Property address1_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -178002,72 +178024,6 @@ public virtual string address1_postofficebox partial void Onaddress1_postofficeboxChanging(string value); partial void Onaddress1_postofficeboxChanged(); /// - /// There are no comments for Property _era_mailingcountry_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_mailingcountry_value - { - get - { - return this.__era_mailingcountry_value; - } - set - { - this.On_era_mailingcountry_valueChanging(value); - this.__era_mailingcountry_value = value; - this.On_era_mailingcountry_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_mailingcountry_value; - partial void On_era_mailingcountry_valueChanging(global::System.Nullable value); - partial void On_era_mailingcountry_valueChanged(); - /// - /// There are no comments for Property entityimageid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable entityimageid - { - get - { - return this._entityimageid; - } - set - { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); - /// - /// There are no comments for Property _era_provincestate_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_provincestate_value - { - get - { - return this.__era_provincestate_value; - } - set - { - this.On_era_provincestate_valueChanging(value); - this.__era_provincestate_value = value; - this.On_era_provincestate_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_provincestate_value; - partial void On_era_provincestate_valueChanging(global::System.Nullable value); - partial void On_era_provincestate_valueChanged(); - /// /// There are no comments for Property era_issamemailingaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -178090,71 +178046,49 @@ public virtual string address1_postofficebox partial void Onera_issamemailingaddressChanging(global::System.Nullable value); partial void Onera_issamemailingaddressChanged(); /// - /// There are no comments for Property era_bcservicescardid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_bcservicescardid - { - get - { - return this._era_bcservicescardid; - } - set - { - this.Onera_bcservicescardidChanging(value); - this._era_bcservicescardid = value; - this.Onera_bcservicescardidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_bcservicescardid; - partial void Onera_bcservicescardidChanging(string value); - partial void Onera_bcservicescardidChanged(); - /// - /// There are no comments for Property era_registrationdate in the schema. + /// There are no comments for Property externaluseridentifier in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_registrationdate + public virtual string externaluseridentifier { get { - return this._era_registrationdate; + return this._externaluseridentifier; } set { - this.Onera_registrationdateChanging(value); - this._era_registrationdate = value; - this.Onera_registrationdateChanged(); + this.OnexternaluseridentifierChanging(value); + this._externaluseridentifier = value; + this.OnexternaluseridentifierChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_registrationdate; - partial void Onera_registrationdateChanging(global::System.Nullable value); - partial void Onera_registrationdateChanged(); + private string _externaluseridentifier; + partial void OnexternaluseridentifierChanging(string value); + partial void OnexternaluseridentifierChanged(); /// - /// There are no comments for Property _createdbyexternalparty_value in the schema. + /// There are no comments for Property _era_mailingprovincestate_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdbyexternalparty_value + public virtual global::System.Nullable _era_mailingprovincestate_value { get { - return this.__createdbyexternalparty_value; + return this.__era_mailingprovincestate_value; } set { - this.On_createdbyexternalparty_valueChanging(value); - this.__createdbyexternalparty_value = value; - this.On_createdbyexternalparty_valueChanged(); + this.On_era_mailingprovincestate_valueChanging(value); + this.__era_mailingprovincestate_value = value; + this.On_era_mailingprovincestate_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdbyexternalparty_value; - partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); - partial void On_createdbyexternalparty_valueChanged(); + private global::System.Nullable __era_mailingprovincestate_value; + partial void On_era_mailingprovincestate_valueChanging(global::System.Nullable value); + partial void On_era_mailingprovincestate_valueChanged(); /// /// There are no comments for Property donotbulkemail in the schema. /// @@ -178200,27 +178134,49 @@ public virtual string era_bcservicescardid partial void OncreditonholdChanging(global::System.Nullable value); partial void OncreditonholdChanged(); /// - /// There are no comments for Property address3_upszone in the schema. + /// There are no comments for Property address1_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_upszone + public virtual string address1_line2 { get { - return this._address3_upszone; + return this._address1_line2; } set { - this.Onaddress3_upszoneChanging(value); - this._address3_upszone = value; - this.Onaddress3_upszoneChanged(); + this.Onaddress1_line2Changing(value); + this._address1_line2 = value; + this.Onaddress1_line2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_upszone; - partial void Onaddress3_upszoneChanging(string value); - partial void Onaddress3_upszoneChanged(); + private string _address1_line2; + partial void Onaddress1_line2Changing(string value); + partial void Onaddress1_line2Changed(); + /// + /// There are no comments for Property era_securityquestiontext2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_securityquestiontext2 + { + get + { + return this._era_securityquestiontext2; + } + set + { + this.Onera_securityquestiontext2Changing(value); + this._era_securityquestiontext2 = value; + this.Onera_securityquestiontext2Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_securityquestiontext2; + partial void Onera_securityquestiontext2Changing(string value); + partial void Onera_securityquestiontext2Changed(); /// /// There are no comments for Property home2 in the schema. /// @@ -178266,27 +178222,27 @@ public virtual string address3_postalcode partial void Onaddress3_postalcodeChanging(string value); partial void Onaddress3_postalcodeChanged(); /// - /// There are no comments for Property address3_postofficebox in the schema. + /// There are no comments for Property address1_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_postofficebox + public virtual global::System.Nullable address1_shippingmethodcode { get { - return this._address3_postofficebox; + return this._address1_shippingmethodcode; } set { - this.Onaddress3_postofficeboxChanging(value); - this._address3_postofficebox = value; - this.Onaddress3_postofficeboxChanged(); + this.Onaddress1_shippingmethodcodeChanging(value); + this._address1_shippingmethodcode = value; + this.Onaddress1_shippingmethodcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_postofficebox; - partial void Onaddress3_postofficeboxChanging(string value); - partial void Onaddress3_postofficeboxChanged(); + private global::System.Nullable _address1_shippingmethodcode; + partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress1_shippingmethodcodeChanged(); /// /// There are no comments for Property address3_addresstypecode in the schema. /// @@ -178310,71 +178266,71 @@ public virtual string address3_postofficebox partial void Onaddress3_addresstypecodeChanging(global::System.Nullable value); partial void Onaddress3_addresstypecodeChanged(); /// - /// There are no comments for Property address3_city in the schema. + /// There are no comments for Property middlename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_city + public virtual string middlename { get { - return this._address3_city; + return this._middlename; } set { - this.Onaddress3_cityChanging(value); - this._address3_city = value; - this.Onaddress3_cityChanged(); + this.OnmiddlenameChanging(value); + this._middlename = value; + this.OnmiddlenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_city; - partial void Onaddress3_cityChanging(string value); - partial void Onaddress3_cityChanged(); + private string _middlename; + partial void OnmiddlenameChanging(string value); + partial void OnmiddlenameChanged(); /// - /// There are no comments for Property address3_country in the schema. + /// There are no comments for Property era_bcservicescardid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_country + public virtual string era_bcservicescardid { get { - return this._address3_country; + return this._era_bcservicescardid; } set { - this.Onaddress3_countryChanging(value); - this._address3_country = value; - this.Onaddress3_countryChanged(); + this.Onera_bcservicescardidChanging(value); + this._era_bcservicescardid = value; + this.Onera_bcservicescardidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_country; - partial void Onaddress3_countryChanging(string value); - partial void Onaddress3_countryChanged(); + private string _era_bcservicescardid; + partial void Onera_bcservicescardidChanging(string value); + partial void Onera_bcservicescardidChanged(); /// - /// There are no comments for Property company in the schema. + /// There are no comments for Property address3_country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string company + public virtual string address3_country { get { - return this._company; + return this._address3_country; } set { - this.OncompanyChanging(value); - this._company = value; - this.OncompanyChanged(); + this.Onaddress3_countryChanging(value); + this._address3_country = value; + this.Onaddress3_countryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _company; - partial void OncompanyChanging(string value); - partial void OncompanyChanged(); + private string _address3_country; + partial void Onaddress3_countryChanging(string value); + partial void Onaddress3_countryChanged(); /// /// There are no comments for Property _era_bcscaddress_value in the schema. /// @@ -178420,27 +178376,49 @@ public virtual string company partial void Onaddress3_utcoffsetChanging(global::System.Nullable value); partial void Onaddress3_utcoffsetChanged(); /// - /// There are no comments for Property address2_line2 in the schema. + /// There are no comments for Property address2_longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_line2 + public virtual global::System.Nullable address2_longitude { get { - return this._address2_line2; + return this._address2_longitude; } set { - this.Onaddress2_line2Changing(value); - this._address2_line2 = value; - this.Onaddress2_line2Changed(); + this.Onaddress2_longitudeChanging(value); + this._address2_longitude = value; + this.Onaddress2_longitudeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line2; - partial void Onaddress2_line2Changing(string value); - partial void Onaddress2_line2Changed(); + private global::System.Nullable _address2_longitude; + partial void Onaddress2_longitudeChanging(global::System.Nullable value); + partial void Onaddress2_longitudeChanged(); + /// + /// There are no comments for Property era_securityquestion3answer in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_securityquestion3answer + { + get + { + return this._era_securityquestion3answer; + } + set + { + this.Onera_securityquestion3answerChanging(value); + this._era_securityquestion3answer = value; + this.Onera_securityquestion3answerChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_securityquestion3answer; + partial void Onera_securityquestion3answerChanging(string value); + partial void Onera_securityquestion3answerChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -178464,27 +178442,49 @@ public virtual string address2_line2 partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property address3_longitude in the schema. + /// There are no comments for Property _slaid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address3_longitude + public virtual global::System.Nullable _slaid_value { get { - return this._address3_longitude; + return this.__slaid_value; } set { - this.Onaddress3_longitudeChanging(value); - this._address3_longitude = value; - this.Onaddress3_longitudeChanged(); + this.On_slaid_valueChanging(value); + this.__slaid_value = value; + this.On_slaid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address3_longitude; - partial void Onaddress3_longitudeChanging(global::System.Nullable value); - partial void Onaddress3_longitudeChanged(); + private global::System.Nullable __slaid_value; + partial void On_slaid_valueChanging(global::System.Nullable value); + partial void On_slaid_valueChanged(); + /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property contact_principalobjectattributeaccess in the schema. /// @@ -181461,71 +181461,27 @@ public static contractdetail Createcontractdetail(global::EMBC.ESS.Utilities.Dyn partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _uomscheduleid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _uomscheduleid_value - { - get - { - return this.__uomscheduleid_value; - } - set - { - this.On_uomscheduleid_valueChanging(value); - this.__uomscheduleid_value = value; - this.On_uomscheduleid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __uomscheduleid_value; - partial void On_uomscheduleid_valueChanging(global::System.Nullable value); - partial void On_uomscheduleid_valueChanged(); - /// - /// There are no comments for Property initialquantity in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable initialquantity - { - get - { - return this._initialquantity; - } - set - { - this.OninitialquantityChanging(value); - this._initialquantity = value; - this.OninitialquantityChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _initialquantity; - partial void OninitialquantityChanging(global::System.Nullable value); - partial void OninitialquantityChanged(); - /// - /// There are no comments for Property discount_base in the schema. + /// There are no comments for Property title in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable discount_base + public virtual string title { get { - return this._discount_base; + return this._title; } set { - this.Ondiscount_baseChanging(value); - this._discount_base = value; - this.Ondiscount_baseChanged(); + this.OntitleChanging(value); + this._title = value; + this.OntitleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _discount_base; - partial void Ondiscount_baseChanging(global::System.Nullable value); - partial void Ondiscount_baseChanged(); + private string _title; + partial void OntitleChanging(string value); + partial void OntitleChanged(); /// /// There are no comments for Property _productid_value in the schema. /// @@ -181681,49 +181637,49 @@ public static contractdetail Createcontractdetail(global::EMBC.ESS.Utilities.Dyn partial void OnservicecontractunitscodeChanging(global::System.Nullable value); partial void OnservicecontractunitscodeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _uomscheduleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _uomscheduleid_value { get { - return this.__modifiedby_value; + return this.__uomscheduleid_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_uomscheduleid_valueChanging(value); + this.__uomscheduleid_value = value; + this.On_uomscheduleid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __uomscheduleid_value; + partial void On_uomscheduleid_valueChanging(global::System.Nullable value); + partial void On_uomscheduleid_valueChanged(); /// - /// There are no comments for Property effectivitycalendar in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string effectivitycalendar + public virtual global::System.Nullable _modifiedby_value { get { - return this._effectivitycalendar; + return this.__modifiedby_value; } set { - this.OneffectivitycalendarChanging(value); - this._effectivitycalendar = value; - this.OneffectivitycalendarChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _effectivitycalendar; - partial void OneffectivitycalendarChanging(string value); - partial void OneffectivitycalendarChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _uomid_value in the schema. /// @@ -181747,27 +181703,27 @@ public virtual string effectivitycalendar partial void On_uomid_valueChanging(global::System.Nullable value); partial void On_uomid_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable exchangerate { get { - return this._importsequencenumber; + return this._exchangerate; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property net in the schema. /// @@ -181791,6 +181747,50 @@ public virtual string effectivitycalendar partial void OnnetChanging(global::System.Nullable value); partial void OnnetChanged(); /// + /// There are no comments for Property allotmentsoverage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable allotmentsoverage + { + get + { + return this._allotmentsoverage; + } + set + { + this.OnallotmentsoverageChanging(value); + this._allotmentsoverage = value; + this.OnallotmentsoverageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _allotmentsoverage; + partial void OnallotmentsoverageChanging(global::System.Nullable value); + partial void OnallotmentsoverageChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property price_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -181923,93 +181923,49 @@ public virtual string effectivitycalendar partial void On_serviceaddress_valueChanging(global::System.Nullable value); partial void On_serviceaddress_valueChanged(); /// - /// There are no comments for Property allotmentsoverage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable allotmentsoverage - { - get - { - return this._allotmentsoverage; - } - set - { - this.OnallotmentsoverageChanging(value); - this._allotmentsoverage = value; - this.OnallotmentsoverageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _allotmentsoverage; - partial void OnallotmentsoverageChanging(global::System.Nullable value); - partial void OnallotmentsoverageChanged(); - /// - /// There are no comments for Property price in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable price - { - get - { - return this._price; - } - set - { - this.OnpriceChanging(value); - this._price = value; - this.OnpriceChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _price; - partial void OnpriceChanging(global::System.Nullable value); - partial void OnpriceChanged(); - /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property discount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable discount_base { get { - return this._exchangerate; + return this._discount_base; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.Ondiscount_baseChanging(value); + this._discount_base = value; + this.Ondiscount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _discount_base; + partial void Ondiscount_baseChanging(global::System.Nullable value); + partial void Ondiscount_baseChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property effectivitycalendar in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string effectivitycalendar { get { - return this._modifiedon; + return this._effectivitycalendar; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OneffectivitycalendarChanging(value); + this._effectivitycalendar = value; + this.OneffectivitycalendarChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private string _effectivitycalendar; + partial void OneffectivitycalendarChanging(string value); + partial void OneffectivitycalendarChanged(); /// /// There are no comments for Property rate in the schema. /// @@ -182275,28 +182231,6 @@ public virtual string effectivitycalendar partial void OndiscountpercentageChanging(global::System.Nullable value); partial void OndiscountpercentageChanged(); /// - /// There are no comments for Property title in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string title - { - get - { - return this._title; - } - set - { - this.OntitleChanging(value); - this._title = value; - this.OntitleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _title; - partial void OntitleChanging(string value); - partial void OntitleChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -182319,49 +182253,49 @@ public virtual string title partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property contractdetailid in the schema. + /// There are no comments for Property initialquantity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable contractdetailid + public virtual global::System.Nullable initialquantity { get { - return this._contractdetailid; + return this._initialquantity; } set { - this.OncontractdetailidChanging(value); - this._contractdetailid = value; - this.OncontractdetailidChanged(); + this.OninitialquantityChanging(value); + this._initialquantity = value; + this.OninitialquantityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _contractdetailid; - partial void OncontractdetailidChanging(global::System.Nullable value); - partial void OncontractdetailidChanged(); + private global::System.Nullable _initialquantity; + partial void OninitialquantityChanging(global::System.Nullable value); + partial void OninitialquantityChanged(); /// - /// There are no comments for Property _contactid_value in the schema. + /// There are no comments for Property contractdetailid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _contactid_value + public virtual global::System.Nullable contractdetailid { get { - return this.__contactid_value; + return this._contractdetailid; } set { - this.On_contactid_valueChanging(value); - this.__contactid_value = value; - this.On_contactid_valueChanged(); + this.OncontractdetailidChanging(value); + this._contractdetailid = value; + this.OncontractdetailidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __contactid_value; - partial void On_contactid_valueChanging(global::System.Nullable value); - partial void On_contactid_valueChanged(); + private global::System.Nullable _contractdetailid; + partial void OncontractdetailidChanging(global::System.Nullable value); + partial void OncontractdetailidChanged(); /// /// There are no comments for Property discount in the schema. /// @@ -182385,6 +182319,28 @@ public virtual string title partial void OndiscountChanging(global::System.Nullable value); partial void OndiscountChanged(); /// + /// There are no comments for Property _contactid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _contactid_value + { + get + { + return this.__contactid_value; + } + set + { + this.On_contactid_valueChanging(value); + this.__contactid_value = value; + this.On_contactid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __contactid_value; + partial void On_contactid_valueChanging(global::System.Nullable value); + partial void On_contactid_valueChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -182407,6 +182363,28 @@ public virtual string title partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property activeon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -182473,27 +182451,27 @@ public virtual string title partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property productserialnumber in the schema. + /// There are no comments for Property price in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string productserialnumber + public virtual global::System.Nullable price { get { - return this._productserialnumber; + return this._price; } set { - this.OnproductserialnumberChanging(value); - this._productserialnumber = value; - this.OnproductserialnumberChanged(); + this.OnpriceChanging(value); + this._price = value; + this.OnpriceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _productserialnumber; - partial void OnproductserialnumberChanging(string value); - partial void OnproductserialnumberChanged(); + private global::System.Nullable _price; + partial void OnpriceChanging(global::System.Nullable value); + partial void OnpriceChanged(); /// /// There are no comments for Property expireson in the schema. /// @@ -182539,6 +182517,28 @@ public virtual string productserialnumber partial void Onnet_baseChanging(global::System.Nullable value); partial void Onnet_baseChanged(); /// + /// There are no comments for Property productserialnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string productserialnumber + { + get + { + return this._productserialnumber; + } + set + { + this.OnproductserialnumberChanging(value); + this._productserialnumber = value; + this.OnproductserialnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _productserialnumber; + partial void OnproductserialnumberChanging(string value); + partial void OnproductserialnumberChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -184276,71 +184276,71 @@ public virtual string title partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _billingaccountid_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _billingaccountid_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__billingaccountid_value; + return this.__owningteam_value; } set { - this.On_billingaccountid_valueChanging(value); - this.__billingaccountid_value = value; - this.On_billingaccountid_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __billingaccountid_value; - partial void On_billingaccountid_valueChanging(global::System.Nullable value); - partial void On_billingaccountid_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property contractid in the schema. + /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable contractid + public virtual byte[] entityimage { get { - return this._contractid; + return this._entityimage; } set { - this.OncontractidChanging(value); - this._contractid = value; - this.OncontractidChanged(); + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _contractid; - partial void OncontractidChanging(global::System.Nullable value); - partial void OncontractidChanged(); + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); /// - /// There are no comments for Property contractnumber in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string contractnumber + public virtual global::System.Nullable statuscode { get { - return this._contractnumber; + return this._statuscode; } set { - this.OncontractnumberChanging(value); - this._contractnumber = value; - this.OncontractnumberChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _contractnumber; - partial void OncontractnumberChanging(string value); - partial void OncontractnumberChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property contractservicelevelcode in the schema. /// @@ -184364,27 +184364,93 @@ public virtual string contractnumber partial void OncontractservicelevelcodeChanging(global::System.Nullable value); partial void OncontractservicelevelcodeChanged(); /// - /// There are no comments for Property _customerid_value in the schema. + /// There are no comments for Property contracttemplateabbreviation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _customerid_value + public virtual string contracttemplateabbreviation { get { - return this.__customerid_value; + return this._contracttemplateabbreviation; } set { - this.On_customerid_valueChanging(value); - this.__customerid_value = value; - this.On_customerid_valueChanged(); + this.OncontracttemplateabbreviationChanging(value); + this._contracttemplateabbreviation = value; + this.OncontracttemplateabbreviationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __customerid_value; - partial void On_customerid_valueChanging(global::System.Nullable value); - partial void On_customerid_valueChanged(); + private string _contracttemplateabbreviation; + partial void OncontracttemplateabbreviationChanging(string value); + partial void OncontracttemplateabbreviationChanged(); + /// + /// There are no comments for Property contractnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string contractnumber + { + get + { + return this._contractnumber; + } + set + { + this.OncontractnumberChanging(value); + this._contractnumber = value; + this.OncontractnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _contractnumber; + partial void OncontractnumberChanging(string value); + partial void OncontractnumberChanged(); + /// + /// There are no comments for Property _contactid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _contactid_value + { + get + { + return this.__contactid_value; + } + set + { + this.On_contactid_valueChanging(value); + this.__contactid_value = value; + this.On_contactid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __contactid_value; + partial void On_contactid_valueChanging(global::System.Nullable value); + partial void On_contactid_valueChanged(); + /// + /// There are no comments for Property _originatingcontract_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _originatingcontract_value + { + get + { + return this.__originatingcontract_value; + } + set + { + this.On_originatingcontract_valueChanging(value); + this.__originatingcontract_value = value; + this.On_originatingcontract_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __originatingcontract_value; + partial void On_originatingcontract_valueChanging(global::System.Nullable value); + partial void On_originatingcontract_valueChanged(); /// /// There are no comments for Property _billingcontactid_value in the schema. /// @@ -184408,6 +184474,28 @@ public virtual string contractnumber partial void On_billingcontactid_valueChanging(global::System.Nullable value); partial void On_billingcontactid_valueChanged(); /// + /// There are no comments for Property netprice in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable netprice + { + get + { + return this._netprice; + } + set + { + this.OnnetpriceChanging(value); + this._netprice = value; + this.OnnetpriceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _netprice; + partial void OnnetpriceChanging(global::System.Nullable value); + partial void OnnetpriceChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -184430,27 +184518,27 @@ public virtual string contractnumber partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _originatingcontract_value in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _originatingcontract_value + public virtual string entityimage_url { get { - return this.__originatingcontract_value; + return this._entityimage_url; } set { - this.On_originatingcontract_valueChanging(value); - this.__originatingcontract_value = value; - this.On_originatingcontract_valueChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __originatingcontract_value; - partial void On_originatingcontract_valueChanging(global::System.Nullable value); - partial void On_originatingcontract_valueChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// /// There are no comments for Property _billtoaddress_value in the schema. /// @@ -184474,71 +184562,27 @@ public virtual string contractnumber partial void On_billtoaddress_valueChanging(global::System.Nullable value); partial void On_billtoaddress_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property _contactid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _contactid_value - { - get - { - return this.__contactid_value; - } - set - { - this.On_contactid_valueChanging(value); - this.__contactid_value = value; - this.On_contactid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __contactid_value; - partial void On_contactid_valueChanging(global::System.Nullable value); - partial void On_contactid_valueChanged(); - /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _accountid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _accountid_value { get { - return this._exchangerate; + return this.__accountid_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_accountid_valueChanging(value); + this.__accountid_value = value; + this.On_accountid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __accountid_value; + partial void On_accountid_valueChanging(global::System.Nullable value); + partial void On_accountid_valueChanged(); /// /// There are no comments for Property netprice_base in the schema. /// @@ -184562,49 +184606,27 @@ public virtual string contractnumber partial void Onnetprice_baseChanging(global::System.Nullable value); partial void Onnetprice_baseChanged(); /// - /// There are no comments for Property entityimage_timestamp in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable entityimage_timestamp - { - get - { - return this._entityimage_timestamp; - } - set - { - this.Onentityimage_timestampChanging(value); - this._entityimage_timestamp = value; - this.Onentityimage_timestampChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimage_timestamp; - partial void Onentityimage_timestampChanging(global::System.Nullable value); - partial void Onentityimage_timestampChanged(); - /// - /// There are no comments for Property effectivitycalendar in the schema. + /// There are no comments for Property _customerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string effectivitycalendar + public virtual global::System.Nullable _customerid_value { get { - return this._effectivitycalendar; + return this.__customerid_value; } set { - this.OneffectivitycalendarChanging(value); - this._effectivitycalendar = value; - this.OneffectivitycalendarChanged(); + this.On_customerid_valueChanging(value); + this.__customerid_value = value; + this.On_customerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _effectivitycalendar; - partial void OneffectivitycalendarChanging(string value); - partial void OneffectivitycalendarChanged(); + private global::System.Nullable __customerid_value; + partial void On_customerid_valueChanging(global::System.Nullable value); + partial void On_customerid_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -184628,49 +184650,49 @@ public virtual string effectivitycalendar partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property _billingcustomerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable _billingcustomerid_value { get { - return this.__owningteam_value; + return this.__billingcustomerid_value; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.On_billingcustomerid_valueChanging(value); + this.__billingcustomerid_value = value; + this.On_billingcustomerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable __billingcustomerid_value; + partial void On_billingcustomerid_valueChanging(global::System.Nullable value); + partial void On_billingcustomerid_valueChanged(); /// - /// There are no comments for Property _billingcustomerid_value in the schema. + /// There are no comments for Property entityimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _billingcustomerid_value + public virtual global::System.Nullable entityimageid { get { - return this.__billingcustomerid_value; + return this._entityimageid; } set { - this.On_billingcustomerid_valueChanging(value); - this.__billingcustomerid_value = value; - this.On_billingcustomerid_valueChanged(); + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __billingcustomerid_value; - partial void On_billingcustomerid_valueChanging(global::System.Nullable value); - partial void On_billingcustomerid_valueChanged(); + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); /// /// There are no comments for Property _contracttemplateid_value in the schema. /// @@ -184760,93 +184782,49 @@ public virtual string contractlanguage partial void OncontractlanguageChanging(string value); partial void OncontractlanguageChanged(); /// - /// There are no comments for Property totalprice in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable totalprice - { - get - { - return this._totalprice; - } - set - { - this.OntotalpriceChanging(value); - this._totalprice = value; - this.OntotalpriceChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totalprice; - partial void OntotalpriceChanging(global::System.Nullable value); - partial void OntotalpriceChanged(); - /// - /// There are no comments for Property entityimageid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable entityimageid - { - get - { - return this._entityimageid; - } - set - { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__modifiedby_value; + return this.__owningbusinessunit_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _accountid_value in the schema. + /// There are no comments for Property totalprice in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _accountid_value + public virtual global::System.Nullable totalprice { get { - return this.__accountid_value; + return this._totalprice; } set { - this.On_accountid_valueChanging(value); - this.__accountid_value = value; - this.On_accountid_valueChanged(); + this.OntotalpriceChanging(value); + this._totalprice = value; + this.OntotalpriceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __accountid_value; - partial void On_accountid_valueChanging(global::System.Nullable value); - partial void On_accountid_valueChanged(); + private global::System.Nullable _totalprice; + partial void OntotalpriceChanging(global::System.Nullable value); + partial void OntotalpriceChanged(); /// /// There are no comments for Property billingendon in the schema. /// @@ -184936,6 +184914,28 @@ public virtual string contractlanguage partial void OndurationChanging(global::System.Nullable value); partial void OndurationChanged(); /// + /// There are no comments for Property effectivitycalendar in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string effectivitycalendar + { + get + { + return this._effectivitycalendar; + } + set + { + this.OneffectivitycalendarChanging(value); + this._effectivitycalendar = value; + this.OneffectivitycalendarChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _effectivitycalendar; + partial void OneffectivitycalendarChanging(string value); + partial void OneffectivitycalendarChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -184980,49 +184980,27 @@ public virtual string emailaddress partial void OnemailaddressChanging(string value); partial void OnemailaddressChanged(); /// - /// There are no comments for Property entityimage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual byte[] entityimage - { - get - { - return this._entityimage; - } - set - { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); - /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _modifiedby_value { get { - return this._statuscode; + return this.__modifiedby_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -185068,137 +185046,137 @@ public virtual byte[] entityimage partial void Ontotalprice_baseChanging(global::System.Nullable value); partial void Ontotalprice_baseChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property _serviceaddress_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual global::System.Nullable _serviceaddress_value { get { - return this._entityimage_url; + return this.__serviceaddress_value; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.On_serviceaddress_valueChanging(value); + this.__serviceaddress_value = value; + this.On_serviceaddress_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private global::System.Nullable __serviceaddress_value; + partial void On_serviceaddress_valueChanging(global::System.Nullable value); + partial void On_serviceaddress_valueChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__transactioncurrencyid_value; + return this._importsequencenumber; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _serviceaddress_value in the schema. + /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _serviceaddress_value + public virtual global::System.Nullable entityimage_timestamp { get { - return this.__serviceaddress_value; + return this._entityimage_timestamp; } set { - this.On_serviceaddress_valueChanging(value); - this.__serviceaddress_value = value; - this.On_serviceaddress_valueChanged(); + this.Onentityimage_timestampChanging(value); + this._entityimage_timestamp = value; + this.Onentityimage_timestampChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __serviceaddress_value; - partial void On_serviceaddress_valueChanging(global::System.Nullable value); - partial void On_serviceaddress_valueChanged(); + private global::System.Nullable _entityimage_timestamp; + partial void Onentityimage_timestampChanging(global::System.Nullable value); + partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property netprice in the schema. + /// There are no comments for Property _billingaccountid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable netprice + public virtual global::System.Nullable _billingaccountid_value { get { - return this._netprice; + return this.__billingaccountid_value; } set { - this.OnnetpriceChanging(value); - this._netprice = value; - this.OnnetpriceChanged(); + this.On_billingaccountid_valueChanging(value); + this.__billingaccountid_value = value; + this.On_billingaccountid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _netprice; - partial void OnnetpriceChanging(global::System.Nullable value); - partial void OnnetpriceChanged(); + private global::System.Nullable __billingaccountid_value; + partial void On_billingaccountid_valueChanging(global::System.Nullable value); + partial void On_billingaccountid_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._importsequencenumber; + return this.__transactioncurrencyid_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property contracttemplateabbreviation in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string contracttemplateabbreviation + public virtual global::System.Nullable exchangerate { get { - return this._contracttemplateabbreviation; + return this._exchangerate; } set { - this.OncontracttemplateabbreviationChanging(value); - this._contracttemplateabbreviation = value; - this.OncontracttemplateabbreviationChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _contracttemplateabbreviation; - partial void OncontracttemplateabbreviationChanging(string value); - partial void OncontracttemplateabbreviationChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -185310,6 +185288,28 @@ public virtual string contracttemplateabbreviation partial void OnactiveonChanging(global::System.Nullable value); partial void OnactiveonChanged(); /// + /// There are no comments for Property contractid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable contractid + { + get + { + return this._contractid; + } + set + { + this.OncontractidChanging(value); + this._contractid = value; + this.OncontractidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _contractid; + partial void OncontractidChanging(global::System.Nullable value); + partial void OncontractidChanged(); + /// /// There are no comments for Property usediscountaspercentage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -186705,49 +186705,49 @@ public static contracttemplate Createcontracttemplate(global::EMBC.ESS.Utilities return contracttemplate; } /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property effectivitycalendar in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string effectivitycalendar { get { - return this._importsequencenumber; + return this._effectivitycalendar; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OneffectivitycalendarChanging(value); + this._effectivitycalendar = value; + this.OneffectivitycalendarChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _effectivitycalendar; + partial void OneffectivitycalendarChanging(string value); + partial void OneffectivitycalendarChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable importsequencenumber { get { - return this._overwritetime; + return this._importsequencenumber; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -186837,28 +186837,6 @@ public virtual string name partial void OnbillingfrequencycodeChanging(global::System.Nullable value); partial void OnbillingfrequencycodeChanged(); /// - /// There are no comments for Property contractservicelevelcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable contractservicelevelcode - { - get - { - return this._contractservicelevelcode; - } - set - { - this.OncontractservicelevelcodeChanging(value); - this._contractservicelevelcode = value; - this.OncontractservicelevelcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _contractservicelevelcode; - partial void OncontractservicelevelcodeChanging(global::System.Nullable value); - partial void OncontractservicelevelcodeChanged(); - /// /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -186881,27 +186859,27 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable _createdby_value { get { - return this._iscustomizable; + return this.__createdby_value; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -186925,6 +186903,28 @@ public virtual string introducedversion partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -186947,49 +186947,49 @@ public virtual string introducedversion partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property effectivitycalendar in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string effectivitycalendar + public virtual global::System.Nullable _modifiedby_value { get { - return this._effectivitycalendar; + return this.__modifiedby_value; } set { - this.OneffectivitycalendarChanging(value); - this._effectivitycalendar = value; - this.OneffectivitycalendarChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _effectivitycalendar; - partial void OneffectivitycalendarChanging(string value); - partial void OneffectivitycalendarChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property contracttemplateid in the schema. + /// There are no comments for Property contractservicelevelcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable contracttemplateid + public virtual global::System.Nullable contractservicelevelcode { get { - return this._contracttemplateid; + return this._contractservicelevelcode; } set { - this.OncontracttemplateidChanging(value); - this._contracttemplateid = value; - this.OncontracttemplateidChanged(); + this.OncontractservicelevelcodeChanging(value); + this._contractservicelevelcode = value; + this.OncontractservicelevelcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _contracttemplateid; - partial void OncontracttemplateidChanging(global::System.Nullable value); - partial void OncontracttemplateidChanged(); + private global::System.Nullable _contractservicelevelcode; + partial void OncontractservicelevelcodeChanging(global::System.Nullable value); + partial void OncontractservicelevelcodeChanged(); /// /// There are no comments for Property componentstate in the schema. /// @@ -187035,6 +187035,28 @@ public virtual string effectivitycalendar partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -187101,93 +187123,93 @@ public virtual string abbreviation partial void OnabbreviationChanging(string value); partial void OnabbreviationChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this._solutionid; + return this._iscustomizable; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property contracttemplateidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable contracttemplateidunique { get { - return this._createdon; + return this._contracttemplateidunique; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OncontracttemplateiduniqueChanging(value); + this._contracttemplateidunique = value; + this.OncontracttemplateiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _contracttemplateidunique; + partial void OncontracttemplateiduniqueChanging(global::System.Nullable value); + partial void OncontracttemplateiduniqueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable createdon { get { - return this.__modifiedby_value; + return this._createdon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property contracttemplateid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable contracttemplateid { get { - return this.__createdby_value; + return this._contracttemplateid; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OncontracttemplateidChanging(value); + this._contracttemplateid = value; + this.OncontracttemplateidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _contracttemplateid; + partial void OncontracttemplateidChanging(global::System.Nullable value); + partial void OncontracttemplateidChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -187277,28 +187299,6 @@ public virtual string description partial void OnallotmenttypecodeChanging(global::System.Nullable value); partial void OnallotmenttypecodeChanged(); /// - /// There are no comments for Property contracttemplateidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable contracttemplateidunique - { - get - { - return this._contracttemplateidunique; - } - set - { - this.OncontracttemplateiduniqueChanging(value); - this._contracttemplateidunique = value; - this.OncontracttemplateiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _contracttemplateidunique; - partial void OncontracttemplateiduniqueChanging(global::System.Nullable value); - partial void OncontracttemplateiduniqueChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -188052,28 +188052,6 @@ public static conversationtranscript Createconversationtranscript(global::EMBC.E return conversationtranscript; } /// - /// There are no comments for Property schemaversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string schemaversion - { - get - { - return this._schemaversion; - } - set - { - this.OnschemaversionChanging(value); - this._schemaversion = value; - this.OnschemaversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _schemaversion; - partial void OnschemaversionChanging(string value); - partial void OnschemaversionChanged(); - /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -188118,93 +188096,93 @@ public virtual string schemaversion partial void On_bot_conversationtranscriptid_valueChanging(global::System.Nullable value); partial void On_bot_conversationtranscriptid_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property conversationtranscriptid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable conversationtranscriptid { get { - return this._name; + return this._conversationtranscriptid; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnconversationtranscriptidChanging(value); + this._conversationtranscriptid = value; + this.OnconversationtranscriptidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _conversationtranscriptid; + partial void OnconversationtranscriptidChanging(global::System.Nullable value); + partial void OnconversationtranscriptidChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property schemaversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string schemaversion { get { - return this.__createdby_value; + return this._schemaversion; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnschemaversionChanging(value); + this._schemaversion = value; + this.OnschemaversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _schemaversion; + partial void OnschemaversionChanging(string value); + partial void OnschemaversionChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__createdonbehalfby_value; + return this.__createdby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual string name { get { - return this.__ownerid_value; + return this._name; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -188228,6 +188206,28 @@ public virtual string name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property metadata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -188250,27 +188250,27 @@ public virtual string metadata partial void OnmetadataChanging(string value); partial void OnmetadataChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable statuscode { get { - return this._modifiedon; + return this._statuscode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -188338,49 +188338,49 @@ public virtual string content partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable modifiedon { get { - return this._statuscode; + return this._modifiedon; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property conversationstarttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable conversationstarttime { get { - return this.__owningbusinessunit_value; + return this._conversationstarttime; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnconversationstarttimeChanging(value); + this._conversationstarttime = value; + this.OnconversationstarttimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _conversationstarttime; + partial void OnconversationstarttimeChanging(global::System.Nullable value); + partial void OnconversationstarttimeChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -188426,28 +188426,6 @@ public virtual string content partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property conversationtranscriptid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable conversationtranscriptid - { - get - { - return this._conversationtranscriptid; - } - set - { - this.OnconversationtranscriptidChanging(value); - this._conversationtranscriptid = value; - this.OnconversationtranscriptidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _conversationtranscriptid; - partial void OnconversationtranscriptidChanging(global::System.Nullable value); - partial void OnconversationtranscriptidChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -188492,27 +188470,27 @@ public virtual string content partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property conversationstarttime in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable conversationstarttime + public virtual global::System.Nullable _ownerid_value { get { - return this._conversationstarttime; + return this.__ownerid_value; } set { - this.OnconversationstarttimeChanging(value); - this._conversationstarttime = value; - this.OnconversationstarttimeChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _conversationstarttime; - partial void OnconversationstarttimeChanging(global::System.Nullable value); - partial void OnconversationstarttimeChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -188580,6 +188558,28 @@ public virtual string schematype partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -189449,28 +189449,6 @@ public static customapirequestparameter Createcustomapirequestparameter(global:: partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property isoptional in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isoptional - { - get - { - return this._isoptional; - } - set - { - this.OnisoptionalChanging(value); - this._isoptional = value; - this.OnisoptionalChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isoptional; - partial void OnisoptionalChanging(global::System.Nullable value); - partial void OnisoptionalChanged(); - /// /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -189603,6 +189581,28 @@ public virtual string entitylogicalname partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -189867,27 +189867,27 @@ public virtual string displayname partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable statuscode { get { - return this._overwritetime; + return this._statuscode; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -189911,6 +189911,28 @@ public virtual string displayname partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property isoptional in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isoptional + { + get + { + return this._isoptional; + } + set + { + this.OnisoptionalChanging(value); + this._isoptional = value; + this.OnisoptionalChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isoptional; + partial void OnisoptionalChanging(global::System.Nullable value); + partial void OnisoptionalChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -190043,28 +190065,6 @@ public virtual string uniquename partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -190868,50 +190868,6 @@ public static customapiresponseproperty Createcustomapiresponseproperty(global:: return customapiresponseproperty; } /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// - /// There are no comments for Property uniquename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string uniquename - { - get - { - return this._uniquename; - } - set - { - this.OnuniquenameChanging(value); - this._uniquename = value; - this.OnuniquenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _uniquename; - partial void OnuniquenameChanging(string value); - partial void OnuniquenameChanged(); - /// /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -190934,27 +190890,27 @@ public virtual string uniquename partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// - /// There are no comments for Property displayname in the schema. + /// There are no comments for Property _customapiid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string displayname + public virtual global::System.Nullable _customapiid_value { get { - return this._displayname; + return this.__customapiid_value; } set { - this.OndisplaynameChanging(value); - this._displayname = value; - this.OndisplaynameChanged(); + this.On_customapiid_valueChanging(value); + this.__customapiid_value = value; + this.On_customapiid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _displayname; - partial void OndisplaynameChanging(string value); - partial void OndisplaynameChanged(); + private global::System.Nullable __customapiid_value; + partial void On_customapiid_valueChanging(global::System.Nullable value); + partial void On_customapiid_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -190978,6 +190934,28 @@ public virtual string displayname partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -191022,138 +191000,6 @@ public virtual string description partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// - /// There are no comments for Property type in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable type - { - get - { - return this._type; - } - set - { - this.OntypeChanging(value); - this._type = value; - this.OntypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _type; - partial void OntypeChanging(global::System.Nullable value); - partial void OntypeChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -191176,6 +191022,138 @@ public virtual string name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// + /// There are no comments for Property type in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable type + { + get + { + return this._type; + } + set + { + this.OntypeChanging(value); + this._type = value; + this.OntypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _type; + partial void OntypeChanging(global::System.Nullable value); + partial void OntypeChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property displayname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string displayname + { + get + { + return this._displayname; + } + set + { + this.OndisplaynameChanging(value); + this._displayname = value; + this.OndisplaynameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _displayname; + partial void OndisplaynameChanging(string value); + partial void OndisplaynameChanged(); + /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// /// There are no comments for Property componentidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -191198,27 +191176,27 @@ public virtual string name partial void OncomponentiduniqueChanging(global::System.Nullable value); partial void OncomponentiduniqueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._modifiedon; + return this.__modifiedonbehalfby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -191264,115 +191242,137 @@ public virtual string name partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable statecode { get { - return this.__owningbusinessunit_value; + return this._statecode; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property _customapiid_value in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _customapiid_value + public virtual global::System.Nullable componentstate { get { - return this.__customapiid_value; + return this._componentstate; } set { - this.On_customapiid_valueChanging(value); - this.__customapiid_value = value; - this.On_customapiid_valueChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __customapiid_value; - partial void On_customapiid_valueChanging(global::System.Nullable value); - partial void On_customapiid_valueChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property customapiresponsepropertyid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable customapiresponsepropertyid { get { - return this._statecode; + return this._customapiresponsepropertyid; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OncustomapiresponsepropertyidChanging(value); + this._customapiresponsepropertyid = value; + this.OncustomapiresponsepropertyidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _customapiresponsepropertyid; + partial void OncustomapiresponsepropertyidChanging(global::System.Nullable value); + partial void OncustomapiresponsepropertyidChanged(); /// - /// There are no comments for Property customapiresponsepropertyid in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable customapiresponsepropertyid + public virtual global::System.Nullable _owningteam_value { get { - return this._customapiresponsepropertyid; + return this.__owningteam_value; } set { - this.OncustomapiresponsepropertyidChanging(value); - this._customapiresponsepropertyid = value; - this.OncustomapiresponsepropertyidChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _customapiresponsepropertyid; - partial void OncustomapiresponsepropertyidChanging(global::System.Nullable value); - partial void OncustomapiresponsepropertyidChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._componentstate; + return this.__owningbusinessunit_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -191462,71 +191462,71 @@ public virtual string name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable overriddencreatedon { get { - return this._versionnumber; + return this._overriddencreatedon; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__modifiedonbehalfby_value; + return this.__ownerid_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property uniquename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual string uniquename { get { - return this.__ownerid_value; + return this._uniquename; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnuniquenameChanging(value); + this._uniquename = value; + this.OnuniquenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private string _uniquename; + partial void OnuniquenameChanging(string value); + partial void OnuniquenameChanged(); /// /// There are no comments for Property entitylogicalname in the schema. /// @@ -193820,115 +193820,115 @@ public virtual string primaryentitytypecode partial void OnprimaryentitytypecodeChanging(string value); partial void OnprimaryentitytypecodeChanged(); /// - /// There are no comments for Property controldescriptionjson in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string controldescriptionjson + public virtual global::System.Nullable createdon { get { - return this._controldescriptionjson; + return this._createdon; } set { - this.OncontroldescriptionjsonChanging(value); - this._controldescriptionjson = value; - this.OncontroldescriptionjsonChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _controldescriptionjson; - partial void OncontroldescriptionjsonChanging(string value); - partial void OncontroldescriptionjsonChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property controldescriptionjson in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string controldescriptionjson { get { - return this.__createdonbehalfby_value; + return this._controldescriptionjson; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OncontroldescriptionjsonChanging(value); + this._controldescriptionjson = value; + this.OncontroldescriptionjsonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _controldescriptionjson; + partial void OncontroldescriptionjsonChanging(string value); + partial void OncontroldescriptionjsonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable ismanaged { get { - return this.__modifiedonbehalfby_value; + return this._ismanaged; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable versionnumber { get { - return this._componentstate; + return this._versionnumber; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._ismanaged; + return this.__modifiedonbehalfby_value; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property eventsxml in the schema. /// @@ -193952,6 +193952,28 @@ public virtual string eventsxml partial void OneventsxmlChanging(string value); partial void OneventsxmlChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property customcontroldefaultconfigid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -194018,27 +194040,27 @@ public virtual string eventsxml partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable componentstate { get { - return this._introducedversion; + return this._componentstate; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -194062,28 +194084,6 @@ public virtual string introducedversion partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property customcontroldefaultconfigidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -194128,27 +194128,27 @@ public virtual string introducedversion partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._versionnumber; + return this.__createdonbehalfby_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -194551,6 +194551,28 @@ public static customcontrolresource Createcustomcontrolresource(global::EMBC.ESS return customcontrolresource; } /// + /// There are no comments for Property versionrequirement in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string versionrequirement + { + get + { + return this._versionrequirement; + } + set + { + this.OnversionrequirementChanging(value); + this._versionrequirement = value; + this.OnversionrequirementChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _versionrequirement; + partial void OnversionrequirementChanging(string value); + partial void OnversionrequirementChanged(); + /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -194639,28 +194661,6 @@ public virtual string version partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property customcontrolresourceid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -194683,27 +194683,27 @@ public virtual string version partial void OncustomcontrolresourceidChanging(global::System.Nullable value); partial void OncustomcontrolresourceidChanged(); /// - /// There are no comments for Property versionrequirement in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string versionrequirement + public virtual global::System.Nullable versionnumber { get { - return this._versionrequirement; + return this._versionnumber; } set { - this.OnversionrequirementChanging(value); - this._versionrequirement = value; - this.OnversionrequirementChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _versionrequirement; - partial void OnversionrequirementChanging(string value); - partial void OnversionrequirementChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -195416,28 +195416,6 @@ public static customcontrol Createcustomcontrol(global::EMBC.ESS.Utilities.Dynam partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property compatibledatatypes in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string compatibledatatypes - { - get - { - return this._compatibledatatypes; - } - set - { - this.OncompatibledatatypesChanging(value); - this._compatibledatatypes = value; - this.OncompatibledatatypesChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _compatibledatatypes; - partial void OncompatibledatatypesChanging(string value); - partial void OncompatibledatatypesChanged(); - /// /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -195460,28 +195438,6 @@ public virtual string compatibledatatypes partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property clientjson in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -195504,49 +195460,49 @@ public virtual string clientjson partial void OnclientjsonChanging(string value); partial void OnclientjsonChanged(); /// - /// There are no comments for Property customcontrolid in the schema. + /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable customcontrolid + public virtual string introducedversion { get { - return this._customcontrolid; + return this._introducedversion; } set { - this.OncustomcontrolidChanging(value); - this._customcontrolid = value; - this.OncustomcontrolidChanged(); + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _customcontrolid; - partial void OncustomcontrolidChanging(global::System.Nullable value); - partial void OncustomcontrolidChanged(); + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property customcontrolid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable customcontrolid { get { - return this.__organizationid_value; + return this._customcontrolid; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OncustomcontrolidChanging(value); + this._customcontrolid = value; + this.OncustomcontrolidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _customcontrolid; + partial void OncustomcontrolidChanging(global::System.Nullable value); + partial void OncustomcontrolidChanged(); /// /// There are no comments for Property authoringmanifest in the schema. /// @@ -195614,6 +195570,50 @@ public virtual string version partial void OncustomcontroliduniqueChanging(global::System.Nullable value); partial void OncustomcontroliduniqueChanged(); /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -195636,27 +195636,27 @@ public virtual string version partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property compatibledatatypes in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual string compatibledatatypes { get { - return this._overwritetime; + return this._compatibledatatypes; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OncompatibledatatypesChanging(value); + this._compatibledatatypes = value; + this.OncompatibledatatypesChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private string _compatibledatatypes; + partial void OncompatibledatatypesChanging(string value); + partial void OncompatibledatatypesChanged(); /// /// There are no comments for Property name in the schema. /// @@ -195680,6 +195680,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// /// There are no comments for Property manifest in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -195724,28 +195746,6 @@ public virtual string manifest partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -195768,27 +195768,27 @@ public virtual string manifest partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable _modifiedby_value { get { - return this._introducedversion; + return this.__modifiedby_value; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property modifiedonbehalfby in the schema. /// @@ -196509,28 +196509,6 @@ public virtual string line2 partial void OnaddressnumberChanging(global::System.Nullable value); partial void OnaddressnumberChanged(); /// - /// There are no comments for Property postofficebox in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string postofficebox - { - get - { - return this._postofficebox; - } - set - { - this.OnpostofficeboxChanging(value); - this._postofficebox = value; - this.OnpostofficeboxChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _postofficebox; - partial void OnpostofficeboxChanging(string value); - partial void OnpostofficeboxChanged(); - /// /// There are no comments for Property telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -196971,28 +196949,6 @@ public virtual string primarycontactname partial void OnprimarycontactnameChanging(string value); partial void OnprimarycontactnameChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -197169,6 +197125,28 @@ public virtual string composite partial void OncompositeChanging(string value); partial void OncompositeChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -197213,6 +197191,28 @@ public virtual string telephone3 partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property postofficebox in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string postofficebox + { + get + { + return this._postofficebox; + } + set + { + this.OnpostofficeboxChanging(value); + this._postofficebox = value; + this.OnpostofficeboxChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _postofficebox; + partial void OnpostofficeboxChanging(string value); + partial void OnpostofficeboxChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -198100,28 +198100,6 @@ public static datalakefolderpermission Createdatalakefolderpermission(global::EM partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property datalakefolderpermissionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable datalakefolderpermissionid - { - get - { - return this._datalakefolderpermissionid; - } - set - { - this.OndatalakefolderpermissionidChanging(value); - this._datalakefolderpermissionid = value; - this.OndatalakefolderpermissionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _datalakefolderpermissionid; - partial void OndatalakefolderpermissionidChanging(global::System.Nullable value); - partial void OndatalakefolderpermissionidChanged(); - /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -198298,28 +198276,6 @@ public static datalakefolderpermission Createdatalakefolderpermission(global::EM partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property datalakefolderpermission_uniquename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string datalakefolderpermission_uniquename - { - get - { - return this._datalakefolderpermission_uniquename; - } - set - { - this.Ondatalakefolderpermission_uniquenameChanging(value); - this._datalakefolderpermission_uniquename = value; - this.Ondatalakefolderpermission_uniquenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _datalakefolderpermission_uniquename; - partial void Ondatalakefolderpermission_uniquenameChanging(string value); - partial void Ondatalakefolderpermission_uniquenameChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -198408,27 +198364,27 @@ public virtual string datalakefolderpermission_uniquename partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property datalakefolderpermissionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable datalakefolderpermissionid { get { - return this.__modifiedonbehalfby_value; + return this._datalakefolderpermissionid; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OndatalakefolderpermissionidChanging(value); + this._datalakefolderpermissionid = value; + this.OndatalakefolderpermissionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _datalakefolderpermissionid; + partial void OndatalakefolderpermissionidChanging(global::System.Nullable value); + partial void OndatalakefolderpermissionidChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -198452,6 +198408,72 @@ public virtual string datalakefolderpermission_uniquename partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property datalakefolderpermission_uniquename in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string datalakefolderpermission_uniquename + { + get + { + return this._datalakefolderpermission_uniquename; + } + set + { + this.Ondatalakefolderpermission_uniquenameChanging(value); + this._datalakefolderpermission_uniquename = value; + this.Ondatalakefolderpermission_uniquenameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _datalakefolderpermission_uniquename; + partial void Ondatalakefolderpermission_uniquenameChanging(string value); + partial void Ondatalakefolderpermission_uniquenameChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -198672,28 +198694,6 @@ public virtual string name partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property _folderid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -201084,6 +201084,138 @@ public static datalakeworkspacepermission Createdatalakeworkspacepermission(glob return datalakeworkspacepermission; } /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// + /// There are no comments for Property whitelistedappid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable whitelistedappid + { + get + { + return this._whitelistedappid; + } + set + { + this.OnwhitelistedappidChanging(value); + this._whitelistedappid = value; + this.OnwhitelistedappidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _whitelistedappid; + partial void OnwhitelistedappidChanging(global::System.Nullable value); + partial void OnwhitelistedappidChanged(); + /// + /// There are no comments for Property tenantid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable tenantid + { + get + { + return this._tenantid; + } + set + { + this.OntenantidChanging(value); + this._tenantid = value; + this.OntenantidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _tenantid; + partial void OntenantidChanging(global::System.Nullable value); + partial void OntenantidChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property canread in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable canread + { + get + { + return this._canread; + } + set + { + this.OncanreadChanging(value); + this._canread = value; + this.OncanreadChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _canread; + partial void OncanreadChanging(global::System.Nullable value); + partial void OncanreadChanged(); + /// /// There are no comments for Property datalakeworkspacepermissionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -201106,182 +201238,6 @@ public static datalakeworkspacepermission Createdatalakeworkspacepermission(glob partial void OndatalakeworkspacepermissionidChanging(global::System.Nullable value); partial void OndatalakeworkspacepermissionidChanged(); /// - /// There are no comments for Property whitelistedappid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable whitelistedappid - { - get - { - return this._whitelistedappid; - } - set - { - this.OnwhitelistedappidChanging(value); - this._whitelistedappid = value; - this.OnwhitelistedappidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _whitelistedappid; - partial void OnwhitelistedappidChanging(global::System.Nullable value); - partial void OnwhitelistedappidChanged(); - /// - /// There are no comments for Property tenantid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable tenantid - { - get - { - return this._tenantid; - } - set - { - this.OntenantidChanging(value); - this._tenantid = value; - this.OntenantidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _tenantid; - partial void OntenantidChanging(global::System.Nullable value); - partial void OntenantidChanged(); - /// - /// There are no comments for Property _workspaceid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _workspaceid_value - { - get - { - return this.__workspaceid_value; - } - set - { - this.On_workspaceid_valueChanging(value); - this.__workspaceid_value = value; - this.On_workspaceid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __workspaceid_value; - partial void On_workspaceid_valueChanging(global::System.Nullable value); - partial void On_workspaceid_valueChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// - /// There are no comments for Property canread in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable canread - { - get - { - return this._canread; - } - set - { - this.OncanreadChanging(value); - this._canread = value; - this.OncanreadChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _canread; - partial void OncanreadChanging(global::System.Nullable value); - partial void OncanreadChanged(); - /// - /// There are no comments for Property componentidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentidunique - { - get - { - return this._componentidunique; - } - set - { - this.OncomponentiduniqueChanging(value); - this._componentidunique = value; - this.OncomponentiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentidunique; - partial void OncomponentiduniqueChanging(global::System.Nullable value); - partial void OncomponentiduniqueChanged(); - /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -201370,27 +201326,27 @@ public virtual string datalakeworkspacepermission_uniquename partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._overriddencreatedon; + return this._utcconversiontimezonecode; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property canexecute in the schema. /// @@ -201458,6 +201414,50 @@ public virtual string datalakeworkspacepermission_uniquename partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -201502,28 +201502,6 @@ public virtual string datalakeworkspacepermission_uniquename partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -201546,49 +201524,27 @@ public virtual string datalakeworkspacepermission_uniquename partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property _workspaceid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable _workspaceid_value { get { - return this._overwritetime; + return this.__workspaceid_value; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.On_workspaceid_valueChanging(value); + this.__workspaceid_value = value; + this.On_workspaceid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable __workspaceid_value; + partial void On_workspaceid_valueChanging(global::System.Nullable value); + partial void On_workspaceid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -201634,28 +201590,6 @@ public virtual string datalakeworkspacepermission_uniquename partial void OnappidChanging(global::System.Nullable value); partial void OnappidChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property canwrite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -201722,6 +201656,72 @@ public virtual string datalakeworkspacepermission_uniquename partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property componentidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentidunique + { + get + { + return this._componentidunique; + } + set + { + this.OncomponentiduniqueChanging(value); + this._componentidunique = value; + this.OncomponentiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentidunique; + partial void OncomponentiduniqueChanging(global::System.Nullable value); + partial void OncomponentiduniqueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -202447,71 +202447,71 @@ public static datalakeworkspace Createdatalakeworkspace(global::EMBC.ESS.Utiliti partial void OncomponentiduniqueChanging(global::System.Nullable value); partial void OncomponentiduniqueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this._statecode; + return this._iscustomizable; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable _organizationid_value { get { - return this._iscustomizable; + return this.__organizationid_value; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._overwritetime; + return this._utcconversiontimezonecode; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -202579,27 +202579,49 @@ public virtual string datalakeworkspace_uniquename partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable solutionid { get { - return this._utcconversiontimezonecode; + return this._solutionid; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -202667,93 +202689,71 @@ public virtual string datalakeworkspace_uniquename partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable createdon { get { - return this._importsequencenumber; + return this._createdon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property whitelistedappid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable whitelistedappid { get { - return this._createdon; + return this._whitelistedappid; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnwhitelistedappidChanging(value); + this._whitelistedappid = value; + this.OnwhitelistedappidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _whitelistedappid; + partial void OnwhitelistedappidChanging(global::System.Nullable value); + partial void OnwhitelistedappidChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable importsequencenumber { get { - return this._ismanaged; + return this._importsequencenumber; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -202799,6 +202799,28 @@ public virtual string path partial void OnpathChanging(string value); partial void OnpathChanged(); /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// /// There are no comments for Property iscustomercapacity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -202843,28 +202865,6 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -202909,49 +202909,27 @@ public virtual string name partial void OndatalakeworkspaceidChanging(global::System.Nullable value); partial void OndatalakeworkspaceidChanged(); /// - /// There are no comments for Property isdeepcopyenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isdeepcopyenabled - { - get - { - return this._isdeepcopyenabled; - } - set - { - this.OnisdeepcopyenabledChanging(value); - this._isdeepcopyenabled = value; - this.OnisdeepcopyenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdeepcopyenabled; - partial void OnisdeepcopyenabledChanging(global::System.Nullable value); - partial void OnisdeepcopyenabledChanged(); - /// - /// There are no comments for Property whitelistedappid in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable whitelistedappid + public virtual global::System.Nullable overwritetime { get { - return this._whitelistedappid; + return this._overwritetime; } set { - this.OnwhitelistedappidChanging(value); - this._whitelistedappid = value; - this.OnwhitelistedappidChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _whitelistedappid; - partial void OnwhitelistedappidChanging(global::System.Nullable value); - partial void OnwhitelistedappidChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property containerendpoint in the schema. /// @@ -202975,49 +202953,49 @@ public virtual string containerendpoint partial void OncontainerendpointChanging(string value); partial void OncontainerendpointChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property isdeepcopyenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable isdeepcopyenabled { get { - return this.__organizationid_value; + return this._isdeepcopyenabled; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnisdeepcopyenabledChanging(value); + this._isdeepcopyenabled = value; + this.OnisdeepcopyenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _isdeepcopyenabled; + partial void OnisdeepcopyenabledChanging(global::System.Nullable value); + partial void OnisdeepcopyenabledChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable ismanaged { get { - return this.__createdby_value; + return this._ismanaged; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property isprivate in the schema. /// @@ -203041,49 +203019,71 @@ public virtual string containerendpoint partial void OnisprivateChanging(global::System.Nullable value); partial void OnisprivateChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _createdby_value { get { - return this._componentstate; + return this.__createdby_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable modifiedon { get { - return this._statuscode; + return this._modifiedon; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property owningappid in the schema. /// @@ -204053,27 +204053,27 @@ public partial class dependency : crmbaseentity partial void OnrequiredcomponentparentidChanging(global::System.Nullable value); partial void OnrequiredcomponentparentidChanged(); /// - /// There are no comments for Property dependentcomponentbasesolutionid in the schema. + /// There are no comments for Property requiredcomponentbasesolutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable dependentcomponentbasesolutionid + public virtual global::System.Nullable requiredcomponentbasesolutionid { get { - return this._dependentcomponentbasesolutionid; + return this._requiredcomponentbasesolutionid; } set { - this.OndependentcomponentbasesolutionidChanging(value); - this._dependentcomponentbasesolutionid = value; - this.OndependentcomponentbasesolutionidChanged(); + this.OnrequiredcomponentbasesolutionidChanging(value); + this._requiredcomponentbasesolutionid = value; + this.OnrequiredcomponentbasesolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _dependentcomponentbasesolutionid; - partial void OndependentcomponentbasesolutionidChanging(global::System.Nullable value); - partial void OndependentcomponentbasesolutionidChanged(); + private global::System.Nullable _requiredcomponentbasesolutionid; + partial void OnrequiredcomponentbasesolutionidChanging(global::System.Nullable value); + partial void OnrequiredcomponentbasesolutionidChanged(); /// /// There are no comments for Property dependentcomponenttype in the schema. /// @@ -204185,27 +204185,27 @@ public partial class dependency : crmbaseentity partial void On_dependentcomponentnodeid_valueChanging(global::System.Nullable value); partial void On_dependentcomponentnodeid_valueChanged(); /// - /// There are no comments for Property requiredcomponentbasesolutionid in the schema. + /// There are no comments for Property dependentcomponentbasesolutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable requiredcomponentbasesolutionid + public virtual global::System.Nullable dependentcomponentbasesolutionid { get { - return this._requiredcomponentbasesolutionid; + return this._dependentcomponentbasesolutionid; } set { - this.OnrequiredcomponentbasesolutionidChanging(value); - this._requiredcomponentbasesolutionid = value; - this.OnrequiredcomponentbasesolutionidChanged(); + this.OndependentcomponentbasesolutionidChanging(value); + this._dependentcomponentbasesolutionid = value; + this.OndependentcomponentbasesolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _requiredcomponentbasesolutionid; - partial void OnrequiredcomponentbasesolutionidChanging(global::System.Nullable value); - partial void OnrequiredcomponentbasesolutionidChanged(); + private global::System.Nullable _dependentcomponentbasesolutionid; + partial void OndependentcomponentbasesolutionidChanging(global::System.Nullable value); + partial void OndependentcomponentbasesolutionidChanged(); /// /// There are no comments for Property dependencytype in the schema. /// @@ -204653,27 +204653,49 @@ public static discount Creatediscount(global::EMBC.ESS.Utilities.Dynamics.Micros partial void Onamount_baseChanging(global::System.Nullable value); partial void Onamount_baseChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property amount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable amount { get { - return this.__modifiedonbehalfby_value; + return this._amount; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnamountChanging(value); + this._amount = value; + this.OnamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _amount; + partial void OnamountChanging(global::System.Nullable value); + partial void OnamountChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property name in the schema. /// @@ -204719,6 +204741,28 @@ public virtual string name partial void OndiscountidChanging(global::System.Nullable value); partial void OndiscountidChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property isamounttype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -204763,28 +204807,6 @@ public virtual string name partial void OnorganizationidChanging(global::System.Nullable value); partial void OnorganizationidChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -204829,27 +204851,27 @@ public virtual string name partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__modifiedby_value; + return this.__modifiedonbehalfby_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _discounttypeid_value in the schema. /// @@ -204895,6 +204917,28 @@ public virtual string name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property percentage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -204939,28 +204983,6 @@ public virtual string name partial void OnlowquantityChanging(global::System.Nullable value); partial void OnlowquantityChanged(); /// - /// There are no comments for Property highquantity in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable highquantity - { - get - { - return this._highquantity; - } - set - { - this.OnhighquantityChanging(value); - this._highquantity = value; - this.OnhighquantityChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _highquantity; - partial void OnhighquantityChanging(global::System.Nullable value); - partial void OnhighquantityChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -204983,49 +205005,27 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property amount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable amount - { - get - { - return this._amount; - } - set - { - this.OnamountChanging(value); - this._amount = value; - this.OnamountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _amount; - partial void OnamountChanging(global::System.Nullable value); - partial void OnamountChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__createdby_value; + return this._overriddencreatedon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -205115,27 +205115,27 @@ public virtual string name partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property highquantity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable highquantity { get { - return this._utcconversiontimezonecode; + return this._highquantity; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnhighquantityChanging(value); + this._highquantity = value; + this.OnhighquantityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _highquantity; + partial void OnhighquantityChanging(global::System.Nullable value); + partial void OnhighquantityChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -205785,6 +205785,28 @@ public static discounttype Creatediscounttype(global::EMBC.ESS.Utilities.Dynamic return discounttype; } /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -205807,27 +205829,27 @@ public static discounttype Creatediscounttype(global::EMBC.ESS.Utilities.Dynamic partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._utcconversiontimezonecode; + return this.__createdonbehalfby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property discounttypeid in the schema. /// @@ -205851,28 +205873,6 @@ public static discounttype Creatediscounttype(global::EMBC.ESS.Utilities.Dynamic partial void OndiscounttypeidChanging(global::System.Nullable value); partial void OndiscounttypeidChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -205895,27 +205895,27 @@ public static discounttype Creatediscounttype(global::EMBC.ESS.Utilities.Dynamic partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string name { get { - return this._statuscode; + return this._name; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -206005,6 +206005,28 @@ public static discounttype Creatediscounttype(global::EMBC.ESS.Utilities.Dynamic partial void OnisamounttypeChanging(global::System.Nullable value); partial void OnisamounttypeChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -206115,27 +206137,27 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable statuscode { get { - return this._name; + return this._statuscode; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -206181,28 +206203,6 @@ public virtual string name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -206759,28 +206759,6 @@ public virtual string customdisplaystring partial void OncustomdisplaystringChanging(string value); partial void OncustomdisplaystringChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -206869,27 +206847,49 @@ public virtual string customdisplaystring partial void OndisplaystringidChanging(global::System.Nullable value); partial void OndisplaystringidChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable modifiedon { get { - return this.__modifiedonbehalfby_value; + return this._modifiedon; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -207001,28 +207001,6 @@ public virtual string customcomment partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property publisheddisplaystring in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string publisheddisplaystring - { - get - { - return this._publisheddisplaystring; - } - set - { - this.OnpublisheddisplaystringChanging(value); - this._publisheddisplaystring = value; - this.OnpublisheddisplaystringChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _publisheddisplaystring; - partial void OnpublisheddisplaystringChanging(string value); - partial void OnpublisheddisplaystringChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -207045,93 +207023,93 @@ public virtual string publisheddisplaystring partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable _createdby_value { get { - return this._overwritetime; + return this.__createdby_value; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property publisheddisplaystring in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string publisheddisplaystring { get { - return this.__createdby_value; + return this._publisheddisplaystring; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnpublisheddisplaystringChanging(value); + this._publisheddisplaystring = value; + this.OnpublisheddisplaystringChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _publisheddisplaystring; + partial void OnpublisheddisplaystringChanging(string value); + partial void OnpublisheddisplaystringChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._componentstate; + return this.__modifiedonbehalfby_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property displaystringkey in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string displaystringkey + public virtual global::System.Nullable overwritetime { get { - return this._displaystringkey; + return this._overwritetime; } set { - this.OndisplaystringkeyChanging(value); - this._displaystringkey = value; - this.OndisplaystringkeyChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _displaystringkey; - partial void OndisplaystringkeyChanging(string value); - partial void OndisplaystringkeyChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -207155,6 +207133,28 @@ public virtual string displaystringkey partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property displaystringkey in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string displaystringkey + { + get + { + return this._displaystringkey; + } + set + { + this.OndisplaystringkeyChanging(value); + this._displaystringkey = value; + this.OndisplaystringkeyChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _displaystringkey; + partial void OndisplaystringkeyChanging(string value); + partial void OndisplaystringkeyChanged(); + /// /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -215773,28 +215773,6 @@ public static duplicaterecord Createduplicaterecord(global::EMBC.ESS.Utilities.D return duplicaterecord; } /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _duplicateruleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -215817,49 +215795,49 @@ public static duplicaterecord Createduplicaterecord(global::EMBC.ESS.Utilities.D partial void On_duplicateruleid_valueChanging(global::System.Nullable value); partial void On_duplicateruleid_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable createdon { get { - return this.__ownerid_value; + return this._createdon; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property owningbusinessunit in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable owningbusinessunit + public virtual global::System.Nullable _ownerid_value { get { - return this._owningbusinessunit; + return this.__ownerid_value; } set { - this.OnowningbusinessunitChanging(value); - this._owningbusinessunit = value; - this.OnowningbusinessunitChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _owningbusinessunit; - partial void OnowningbusinessunitChanging(global::System.Nullable value); - partial void OnowningbusinessunitChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _asyncoperationid_value in the schema. /// @@ -215883,27 +215861,27 @@ public static duplicaterecord Createduplicaterecord(global::EMBC.ESS.Utilities.D partial void On_asyncoperationid_valueChanging(global::System.Nullable value); partial void On_asyncoperationid_valueChanged(); /// - /// There are no comments for Property owninguser in the schema. + /// There are no comments for Property owningbusinessunit in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable owninguser + public virtual global::System.Nullable owningbusinessunit { get { - return this._owninguser; + return this._owningbusinessunit; } set { - this.OnowninguserChanging(value); - this._owninguser = value; - this.OnowninguserChanged(); + this.OnowningbusinessunitChanging(value); + this._owningbusinessunit = value; + this.OnowningbusinessunitChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _owninguser; - partial void OnowninguserChanging(global::System.Nullable value); - partial void OnowninguserChanged(); + private global::System.Nullable _owningbusinessunit; + partial void OnowningbusinessunitChanging(global::System.Nullable value); + partial void OnowningbusinessunitChanged(); /// /// There are no comments for Property _baserecordid_value in the schema. /// @@ -215927,6 +215905,28 @@ public static duplicaterecord Createduplicaterecord(global::EMBC.ESS.Utilities.D partial void On_baserecordid_valueChanging(global::System.Nullable value); partial void On_baserecordid_valueChanged(); /// + /// There are no comments for Property owninguser in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable owninguser + { + get + { + return this._owninguser; + } + set + { + this.OnowninguserChanging(value); + this._owninguser = value; + this.OnowninguserChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _owninguser; + partial void OnowninguserChanging(global::System.Nullable value); + partial void OnowninguserChanged(); + /// /// There are no comments for Property duplicateid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -222518,50 +222518,6 @@ public static duplicaterulecondition Createduplicaterulecondition(global::EMBC.E return duplicaterulecondition; } /// - /// There are no comments for Property operatorcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable operatorcode - { - get - { - return this._operatorcode; - } - set - { - this.OnoperatorcodeChanging(value); - this._operatorcode = value; - this.OnoperatorcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _operatorcode; - partial void OnoperatorcodeChanging(global::System.Nullable value); - partial void OnoperatorcodeChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property duplicateruleconditionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -222606,27 +222562,49 @@ public static duplicaterulecondition Createduplicaterulecondition(global::EMBC.E partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__modifiedonbehalfby_value; + return this.__modifiedby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property operatorcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable operatorcode + { + get + { + return this._operatorcode; + } + set + { + this.OnoperatorcodeChanging(value); + this._operatorcode = value; + this.OnoperatorcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _operatorcode; + partial void OnoperatorcodeChanging(global::System.Nullable value); + partial void OnoperatorcodeChanged(); /// /// There are no comments for Property owningbusinessunit in the schema. /// @@ -222738,49 +222716,49 @@ public virtual string baseattributename partial void OnbaseattributenameChanging(string value); partial void OnbaseattributenameChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__ownerid_value; + return this.__modifiedonbehalfby_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property operatorparam in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable operatorparam + public virtual global::System.Nullable _ownerid_value { get { - return this._operatorparam; + return this.__ownerid_value; } set { - this.OnoperatorparamChanging(value); - this._operatorparam = value; - this.OnoperatorparamChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _operatorparam; - partial void OnoperatorparamChanging(global::System.Nullable value); - partial void OnoperatorparamChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -222870,6 +222848,28 @@ public virtual string matchingattributename partial void OnmatchingattributenameChanging(string value); partial void OnmatchingattributenameChanged(); /// + /// There are no comments for Property operatorparam in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable operatorparam + { + get + { + return this._operatorparam; + } + set + { + this.OnoperatorparamChanging(value); + this._operatorparam = value; + this.OnoperatorparamChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _operatorparam; + partial void OnoperatorparamChanging(global::System.Nullable value); + partial void OnoperatorparamChanged(); + /// /// There are no comments for Property DuplicateRuleCondition_SyncErrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -223357,50 +223357,6 @@ public static duplicaterule Createduplicaterule(global::EMBC.ESS.Utilities.Dynam return duplicaterule; } /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -223467,27 +223423,27 @@ public virtual string matchingentitymatchcodetable partial void OnmatchingentitytypecodeChanging(global::System.Nullable value); partial void OnmatchingentitytypecodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__owninguser_value; + return this.__owningteam_value; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -223555,49 +223511,71 @@ public virtual string matchingentitymatchcodetable partial void OnbaseentitytypecodeChanging(global::System.Nullable value); partial void OnbaseentitytypecodeChanged(); /// - /// There are no comments for Property excludeinactiverecords in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable excludeinactiverecords + public virtual global::System.Nullable _ownerid_value { get { - return this._excludeinactiverecords; + return this.__ownerid_value; } set { - this.OnexcludeinactiverecordsChanging(value); - this._excludeinactiverecords = value; - this.OnexcludeinactiverecordsChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _excludeinactiverecords; - partial void OnexcludeinactiverecordsChanging(global::System.Nullable value); - partial void OnexcludeinactiverecordsChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__owningbusinessunit_value; + return this.__createdonbehalfby_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -223621,6 +223599,28 @@ public virtual string matchingentitymatchcodetable partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property excludeinactiverecords in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable excludeinactiverecords + { + get + { + return this._excludeinactiverecords; + } + set + { + this.OnexcludeinactiverecordsChanging(value); + this._excludeinactiverecords = value; + this.OnexcludeinactiverecordsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _excludeinactiverecords; + partial void OnexcludeinactiverecordsChanging(global::System.Nullable value); + partial void OnexcludeinactiverecordsChanged(); + /// /// There are no comments for Property matchingentityname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -223665,28 +223665,6 @@ public virtual string baseentitymatchcodetable partial void OnbaseentitymatchcodetableChanging(string value); partial void OnbaseentitymatchcodetableChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property duplicateruleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -223709,93 +223687,93 @@ public virtual string baseentitymatchcodetable partial void OnduplicateruleidChanging(global::System.Nullable value); partial void OnduplicateruleidChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable modifiedon { get { - return this.__owningteam_value; + return this._modifiedon; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__ownerid_value; + return this.__owningbusinessunit_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property iscasesensitive in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable iscasesensitive + public virtual global::System.Nullable _owninguser_value { get { - return this._iscasesensitive; + return this.__owninguser_value; } set { - this.OniscasesensitiveChanging(value); - this._iscasesensitive = value; - this.OniscasesensitiveChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _iscasesensitive; - partial void OniscasesensitiveChanging(global::System.Nullable value); - partial void OniscasesensitiveChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property iscasesensitive in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable iscasesensitive { get { - return this._description; + return this._iscasesensitive; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OniscasesensitiveChanging(value); + this._iscasesensitive = value; + this.OniscasesensitiveChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _iscasesensitive; + partial void OniscasesensitiveChanging(global::System.Nullable value); + partial void OniscasesensitiveChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -223863,6 +223841,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property description in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string description + { + get + { + return this._description; + } + set + { + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -223885,27 +223885,27 @@ public virtual string name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable statuscode { get { - return this.__createdonbehalfby_value; + return this._statuscode; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property createdonbehalfby in the schema. /// @@ -226381,6 +226381,28 @@ public static dynamicpropertyassociation Createdynamicpropertyassociation(global partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property dynamicpropertyassociationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -226403,93 +226425,93 @@ public static dynamicpropertyassociation Createdynamicpropertyassociation(global partial void OndynamicpropertyassociationidChanging(global::System.Nullable value); partial void OndynamicpropertyassociationidChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable versionnumber { get { - return this._utcconversiontimezonecode; + return this._versionnumber; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _modifiedby_value { get { - return this._modifiedon; + return this.__modifiedby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property inheritancestate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable inheritancestate { get { - return this.__organizationid_value; + return this._inheritancestate; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OninheritancestateChanging(value); + this._inheritancestate = value; + this.OninheritancestateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _inheritancestate; + partial void OninheritancestateChanging(global::System.Nullable value); + partial void OninheritancestateChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__modifiedby_value; + return this._importsequencenumber; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -226513,27 +226535,159 @@ public static dynamicpropertyassociation Createdynamicpropertyassociation(global partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property inheritancestate in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable inheritancestate + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._inheritancestate; + return this.__modifiedonbehalfby_value; } set { - this.OninheritancestateChanging(value); - this._inheritancestate = value; - this.OninheritancestateChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _inheritancestate; - partial void OninheritancestateChanging(global::System.Nullable value); - partial void OninheritancestateChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property _regardingobjectid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _regardingobjectid_value + { + get + { + return this.__regardingobjectid_value; + } + set + { + this.On_regardingobjectid_valueChanging(value); + this.__regardingobjectid_value = value; + this.On_regardingobjectid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __regardingobjectid_value; + partial void On_regardingobjectid_valueChanging(global::System.Nullable value); + partial void On_regardingobjectid_valueChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property associationstatus in the schema. /// @@ -226557,71 +226711,71 @@ public static dynamicpropertyassociation Createdynamicpropertyassociation(global partial void OnassociationstatusChanging(global::System.Nullable value); partial void OnassociationstatusChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._overriddencreatedon; + return this._utcconversiontimezonecode; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _dynamicpropertyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _dynamicpropertyid_value { get { - return this._createdon; + return this.__dynamicpropertyid_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_dynamicpropertyid_valueChanging(value); + this.__dynamicpropertyid_value = value; + this.On_dynamicpropertyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __dynamicpropertyid_value; + partial void On_dynamicpropertyid_valueChanging(global::System.Nullable value); + partial void On_dynamicpropertyid_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__createdby_value; + return this.__organizationid_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -226645,160 +226799,6 @@ public static dynamicpropertyassociation Createdynamicpropertyassociation(global partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property _regardingobjectid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _regardingobjectid_value - { - get - { - return this.__regardingobjectid_value; - } - set - { - this.On_regardingobjectid_valueChanging(value); - this.__regardingobjectid_value = value; - this.On_regardingobjectid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __regardingobjectid_value; - partial void On_regardingobjectid_valueChanging(global::System.Nullable value); - partial void On_regardingobjectid_valueChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property _dynamicpropertyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _dynamicpropertyid_value - { - get - { - return this.__dynamicpropertyid_value; - } - set - { - this.On_dynamicpropertyid_valueChanging(value); - this.__dynamicpropertyid_value = value; - this.On_dynamicpropertyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __dynamicpropertyid_value; - partial void On_dynamicpropertyid_valueChanging(global::System.Nullable value); - partial void On_dynamicpropertyid_valueChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property dmtimportstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -227743,27 +227743,27 @@ public static dynamicpropertyinstance Createdynamicpropertyinstance(global::EMBC partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property valueinteger in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable valueinteger { get { - return this.__ownerid_value; + return this._valueinteger; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnvalueintegerChanging(value); + this._valueinteger = value; + this.OnvalueintegerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _valueinteger; + partial void OnvalueintegerChanging(global::System.Nullable value); + partial void OnvalueintegerChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -227787,50 +227787,6 @@ public static dynamicpropertyinstance Createdynamicpropertyinstance(global::EMBC partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property valuedecimal in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable valuedecimal - { - get - { - return this._valuedecimal; - } - set - { - this.OnvaluedecimalChanging(value); - this._valuedecimal = value; - this.OnvaluedecimalChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _valuedecimal; - partial void OnvaluedecimalChanging(global::System.Nullable value); - partial void OnvaluedecimalChanged(); - /// /// There are no comments for Property _dynamicpropertyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -227853,49 +227809,49 @@ public static dynamicpropertyinstance Createdynamicpropertyinstance(global::EMBC partial void On_dynamicpropertyid_valueChanging(global::System.Nullable value); partial void On_dynamicpropertyid_valueChanged(); /// - /// There are no comments for Property validationstatus in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable validationstatus + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._validationstatus; + return this._timezoneruleversionnumber; } set { - this.OnvalidationstatusChanging(value); - this._validationstatus = value; - this.OnvalidationstatusChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _validationstatus; - partial void OnvalidationstatusChanging(global::System.Nullable value); - partial void OnvalidationstatusChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__modifiedby_value; + return this._overriddencreatedon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property name in the schema. /// @@ -227919,93 +227875,93 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property validationstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable validationstatus { get { - return this.__createdonbehalfby_value; + return this._validationstatus; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnvalidationstatusChanging(value); + this._validationstatus = value; + this.OnvalidationstatusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _validationstatus; + partial void OnvalidationstatusChanging(global::System.Nullable value); + partial void OnvalidationstatusChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property dmtimportstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable dmtimportstate { get { - return this._importsequencenumber; + return this._dmtimportstate; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OndmtimportstateChanging(value); + this._dmtimportstate = value; + this.OndmtimportstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _dmtimportstate; + partial void OndmtimportstateChanging(global::System.Nullable value); + partial void OndmtimportstateChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__owningbusinessunit_value; + return this.__createdonbehalfby_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property dmtimportstate in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable dmtimportstate + public virtual global::System.Nullable importsequencenumber { get { - return this._dmtimportstate; + return this._importsequencenumber; } set { - this.OndmtimportstateChanging(value); - this._dmtimportstate = value; - this.OndmtimportstateChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _dmtimportstate; - partial void OndmtimportstateChanging(global::System.Nullable value); - partial void OndmtimportstateChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property valuestring in the schema. /// @@ -228161,71 +228117,115 @@ public virtual string valuestring partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property valueinteger in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable valueinteger + public virtual global::System.Nullable _modifiedby_value { get { - return this._valueinteger; + return this.__modifiedby_value; } set { - this.OnvalueintegerChanging(value); - this._valueinteger = value; - this.OnvalueintegerChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _valueinteger; - partial void OnvalueintegerChanging(global::System.Nullable value); - partial void OnvalueintegerChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _regardingobjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _regardingobjectid_value { get { - return this._overriddencreatedon; + return this.__regardingobjectid_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_regardingobjectid_valueChanging(value); + this.__regardingobjectid_value = value; + this.On_regardingobjectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __regardingobjectid_value; + partial void On_regardingobjectid_valueChanging(global::System.Nullable value); + partial void On_regardingobjectid_valueChanged(); /// - /// There are no comments for Property _regardingobjectid_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _regardingobjectid_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__regardingobjectid_value; + return this.__ownerid_value; } set { - this.On_regardingobjectid_valueChanging(value); - this.__regardingobjectid_value = value; - this.On_regardingobjectid_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __regardingobjectid_value; - partial void On_regardingobjectid_valueChanging(global::System.Nullable value); - partial void On_regardingobjectid_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// + /// There are no comments for Property valuedecimal in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable valuedecimal + { + get + { + return this._valuedecimal; + } + set + { + this.OnvaluedecimalChanging(value); + this._valuedecimal = value; + this.OnvaluedecimalChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _valuedecimal; + partial void OnvaluedecimalChanging(global::System.Nullable value); + partial void OnvaluedecimalChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -229089,27 +229089,27 @@ public virtual string dynamicpropertyoptionname partial void OndynamicpropertyoptionnameChanging(string value); partial void OndynamicpropertyoptionnameChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this.__createdby_value; + return this.__transactioncurrencyid_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -229155,49 +229155,27 @@ public virtual string dynamicpropertyoptionname partial void OndynamicpropertyoptionsetvalueidChanging(global::System.Nullable value); partial void OndynamicpropertyoptionsetvalueidChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _createdby_value { get { - return this._createdon; + return this.__createdby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -229221,93 +229199,115 @@ public virtual string dynamicpropertyoptionname partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property dynamicpropertyoptiondescription in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string dynamicpropertyoptiondescription { get { - return this._importsequencenumber; + return this._dynamicpropertyoptiondescription; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OndynamicpropertyoptiondescriptionChanging(value); + this._dynamicpropertyoptiondescription = value; + this.OndynamicpropertyoptiondescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _dynamicpropertyoptiondescription; + partial void OndynamicpropertyoptiondescriptionChanging(string value); + partial void OndynamicpropertyoptiondescriptionChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable exchangerate { get { - return this._versionnumber; + return this._exchangerate; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// - /// There are no comments for Property dynamicpropertyoptiondescription in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string dynamicpropertyoptiondescription + public virtual global::System.Nullable importsequencenumber { get { - return this._dynamicpropertyoptiondescription; + return this._importsequencenumber; } set { - this.OndynamicpropertyoptiondescriptionChanging(value); - this._dynamicpropertyoptiondescription = value; - this.OndynamicpropertyoptiondescriptionChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _dynamicpropertyoptiondescription; - partial void OndynamicpropertyoptiondescriptionChanging(string value); - partial void OndynamicpropertyoptiondescriptionChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._exchangerate; + return this.__createdonbehalfby_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property dynamicpropertyoptionsetvaluesequencenumber in the schema. /// @@ -229331,27 +229331,27 @@ public virtual string dynamicpropertyoptiondescription partial void OndynamicpropertyoptionsetvaluesequencenumberChanging(global::System.Nullable value); partial void OndynamicpropertyoptionsetvaluesequencenumberChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__transactioncurrencyid_value; + return this.__organizationid_value; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property _dynamicpropertyid_value in the schema. /// @@ -229375,27 +229375,27 @@ public virtual string dynamicpropertyoptiondescription partial void On_dynamicpropertyid_valueChanging(global::System.Nullable value); partial void On_dynamicpropertyid_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable createdon { get { - return this.__organizationid_value; + return this._createdon; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property dmtimportstate in the schema. /// @@ -233413,72 +233413,6 @@ public static email Createemail(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dy return email; } /// - /// There are no comments for Property _correlatedactivityid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _correlatedactivityid_value - { - get - { - return this.__correlatedactivityid_value; - } - set - { - this.On_correlatedactivityid_valueChanging(value); - this.__correlatedactivityid_value = value; - this.On_correlatedactivityid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __correlatedactivityid_value; - partial void On_correlatedactivityid_valueChanging(global::System.Nullable value); - partial void On_correlatedactivityid_valueChanged(); - /// - /// There are no comments for Property reminderactioncardid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable reminderactioncardid - { - get - { - return this._reminderactioncardid; - } - set - { - this.OnreminderactioncardidChanging(value); - this._reminderactioncardid = value; - this.OnreminderactioncardidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _reminderactioncardid; - partial void OnreminderactioncardidChanging(global::System.Nullable value); - partial void OnreminderactioncardidChanged(); - /// - /// There are no comments for Property trackingtoken in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string trackingtoken - { - get - { - return this._trackingtoken; - } - set - { - this.OntrackingtokenChanging(value); - this._trackingtoken = value; - this.OntrackingtokenChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _trackingtoken; - partial void OntrackingtokenChanging(string value); - partial void OntrackingtokenChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -233523,28 +233457,6 @@ public virtual string trackingtoken partial void OnreadreceiptrequestedChanging(global::System.Nullable value); partial void OnreadreceiptrequestedChanged(); /// - /// There are no comments for Property messageid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string messageid - { - get - { - return this._messageid; - } - set - { - this.OnmessageidChanging(value); - this._messageid = value; - this.OnmessageidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _messageid; - partial void OnmessageidChanging(string value); - partial void OnmessageidChanged(); - /// /// There are no comments for Property compressed in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -233567,27 +233479,27 @@ public virtual string messageid partial void OncompressedChanging(global::System.Nullable value); partial void OncompressedChanged(); /// - /// There are no comments for Property emailremindertext in the schema. + /// There are no comments for Property linksclickedcount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailremindertext + public virtual global::System.Nullable linksclickedcount { get { - return this._emailremindertext; + return this._linksclickedcount; } set { - this.OnemailremindertextChanging(value); - this._emailremindertext = value; - this.OnemailremindertextChanged(); + this.OnlinksclickedcountChanging(value); + this._linksclickedcount = value; + this.OnlinksclickedcountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailremindertext; - partial void OnemailremindertextChanging(string value); - partial void OnemailremindertextChanged(); + private global::System.Nullable _linksclickedcount; + partial void OnlinksclickedcountChanging(global::System.Nullable value); + partial void OnlinksclickedcountChanged(); /// /// There are no comments for Property emailtrackingid in the schema. /// @@ -233633,27 +233545,49 @@ public virtual string emailremindertext partial void OnemailreminderexpirytimeChanging(global::System.Nullable value); partial void OnemailreminderexpirytimeChanged(); /// - /// There are no comments for Property isunsafe in the schema. + /// There are no comments for Property subcategory in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isunsafe + public virtual string subcategory { get { - return this._isunsafe; + return this._subcategory; } set { - this.OnisunsafeChanging(value); - this._isunsafe = value; - this.OnisunsafeChanged(); + this.OnsubcategoryChanging(value); + this._subcategory = value; + this.OnsubcategoryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isunsafe; - partial void OnisunsafeChanging(global::System.Nullable value); - partial void OnisunsafeChanged(); + private string _subcategory; + partial void OnsubcategoryChanging(string value); + partial void OnsubcategoryChanged(); + /// + /// There are no comments for Property _parentactivityid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _parentactivityid_value + { + get + { + return this.__parentactivityid_value; + } + set + { + this.On_parentactivityid_valueChanging(value); + this.__parentactivityid_value = value; + this.On_parentactivityid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __parentactivityid_value; + partial void On_parentactivityid_valueChanging(global::System.Nullable value); + partial void On_parentactivityid_valueChanged(); /// /// There are no comments for Property reservedforinternaluse in the schema. /// @@ -233677,71 +233611,49 @@ public virtual string reservedforinternaluse partial void OnreservedforinternaluseChanging(string value); partial void OnreservedforinternaluseChanged(); /// - /// There are no comments for Property subcategory in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string subcategory - { - get - { - return this._subcategory; - } - set - { - this.OnsubcategoryChanging(value); - this._subcategory = value; - this.OnsubcategoryChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _subcategory; - partial void OnsubcategoryChanging(string value); - partial void OnsubcategoryChanged(); - /// - /// There are no comments for Property _parentactivityid_value in the schema. + /// There are no comments for Property replycount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _parentactivityid_value + public virtual global::System.Nullable replycount { get { - return this.__parentactivityid_value; + return this._replycount; } set { - this.On_parentactivityid_valueChanging(value); - this.__parentactivityid_value = value; - this.On_parentactivityid_valueChanged(); + this.OnreplycountChanging(value); + this._replycount = value; + this.OnreplycountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentactivityid_value; - partial void On_parentactivityid_valueChanging(global::System.Nullable value); - partial void On_parentactivityid_valueChanged(); + private global::System.Nullable _replycount; + partial void OnreplycountChanging(global::System.Nullable value); + partial void OnreplycountChanged(); /// - /// There are no comments for Property postponeemailprocessinguntil in the schema. + /// There are no comments for Property reminderactioncardid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable postponeemailprocessinguntil + public virtual global::System.Nullable reminderactioncardid { get { - return this._postponeemailprocessinguntil; + return this._reminderactioncardid; } set { - this.OnpostponeemailprocessinguntilChanging(value); - this._postponeemailprocessinguntil = value; - this.OnpostponeemailprocessinguntilChanged(); + this.OnreminderactioncardidChanging(value); + this._reminderactioncardid = value; + this.OnreminderactioncardidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _postponeemailprocessinguntil; - partial void OnpostponeemailprocessinguntilChanging(global::System.Nullable value); - partial void OnpostponeemailprocessinguntilChanged(); + private global::System.Nullable _reminderactioncardid; + partial void OnreminderactioncardidChanging(global::System.Nullable value); + partial void OnreminderactioncardidChanged(); /// /// There are no comments for Property category in the schema. /// @@ -233765,159 +233677,159 @@ public virtual string category partial void OncategoryChanging(string value); partial void OncategoryChanged(); /// - /// There are no comments for Property replycount in the schema. + /// There are no comments for Property safedescription in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable replycount + public virtual string safedescription { get { - return this._replycount; + return this._safedescription; } set { - this.OnreplycountChanging(value); - this._replycount = value; - this.OnreplycountChanged(); + this.OnsafedescriptionChanging(value); + this._safedescription = value; + this.OnsafedescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _replycount; - partial void OnreplycountChanging(global::System.Nullable value); - partial void OnreplycountChanged(); + private string _safedescription; + partial void OnsafedescriptionChanging(string value); + partial void OnsafedescriptionChanged(); /// - /// There are no comments for Property directioncode in the schema. + /// There are no comments for Property correlationmethod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable directioncode + public virtual global::System.Nullable correlationmethod { get { - return this._directioncode; + return this._correlationmethod; } set { - this.OndirectioncodeChanging(value); - this._directioncode = value; - this.OndirectioncodeChanged(); + this.OncorrelationmethodChanging(value); + this._correlationmethod = value; + this.OncorrelationmethodChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _directioncode; - partial void OndirectioncodeChanging(global::System.Nullable value); - partial void OndirectioncodeChanged(); + private global::System.Nullable _correlationmethod; + partial void OncorrelationmethodChanging(global::System.Nullable value); + partial void OncorrelationmethodChanged(); /// - /// There are no comments for Property safedescription in the schema. + /// There are no comments for Property baseconversationindexhash in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string safedescription + public virtual global::System.Nullable baseconversationindexhash { get { - return this._safedescription; + return this._baseconversationindexhash; } set { - this.OnsafedescriptionChanging(value); - this._safedescription = value; - this.OnsafedescriptionChanged(); + this.OnbaseconversationindexhashChanging(value); + this._baseconversationindexhash = value; + this.OnbaseconversationindexhashChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _safedescription; - partial void OnsafedescriptionChanging(string value); - partial void OnsafedescriptionChanged(); + private global::System.Nullable _baseconversationindexhash; + partial void OnbaseconversationindexhashChanging(global::System.Nullable value); + partial void OnbaseconversationindexhashChanged(); /// - /// There are no comments for Property correlationmethod in the schema. + /// There are no comments for Property _templateid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable correlationmethod + public virtual global::System.Nullable _templateid_value { get { - return this._correlationmethod; + return this.__templateid_value; } set { - this.OncorrelationmethodChanging(value); - this._correlationmethod = value; - this.OncorrelationmethodChanged(); + this.On_templateid_valueChanging(value); + this.__templateid_value = value; + this.On_templateid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _correlationmethod; - partial void OncorrelationmethodChanging(global::System.Nullable value); - partial void OncorrelationmethodChanged(); + private global::System.Nullable __templateid_value; + partial void On_templateid_valueChanging(global::System.Nullable value); + partial void On_templateid_valueChanged(); /// - /// There are no comments for Property _sendersaccount_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _sendersaccount_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__sendersaccount_value; + return this._importsequencenumber; } set { - this.On_sendersaccount_valueChanging(value); - this.__sendersaccount_value = value; - this.On_sendersaccount_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __sendersaccount_value; - partial void On_sendersaccount_valueChanging(global::System.Nullable value); - partial void On_sendersaccount_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property emailreminderstatus in the schema. + /// There are no comments for Property directioncode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable emailreminderstatus + public virtual global::System.Nullable directioncode { get { - return this._emailreminderstatus; + return this._directioncode; } set { - this.OnemailreminderstatusChanging(value); - this._emailreminderstatus = value; - this.OnemailreminderstatusChanged(); + this.OndirectioncodeChanging(value); + this._directioncode = value; + this.OndirectioncodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _emailreminderstatus; - partial void OnemailreminderstatusChanging(global::System.Nullable value); - partial void OnemailreminderstatusChanged(); + private global::System.Nullable _directioncode; + partial void OndirectioncodeChanging(global::System.Nullable value); + partial void OndirectioncodeChanged(); /// - /// There are no comments for Property linksclickedcount in the schema. + /// There are no comments for Property emailreminderstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable linksclickedcount + public virtual global::System.Nullable emailreminderstatus { get { - return this._linksclickedcount; + return this._emailreminderstatus; } set { - this.OnlinksclickedcountChanging(value); - this._linksclickedcount = value; - this.OnlinksclickedcountChanged(); + this.OnemailreminderstatusChanging(value); + this._emailreminderstatus = value; + this.OnemailreminderstatusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _linksclickedcount; - partial void OnlinksclickedcountChanging(global::System.Nullable value); - partial void OnlinksclickedcountChanged(); + private global::System.Nullable _emailreminderstatus; + partial void OnemailreminderstatusChanging(global::System.Nullable value); + partial void OnemailreminderstatusChanged(); /// /// There are no comments for Property submittedby in the schema. /// @@ -233941,27 +233853,27 @@ public virtual string submittedby partial void OnsubmittedbyChanging(string value); partial void OnsubmittedbyChanged(); /// - /// There are no comments for Property _emailsender_value in the schema. + /// There are no comments for Property trackingtoken in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _emailsender_value + public virtual string trackingtoken { get { - return this.__emailsender_value; + return this._trackingtoken; } set { - this.On_emailsender_valueChanging(value); - this.__emailsender_value = value; - this.On_emailsender_valueChanged(); + this.OntrackingtokenChanging(value); + this._trackingtoken = value; + this.OntrackingtokenChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __emailsender_value; - partial void On_emailsender_valueChanging(global::System.Nullable value); - partial void On_emailsender_valueChanged(); + private string _trackingtoken; + partial void OntrackingtokenChanging(string value); + partial void OntrackingtokenChanged(); /// /// There are no comments for Property deliveryreceiptrequested in the schema. /// @@ -234029,49 +233941,49 @@ public virtual string submittedby partial void OnconversationtrackingidChanging(global::System.Nullable value); partial void OnconversationtrackingidChanged(); /// - /// There are no comments for Property deliveryattempts in the schema. + /// There are no comments for Property opencount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable deliveryattempts + public virtual global::System.Nullable opencount { get { - return this._deliveryattempts; + return this._opencount; } set { - this.OndeliveryattemptsChanging(value); - this._deliveryattempts = value; - this.OndeliveryattemptsChanged(); + this.OnopencountChanging(value); + this._opencount = value; + this.OnopencountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _deliveryattempts; - partial void OndeliveryattemptsChanging(global::System.Nullable value); - partial void OndeliveryattemptsChanged(); + private global::System.Nullable _opencount; + partial void OnopencountChanging(global::System.Nullable value); + partial void OnopencountChanged(); /// - /// There are no comments for Property opencount in the schema. + /// There are no comments for Property lastopenedtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable opencount + public virtual global::System.Nullable lastopenedtime { get { - return this._opencount; + return this._lastopenedtime; } set { - this.OnopencountChanging(value); - this._opencount = value; - this.OnopencountChanged(); + this.OnlastopenedtimeChanging(value); + this._lastopenedtime = value; + this.OnlastopenedtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _opencount; - partial void OnopencountChanging(global::System.Nullable value); - partial void OnopencountChanged(); + private global::System.Nullable _lastopenedtime; + partial void OnlastopenedtimeChanging(global::System.Nullable value); + partial void OnlastopenedtimeChanged(); /// /// There are no comments for Property torecipients in the schema. /// @@ -234161,71 +234073,115 @@ public virtual string torecipients partial void OndelayedemailsendtimeChanging(global::System.Nullable value); partial void OndelayedemailsendtimeChanged(); /// - /// There are no comments for Property mimetype in the schema. + /// There are no comments for Property followemailuserpreference in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string mimetype + public virtual global::System.Nullable followemailuserpreference { get { - return this._mimetype; + return this._followemailuserpreference; } set { - this.OnmimetypeChanging(value); - this._mimetype = value; - this.OnmimetypeChanged(); + this.OnfollowemailuserpreferenceChanging(value); + this._followemailuserpreference = value; + this.OnfollowemailuserpreferenceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _mimetype; - partial void OnmimetypeChanging(string value); - partial void OnmimetypeChanged(); + private global::System.Nullable _followemailuserpreference; + partial void OnfollowemailuserpreferenceChanging(global::System.Nullable value); + partial void OnfollowemailuserpreferenceChanged(); /// - /// There are no comments for Property followemailuserpreference in the schema. + /// There are no comments for Property isunsafe in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable followemailuserpreference + public virtual global::System.Nullable isunsafe { get { - return this._followemailuserpreference; + return this._isunsafe; } set { - this.OnfollowemailuserpreferenceChanging(value); - this._followemailuserpreference = value; - this.OnfollowemailuserpreferenceChanged(); + this.OnisunsafeChanging(value); + this._isunsafe = value; + this.OnisunsafeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _followemailuserpreference; - partial void OnfollowemailuserpreferenceChanging(global::System.Nullable value); - partial void OnfollowemailuserpreferenceChanged(); + private global::System.Nullable _isunsafe; + partial void OnisunsafeChanging(global::System.Nullable value); + partial void OnisunsafeChanged(); /// - /// There are no comments for Property _templateid_value in the schema. + /// There are no comments for Property _emailsender_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _templateid_value + public virtual global::System.Nullable _emailsender_value { get { - return this.__templateid_value; + return this.__emailsender_value; } set { - this.On_templateid_valueChanging(value); - this.__templateid_value = value; - this.On_templateid_valueChanged(); + this.On_emailsender_valueChanging(value); + this.__emailsender_value = value; + this.On_emailsender_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __templateid_value; - partial void On_templateid_valueChanging(global::System.Nullable value); - partial void On_templateid_valueChanged(); + private global::System.Nullable __emailsender_value; + partial void On_emailsender_valueChanging(global::System.Nullable value); + partial void On_emailsender_valueChanged(); + /// + /// There are no comments for Property _sendersaccount_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _sendersaccount_value + { + get + { + return this.__sendersaccount_value; + } + set + { + this.On_sendersaccount_valueChanging(value); + this.__sendersaccount_value = value; + this.On_sendersaccount_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __sendersaccount_value; + partial void On_sendersaccount_valueChanging(global::System.Nullable value); + partial void On_sendersaccount_valueChanged(); + /// + /// There are no comments for Property mimetype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string mimetype + { + get + { + return this._mimetype; + } + set + { + this.OnmimetypeChanging(value); + this._mimetype = value; + this.OnmimetypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _mimetype; + partial void OnmimetypeChanging(string value); + partial void OnmimetypeChanged(); /// /// There are no comments for Property inreplyto in the schema. /// @@ -234249,71 +234205,115 @@ public virtual string inreplyto partial void OninreplytoChanging(string value); partial void OninreplytoChanged(); /// - /// There are no comments for Property attachmentcount in the schema. + /// There are no comments for Property messageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable attachmentcount + public virtual string messageid { get { - return this._attachmentcount; + return this._messageid; } set { - this.OnattachmentcountChanging(value); - this._attachmentcount = value; - this.OnattachmentcountChanged(); + this.OnmessageidChanging(value); + this._messageid = value; + this.OnmessageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _attachmentcount; - partial void OnattachmentcountChanging(global::System.Nullable value); - partial void OnattachmentcountChanged(); + private string _messageid; + partial void OnmessageidChanging(string value); + partial void OnmessageidChanged(); /// - /// There are no comments for Property lastopenedtime in the schema. + /// There are no comments for Property postponeemailprocessinguntil in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lastopenedtime + public virtual global::System.Nullable postponeemailprocessinguntil { get { - return this._lastopenedtime; + return this._postponeemailprocessinguntil; } set { - this.OnlastopenedtimeChanging(value); - this._lastopenedtime = value; - this.OnlastopenedtimeChanged(); + this.OnpostponeemailprocessinguntilChanging(value); + this._postponeemailprocessinguntil = value; + this.OnpostponeemailprocessinguntilChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastopenedtime; - partial void OnlastopenedtimeChanging(global::System.Nullable value); - partial void OnlastopenedtimeChanged(); + private global::System.Nullable _postponeemailprocessinguntil; + partial void OnpostponeemailprocessinguntilChanging(global::System.Nullable value); + partial void OnpostponeemailprocessinguntilChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property emailremindertext in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string emailremindertext { get { - return this._importsequencenumber; + return this._emailremindertext; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnemailremindertextChanging(value); + this._emailremindertext = value; + this.OnemailremindertextChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _emailremindertext; + partial void OnemailremindertextChanging(string value); + partial void OnemailremindertextChanged(); + /// + /// There are no comments for Property attachmentcount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable attachmentcount + { + get + { + return this._attachmentcount; + } + set + { + this.OnattachmentcountChanging(value); + this._attachmentcount = value; + this.OnattachmentcountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _attachmentcount; + partial void OnattachmentcountChanging(global::System.Nullable value); + partial void OnattachmentcountChanged(); + /// + /// There are no comments for Property _correlatedactivityid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _correlatedactivityid_value + { + get + { + return this.__correlatedactivityid_value; + } + set + { + this.On_correlatedactivityid_valueChanging(value); + this.__correlatedactivityid_value = value; + this.On_correlatedactivityid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __correlatedactivityid_value; + partial void On_correlatedactivityid_valueChanging(global::System.Nullable value); + partial void On_correlatedactivityid_valueChanged(); /// /// There are no comments for Property isemailfollowed in the schema. /// @@ -234359,27 +234359,27 @@ public virtual string conversationindex partial void OnconversationindexChanging(string value); partial void OnconversationindexChanged(); /// - /// There are no comments for Property baseconversationindexhash in the schema. + /// There are no comments for Property deliveryattempts in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable baseconversationindexhash + public virtual global::System.Nullable deliveryattempts { get { - return this._baseconversationindexhash; + return this._deliveryattempts; } set { - this.OnbaseconversationindexhashChanging(value); - this._baseconversationindexhash = value; - this.OnbaseconversationindexhashChanged(); + this.OndeliveryattemptsChanging(value); + this._deliveryattempts = value; + this.OndeliveryattemptsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _baseconversationindexhash; - partial void OnbaseconversationindexhashChanging(global::System.Nullable value); - partial void OnbaseconversationindexhashChanged(); + private global::System.Nullable _deliveryattempts; + partial void OndeliveryattemptsChanging(global::System.Nullable value); + partial void OndeliveryattemptsChanged(); /// /// There are no comments for Property sender in the schema. /// @@ -236592,49 +236592,27 @@ public virtual string oauthclientsecret partial void OnoauthclientsecretChanging(string value); partial void OnoauthclientsecretChanged(); /// - /// There are no comments for Property outgoingserverlocation in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string outgoingserverlocation - { - get - { - return this._outgoingserverlocation; - } - set - { - this.OnoutgoingserverlocationChanging(value); - this._outgoingserverlocation = value; - this.OnoutgoingserverlocationChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _outgoingserverlocation; - partial void OnoutgoingserverlocationChanging(string value); - partial void OnoutgoingserverlocationChanged(); - /// - /// There are no comments for Property timeoutmailboxconnection in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timeoutmailboxconnection + public virtual global::System.Nullable statuscode { get { - return this._timeoutmailboxconnection; + return this._statuscode; } set { - this.OntimeoutmailboxconnectionChanging(value); - this._timeoutmailboxconnection = value; - this.OntimeoutmailboxconnectionChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timeoutmailboxconnection; - partial void OntimeoutmailboxconnectionChanging(global::System.Nullable value); - partial void OntimeoutmailboxconnectionChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _incomingpartnerapplication_value in the schema. /// @@ -236790,28 +236768,6 @@ public virtual string name partial void OnisincomingpasswordsetChanging(global::System.Nullable value); partial void OnisincomingpasswordsetChanged(); /// - /// There are no comments for Property oauthclientid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string oauthclientid - { - get - { - return this._oauthclientid; - } - set - { - this.OnoauthclientidChanging(value); - this._oauthclientid = value; - this.OnoauthclientidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _oauthclientid; - partial void OnoauthclientidChanging(string value); - partial void OnoauthclientidChanged(); - /// /// There are no comments for Property incomingpassword in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -236834,71 +236790,71 @@ public virtual string incomingpassword partial void OnincomingpasswordChanging(string value); partial void OnincomingpasswordChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property lasttestresponse in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string lasttestresponse { get { - return this._statuscode; + return this._lasttestresponse; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnlasttestresponseChanging(value); + this._lasttestresponse = value; + this.OnlasttestresponseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _lasttestresponse; + partial void OnlasttestresponseChanging(string value); + partial void OnlasttestresponseChanged(); /// - /// There are no comments for Property outgoingusername in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string outgoingusername + public virtual global::System.Nullable modifiedon { get { - return this._outgoingusername; + return this._modifiedon; } set { - this.OnoutgoingusernameChanging(value); - this._outgoingusername = value; - this.OnoutgoingusernameChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _outgoingusername; - partial void OnoutgoingusernameChanging(string value); - partial void OnoutgoingusernameChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property moveundeliveredemails in the schema. + /// There are no comments for Property outgoingserverlocation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable moveundeliveredemails + public virtual string outgoingserverlocation { get { - return this._moveundeliveredemails; + return this._outgoingserverlocation; } set { - this.OnmoveundeliveredemailsChanging(value); - this._moveundeliveredemails = value; - this.OnmoveundeliveredemailsChanged(); + this.OnoutgoingserverlocationChanging(value); + this._outgoingserverlocation = value; + this.OnoutgoingserverlocationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _moveundeliveredemails; - partial void OnmoveundeliveredemailsChanging(global::System.Nullable value); - partial void OnmoveundeliveredemailsChanged(); + private string _outgoingserverlocation; + partial void OnoutgoingserverlocationChanging(string value); + partial void OnoutgoingserverlocationChanged(); /// /// There are no comments for Property isdataencryptionkeyset in the schema. /// @@ -237032,49 +236988,71 @@ public virtual string encodingcodepage partial void OnsendemailalertChanging(global::System.Nullable value); partial void OnsendemailalertChanged(); /// - /// There are no comments for Property processemailsreceivedafter in the schema. + /// There are no comments for Property lastteststarttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processemailsreceivedafter + public virtual global::System.Nullable lastteststarttime { get { - return this._processemailsreceivedafter; + return this._lastteststarttime; } set { - this.OnprocessemailsreceivedafterChanging(value); - this._processemailsreceivedafter = value; - this.OnprocessemailsreceivedafterChanged(); + this.OnlastteststarttimeChanging(value); + this._lastteststarttime = value; + this.OnlastteststarttimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processemailsreceivedafter; - partial void OnprocessemailsreceivedafterChanging(global::System.Nullable value); - partial void OnprocessemailsreceivedafterChanged(); + private global::System.Nullable _lastteststarttime; + partial void OnlastteststarttimeChanging(global::System.Nullable value); + partial void OnlastteststarttimeChanged(); /// - /// There are no comments for Property lastauthorizationstatus in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lastauthorizationstatus + public virtual string entityimage_url { get { - return this._lastauthorizationstatus; + return this._entityimage_url; } set { - this.OnlastauthorizationstatusChanging(value); - this._lastauthorizationstatus = value; - this.OnlastauthorizationstatusChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastauthorizationstatus; - partial void OnlastauthorizationstatusChanging(global::System.Nullable value); - partial void OnlastauthorizationstatusChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); + /// + /// There are no comments for Property processemailsreceivedafter in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable processemailsreceivedafter + { + get + { + return this._processemailsreceivedafter; + } + set + { + this.OnprocessemailsreceivedafterChanging(value); + this._processemailsreceivedafter = value; + this.OnprocessemailsreceivedafterChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _processemailsreceivedafter; + partial void OnprocessemailsreceivedafterChanging(global::System.Nullable value); + partial void OnprocessemailsreceivedafterChanged(); /// /// There are no comments for Property entityimage in the schema. /// @@ -237142,27 +237120,27 @@ public virtual byte[] entityimage partial void OnlasttesttotalexecutiontimeChanging(global::System.Nullable value); partial void OnlasttesttotalexecutiontimeChanged(); /// - /// There are no comments for Property useautodiscover in the schema. + /// There are no comments for Property outgoingautograntdelegateaccess in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable useautodiscover + public virtual global::System.Nullable outgoingautograntdelegateaccess { get { - return this._useautodiscover; + return this._outgoingautograntdelegateaccess; } set { - this.OnuseautodiscoverChanging(value); - this._useautodiscover = value; - this.OnuseautodiscoverChanged(); + this.OnoutgoingautograntdelegateaccessChanging(value); + this._outgoingautograntdelegateaccess = value; + this.OnoutgoingautograntdelegateaccessChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _useautodiscover; - partial void OnuseautodiscoverChanging(global::System.Nullable value); - partial void OnuseautodiscoverChanged(); + private global::System.Nullable _outgoingautograntdelegateaccess; + partial void OnoutgoingautograntdelegateaccessChanging(global::System.Nullable value); + partial void OnoutgoingautograntdelegateaccessChanged(); /// /// There are no comments for Property _outgoingpartnerapplication_value in the schema. /// @@ -237186,115 +237164,49 @@ public virtual byte[] entityimage partial void On_outgoingpartnerapplication_valueChanging(global::System.Nullable value); partial void On_outgoingpartnerapplication_valueChanged(); /// - /// There are no comments for Property isoutgoingpasswordset in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isoutgoingpasswordset - { - get - { - return this._isoutgoingpasswordset; - } - set - { - this.OnisoutgoingpasswordsetChanging(value); - this._isoutgoingpasswordset = value; - this.OnisoutgoingpasswordsetChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isoutgoingpasswordset; - partial void OnisoutgoingpasswordsetChanging(global::System.Nullable value); - partial void OnisoutgoingpasswordsetChanged(); - /// - /// There are no comments for Property outgoingauthenticationprotocol in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable outgoingauthenticationprotocol - { - get - { - return this._outgoingauthenticationprotocol; - } - set - { - this.OnoutgoingauthenticationprotocolChanging(value); - this._outgoingauthenticationprotocol = value; - this.OnoutgoingauthenticationprotocolChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _outgoingauthenticationprotocol; - partial void OnoutgoingauthenticationprotocolChanging(global::System.Nullable value); - partial void OnoutgoingauthenticationprotocolChanged(); - /// - /// There are no comments for Property incomingusessl in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable incomingusessl - { - get - { - return this._incomingusessl; - } - set - { - this.OnincomingusesslChanging(value); - this._incomingusessl = value; - this.OnincomingusesslChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _incomingusessl; - partial void OnincomingusesslChanging(global::System.Nullable value); - partial void OnincomingusesslChanged(); - /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property usesamesettingsforoutgoingconnections in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable usesamesettingsforoutgoingconnections { get { - return this._createdon; + return this._usesamesettingsforoutgoingconnections; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnusesamesettingsforoutgoingconnectionsChanging(value); + this._usesamesettingsforoutgoingconnections = value; + this.OnusesamesettingsforoutgoingconnectionsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _usesamesettingsforoutgoingconnections; + partial void OnusesamesettingsforoutgoingconnectionsChanging(global::System.Nullable value); + partial void OnusesamesettingsforoutgoingconnectionsChanged(); /// - /// There are no comments for Property outgoingautograntdelegateaccess in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable outgoingautograntdelegateaccess + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._outgoingautograntdelegateaccess; + return this.__owningbusinessunit_value; } set { - this.OnoutgoingautograntdelegateaccessChanging(value); - this._outgoingautograntdelegateaccess = value; - this.OnoutgoingautograntdelegateaccessChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _outgoingautograntdelegateaccess; - partial void OnoutgoingautograntdelegateaccessChanging(global::System.Nullable value); - partial void OnoutgoingautograntdelegateaccessChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property incomingcredentialretrieval in the schema. /// @@ -237318,71 +237230,93 @@ public virtual byte[] entityimage partial void OnincomingcredentialretrievalChanging(global::System.Nullable value); partial void OnincomingcredentialretrievalChanged(); /// - /// There are no comments for Property emailservertypename in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailservertypename + public virtual global::System.Nullable createdon { get { - return this._emailservertypename; + return this._createdon; } set { - this.OnemailservertypenameChanging(value); - this._emailservertypename = value; - this.OnemailservertypenameChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailservertypename; - partial void OnemailservertypenameChanging(string value); - partial void OnemailservertypenameChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property incomingauthenticationprotocol in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable incomingauthenticationprotocol { get { - return this.__owningteam_value; + return this._incomingauthenticationprotocol; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnincomingauthenticationprotocolChanging(value); + this._incomingauthenticationprotocol = value; + this.OnincomingauthenticationprotocolChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _incomingauthenticationprotocol; + partial void OnincomingauthenticationprotocolChanging(global::System.Nullable value); + partial void OnincomingauthenticationprotocolChanged(); /// - /// There are no comments for Property incomingauthenticationprotocol in the schema. + /// There are no comments for Property incominguseimpersonation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable incomingauthenticationprotocol + public virtual global::System.Nullable incominguseimpersonation { get { - return this._incomingauthenticationprotocol; + return this._incominguseimpersonation; } set { - this.OnincomingauthenticationprotocolChanging(value); - this._incomingauthenticationprotocol = value; - this.OnincomingauthenticationprotocolChanged(); + this.OnincominguseimpersonationChanging(value); + this._incominguseimpersonation = value; + this.OnincominguseimpersonationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _incomingauthenticationprotocol; - partial void OnincomingauthenticationprotocolChanging(global::System.Nullable value); - partial void OnincomingauthenticationprotocolChanged(); + private global::System.Nullable _incominguseimpersonation; + partial void OnincominguseimpersonationChanging(global::System.Nullable value); + partial void OnincominguseimpersonationChanged(); + /// + /// There are no comments for Property lastauthorizationstatus in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable lastauthorizationstatus + { + get + { + return this._lastauthorizationstatus; + } + set + { + this.OnlastauthorizationstatusChanging(value); + this._lastauthorizationstatus = value; + this.OnlastauthorizationstatusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _lastauthorizationstatus; + partial void OnlastauthorizationstatusChanging(global::System.Nullable value); + partial void OnlastauthorizationstatusChanged(); /// /// There are no comments for Property maxconcurrentconnections in the schema. /// @@ -237472,27 +237406,27 @@ public virtual string owneremailaddress partial void OnoutgoingusesslChanging(global::System.Nullable value); partial void OnoutgoingusesslChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property incomingusessl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable incomingusessl { get { - return this.__organizationid_value; + return this._incomingusessl; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnincomingusesslChanging(value); + this._incomingusessl = value; + this.OnincomingusesslChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _incomingusessl; + partial void OnincomingusesslChanging(global::System.Nullable value); + partial void OnincomingusesslChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -237538,71 +237472,71 @@ public virtual string owneremailaddress partial void OnoutgoingcredentialretrievalChanging(global::System.Nullable value); partial void OnoutgoingcredentialretrievalChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable _owningteam_value { get { - return this._description; + return this.__owningteam_value; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property lasttestrequest in the schema. + /// There are no comments for Property oauthclientid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string lasttestrequest + public virtual string oauthclientid { get { - return this._lasttestrequest; + return this._oauthclientid; } set { - this.OnlasttestrequestChanging(value); - this._lasttestrequest = value; - this.OnlasttestrequestChanged(); + this.OnoauthclientidChanging(value); + this._oauthclientid = value; + this.OnoauthclientidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _lasttestrequest; - partial void OnlasttestrequestChanging(string value); - partial void OnlasttestrequestChanged(); + private string _oauthclientid; + partial void OnoauthclientidChanging(string value); + partial void OnoauthclientidChanged(); /// - /// There are no comments for Property lasttestresponse in the schema. + /// There are no comments for Property lasttestrequest in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string lasttestresponse + public virtual string lasttestrequest { get { - return this._lasttestresponse; + return this._lasttestrequest; } set { - this.OnlasttestresponseChanging(value); - this._lasttestresponse = value; - this.OnlasttestresponseChanged(); + this.OnlasttestrequestChanging(value); + this._lasttestrequest = value; + this.OnlasttestrequestChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _lasttestresponse; - partial void OnlasttestresponseChanging(string value); - partial void OnlasttestresponseChanged(); + private string _lasttestrequest; + partial void OnlasttestrequestChanging(string value); + partial void OnlasttestrequestChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -237626,27 +237560,49 @@ public virtual string lasttestresponse partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property lastcrmmessage in the schema. + /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string lastcrmmessage + public virtual global::System.Nullable entityimage_timestamp { get { - return this._lastcrmmessage; + return this._entityimage_timestamp; } set { - this.OnlastcrmmessageChanging(value); - this._lastcrmmessage = value; - this.OnlastcrmmessageChanged(); + this.Onentityimage_timestampChanging(value); + this._entityimage_timestamp = value; + this.Onentityimage_timestampChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _lastcrmmessage; - partial void OnlastcrmmessageChanging(string value); - partial void OnlastcrmmessageChanged(); + private global::System.Nullable _entityimage_timestamp; + partial void Onentityimage_timestampChanging(global::System.Nullable value); + partial void Onentityimage_timestampChanged(); + /// + /// There are no comments for Property useautodiscover in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable useautodiscover + { + get + { + return this._useautodiscover; + } + set + { + this.OnuseautodiscoverChanging(value); + this._useautodiscover = value; + this.OnuseautodiscoverChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _useautodiscover; + partial void OnuseautodiscoverChanging(global::System.Nullable value); + partial void OnuseautodiscoverChanged(); /// /// There are no comments for Property exchangeversion in the schema. /// @@ -237670,6 +237626,28 @@ public virtual string lastcrmmessage partial void OnexchangeversionChanging(global::System.Nullable value); partial void OnexchangeversionChanged(); /// + /// There are no comments for Property description in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string description + { + get + { + return this._description; + } + set + { + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); + /// /// There are no comments for Property emailserverprofileid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -237692,27 +237670,27 @@ public virtual string lastcrmmessage partial void OnemailserverprofileidChanging(global::System.Nullable value); partial void OnemailserverprofileidChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__owningbusinessunit_value; + return this.__organizationid_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property minpollingintervalinminutes in the schema. /// @@ -237736,27 +237714,27 @@ public virtual string lastcrmmessage partial void OnminpollingintervalinminutesChanging(global::System.Nullable value); partial void OnminpollingintervalinminutesChanged(); /// - /// There are no comments for Property entityimage_timestamp in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimage_timestamp + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._entityimage_timestamp; + return this.__modifiedonbehalfby_value; } set { - this.Onentityimage_timestampChanging(value); - this._entityimage_timestamp = value; - this.Onentityimage_timestampChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimage_timestamp; - partial void Onentityimage_timestampChanging(global::System.Nullable value); - partial void Onentityimage_timestampChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -237824,49 +237802,71 @@ public virtual string credentialinfo partial void OncredentialinfoChanging(string value); partial void OncredentialinfoChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property dataencryptionkey in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual string dataencryptionkey { get { - return this._entityimage_url; + return this._dataencryptionkey; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.OndataencryptionkeyChanging(value); + this._dataencryptionkey = value; + this.OndataencryptionkeyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private string _dataencryptionkey; + partial void OndataencryptionkeyChanging(string value); + partial void OndataencryptionkeyChanged(); /// - /// There are no comments for Property incominguseimpersonation in the schema. + /// There are no comments for Property lastcrmmessage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable incominguseimpersonation + public virtual string lastcrmmessage { get { - return this._incominguseimpersonation; + return this._lastcrmmessage; } set { - this.OnincominguseimpersonationChanging(value); - this._incominguseimpersonation = value; - this.OnincominguseimpersonationChanged(); + this.OnlastcrmmessageChanging(value); + this._lastcrmmessage = value; + this.OnlastcrmmessageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _incominguseimpersonation; - partial void OnincominguseimpersonationChanging(global::System.Nullable value); - partial void OnincominguseimpersonationChanged(); + private string _lastcrmmessage; + partial void OnlastcrmmessageChanging(string value); + partial void OnlastcrmmessageChanged(); + /// + /// There are no comments for Property isoutgoingpasswordset in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isoutgoingpasswordset + { + get + { + return this._isoutgoingpasswordset; + } + set + { + this.OnisoutgoingpasswordsetChanging(value); + this._isoutgoingpasswordset = value; + this.OnisoutgoingpasswordsetChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isoutgoingpasswordset; + partial void OnisoutgoingpasswordsetChanging(global::System.Nullable value); + partial void OnisoutgoingpasswordsetChanged(); /// /// There are no comments for Property incomingserverlocation in the schema. /// @@ -237956,6 +237956,28 @@ public virtual string incomingserverlocation partial void OnentityimageidChanging(global::System.Nullable value); partial void OnentityimageidChanged(); /// + /// There are no comments for Property moveundeliveredemails in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable moveundeliveredemails + { + get + { + return this._moveundeliveredemails; + } + set + { + this.OnmoveundeliveredemailsChanging(value); + this._moveundeliveredemails = value; + this.OnmoveundeliveredemailsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _moveundeliveredemails; + partial void OnmoveundeliveredemailsChanging(global::System.Nullable value); + partial void OnmoveundeliveredemailsChanged(); + /// /// There are no comments for Property defaultserverlocation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -237978,27 +238000,27 @@ public virtual string defaultserverlocation partial void OndefaultserverlocationChanging(string value); partial void OndefaultserverlocationChanged(); /// - /// There are no comments for Property usesamesettingsforoutgoingconnections in the schema. + /// There are no comments for Property emailservertypename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable usesamesettingsforoutgoingconnections + public virtual string emailservertypename { get { - return this._usesamesettingsforoutgoingconnections; + return this._emailservertypename; } set { - this.OnusesamesettingsforoutgoingconnectionsChanging(value); - this._usesamesettingsforoutgoingconnections = value; - this.OnusesamesettingsforoutgoingconnectionsChanged(); + this.OnemailservertypenameChanging(value); + this._emailservertypename = value; + this.OnemailservertypenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _usesamesettingsforoutgoingconnections; - partial void OnusesamesettingsforoutgoingconnectionsChanging(global::System.Nullable value); - partial void OnusesamesettingsforoutgoingconnectionsChanged(); + private string _emailservertypename; + partial void OnemailservertypenameChanging(string value); + partial void OnemailservertypenameChanged(); /// /// There are no comments for Property outgoinguseimpersonation in the schema. /// @@ -238022,49 +238044,27 @@ public virtual string defaultserverlocation partial void OnoutgoinguseimpersonationChanging(global::System.Nullable value); partial void OnoutgoinguseimpersonationChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property dataencryptionkey in the schema. + /// There are no comments for Property outgoingauthenticationprotocol in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string dataencryptionkey + public virtual global::System.Nullable outgoingauthenticationprotocol { get { - return this._dataencryptionkey; + return this._outgoingauthenticationprotocol; } set { - this.OndataencryptionkeyChanging(value); - this._dataencryptionkey = value; - this.OndataencryptionkeyChanged(); + this.OnoutgoingauthenticationprotocolChanging(value); + this._outgoingauthenticationprotocol = value; + this.OnoutgoingauthenticationprotocolChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _dataencryptionkey; - partial void OndataencryptionkeyChanging(string value); - partial void OndataencryptionkeyChanged(); + private global::System.Nullable _outgoingauthenticationprotocol; + partial void OnoutgoingauthenticationprotocolChanging(global::System.Nullable value); + partial void OnoutgoingauthenticationprotocolChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -238088,71 +238088,71 @@ public virtual string dataencryptionkey partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property outgoingusername in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string outgoingusername { get { - return this.__owninguser_value; + return this._outgoingusername; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnoutgoingusernameChanging(value); + this._outgoingusername = value; + this.OnoutgoingusernameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private string _outgoingusername; + partial void OnoutgoingusernameChanging(string value); + partial void OnoutgoingusernameChanged(); /// - /// There are no comments for Property lastteststarttime in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lastteststarttime + public virtual global::System.Nullable _owninguser_value { get { - return this._lastteststarttime; + return this.__owninguser_value; } set { - this.OnlastteststarttimeChanging(value); - this._lastteststarttime = value; - this.OnlastteststarttimeChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastteststarttime; - partial void OnlastteststarttimeChanging(global::System.Nullable value); - partial void OnlastteststarttimeChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property timeoutmailboxconnection in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable timeoutmailboxconnection { get { - return this.__modifiedonbehalfby_value; + return this._timeoutmailboxconnection; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OntimeoutmailboxconnectionChanging(value); + this._timeoutmailboxconnection = value; + this.OntimeoutmailboxconnectionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _timeoutmailboxconnection; + partial void OntimeoutmailboxconnectionChanging(global::System.Nullable value); + partial void OntimeoutmailboxconnectionChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -238676,28 +238676,6 @@ public entitySingle(global::Microsoft.OData.Client.DataServiceQuerySingle - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); /// /// There are no comments for Property logicalcollectionname in the schema. /// @@ -238787,27 +238765,27 @@ public virtual string extensiontablename partial void OnextensiontablenameChanging(string value); partial void OnextensiontablenameChanged(); /// - /// There are no comments for Property basetablename in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string basetablename + public virtual global::System.Nullable versionnumber { get { - return this._basetablename; + return this._versionnumber; } set { - this.OnbasetablenameChanging(value); - this._basetablename = value; - this.OnbasetablenameChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _basetablename; - partial void OnbasetablenameChanging(string value); - partial void OnbasetablenameChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -238897,6 +238875,50 @@ public virtual string entitysetname partial void OnentitysetnameChanging(string value); partial void OnentitysetnameChanged(); /// + /// There are no comments for Property basetablename in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string basetablename + { + get + { + return this._basetablename; + } + set + { + this.OnbasetablenameChanging(value); + this._basetablename = value; + this.OnbasetablenameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _basetablename; + partial void OnbasetablenameChanging(string value); + partial void OnbasetablenameChanged(); + /// + /// There are no comments for Property originallocalizedname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string originallocalizedname + { + get + { + return this._originallocalizedname; + } + set + { + this.OnoriginallocalizednameChanging(value); + this._originallocalizedname = value; + this.OnoriginallocalizednameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _originallocalizedname; + partial void OnoriginallocalizednameChanging(string value); + partial void OnoriginallocalizednameChanged(); + /// /// There are no comments for Property originallocalizedcollectionname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -239029,28 +239051,6 @@ public virtual string addresstablename partial void OnaddresstablenameChanging(string value); partial void OnaddresstablenameChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -239095,27 +239095,27 @@ public virtual string addresstablename partial void OnentityidChanging(global::System.Nullable value); partial void OnentityidChanged(); /// - /// There are no comments for Property originallocalizedname in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string originallocalizedname + public virtual global::System.Nullable solutionid { get { - return this._originallocalizedname; + return this._solutionid; } set { - this.OnoriginallocalizednameChanging(value); - this._originallocalizedname = value; - this.OnoriginallocalizednameChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _originallocalizedname; - partial void OnoriginallocalizednameChanging(string value); - partial void OnoriginallocalizednameChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property entity_solutioncomponentconfiguration in the schema. /// @@ -239730,28 +239730,6 @@ public static entitlementchannel Createentitlementchannel(global::EMBC.ESS.Utili partial void OnremainingtermsChanging(global::System.Nullable value); partial void OnremainingtermsChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -239818,49 +239796,49 @@ public static entitlementchannel Createentitlementchannel(global::EMBC.ESS.Utili partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _entitlementid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _entitlementid_value { get { - return this.__modifiedonbehalfby_value; + return this.__entitlementid_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_entitlementid_valueChanging(value); + this.__entitlementid_value = value; + this.On_entitlementid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __entitlementid_value; + partial void On_entitlementid_valueChanging(global::System.Nullable value); + partial void On_entitlementid_valueChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._exchangerate; + return this.__modifiedonbehalfby_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -239884,6 +239862,28 @@ public static entitlementchannel Createentitlementchannel(global::EMBC.ESS.Utili partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -240148,27 +240148,27 @@ public virtual string name partial void OntotaltermsChanging(global::System.Nullable value); partial void OntotaltermsChanged(); /// - /// There are no comments for Property _entitlementid_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _entitlementid_value + public virtual global::System.Nullable versionnumber { get { - return this.__entitlementid_value; + return this._versionnumber; } set { - this.On_entitlementid_valueChanging(value); - this.__entitlementid_value = value; - this.On_entitlementid_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __entitlementid_value; - partial void On_entitlementid_valueChanging(global::System.Nullable value); - partial void On_entitlementid_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -240891,6 +240891,28 @@ public partial class entitlementcontacts : crmbaseentity partial void OnentitlementidChanging(global::System.Nullable value); partial void OnentitlementidChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property contactid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -240979,28 +241001,6 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property entitlementcontacts_AsyncOperations in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -241589,6 +241589,138 @@ public static entitlemententityallocationtypemapping Createentitlemententityallo partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property entitytype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable entitytype + { + get + { + return this._entitytype; + } + set + { + this.OnentitytypeChanging(value); + this._entitytype = value; + this.OnentitytypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _entitytype; + partial void OnentitytypeChanging(global::System.Nullable value); + partial void OnentitytypeChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -241611,49 +241743,27 @@ public static entitlemententityallocationtypemapping Createentitlemententityallo partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _owninguser_value { get { - return this.__createdonbehalfby_value; + return this.__owninguser_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property allocationtype in the schema. /// @@ -241677,93 +241787,49 @@ public static entitlemententityallocationtypemapping Createentitlemententityallo partial void OnallocationtypeChanging(global::System.Nullable value); partial void OnallocationtypeChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property entitytype in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entitytype + public virtual global::System.Nullable createdon { get { - return this._entitytype; + return this._createdon; } set { - this.OnentitytypeChanging(value); - this._entitytype = value; - this.OnentitytypeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entitytype; - partial void OnentitytypeChanging(global::System.Nullable value); - partial void OnentitytypeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable versionnumber { get { - return this._createdon; + return this._versionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property entitlemententityallocationtypemappingid in the schema. /// @@ -241809,28 +241875,6 @@ public static entitlemententityallocationtypemapping Createentitlemententityallo partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -241897,28 +241941,6 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -241963,28 +241985,6 @@ public virtual string name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// /// There are no comments for Property createdonbehalfby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -242462,6 +242462,28 @@ public entitlementproductsSingle(global::Microsoft.OData.Client.DataServiceQuery [global::Microsoft.OData.Client.Key("entitlementproductid")] public partial class entitlementproducts : crmbaseentity { + /// + /// There are no comments for Property productid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable productid + { + get + { + return this._productid; + } + set + { + this.OnproductidChanging(value); + this._productid = value; + this.OnproductidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _productid; + partial void OnproductidChanging(global::System.Nullable value); + partial void OnproductidChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -242573,28 +242595,6 @@ public partial class entitlementproducts : crmbaseentity partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -242617,27 +242617,27 @@ public partial class entitlementproducts : crmbaseentity partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property productid in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable productid + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._productid; + return this._utcconversiontimezonecode; } set { - this.OnproductidChanging(value); - this._productid = value; - this.OnproductidChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _productid; - partial void OnproductidChanging(global::System.Nullable value); - partial void OnproductidChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property name in the schema. /// @@ -243862,49 +243862,27 @@ public static entitlement Createentitlement(global::EMBC.ESS.Utilities.Dynamics. return entitlement; } /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property entitlementid in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entitlementid + public virtual global::System.Nullable _owninguser_value { get { - return this._entitlementid; + return this.__owninguser_value; } set { - this.OnentitlementidChanging(value); - this._entitlementid = value; - this.OnentitlementidChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entitlementid; - partial void OnentitlementidChanging(global::System.Nullable value); - partial void OnentitlementidChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property traversedpath in the schema. /// @@ -243950,27 +243928,27 @@ public virtual string traversedpath partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property startdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable startdate { get { - return this._modifiedon; + return this._startdate; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnstartdateChanging(value); + this._startdate = value; + this.OnstartdateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _startdate; + partial void OnstartdateChanging(global::System.Nullable value); + partial void OnstartdateChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -243994,6 +243972,28 @@ public virtual string traversedpath partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _transactioncurrencyid_value + { + get + { + return this.__transactioncurrencyid_value; + } + set + { + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); + /// /// There are no comments for Property _customerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -244016,6 +244016,50 @@ public virtual string traversedpath partial void On_customerid_valueChanging(global::System.Nullable value); partial void On_customerid_valueChanged(); /// + /// There are no comments for Property stageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable stageid + { + get + { + return this._stageid; + } + set + { + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _stageid; + partial void OnstageidChanging(global::System.Nullable value); + partial void OnstageidChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -244060,6 +244104,28 @@ public virtual string description partial void On_contactid_valueChanging(global::System.Nullable value); partial void On_contactid_valueChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -244258,50 +244324,6 @@ public virtual string emailaddress partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property remainingterms in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable remainingterms - { - get - { - return this._remainingterms; - } - set - { - this.OnremainingtermsChanging(value); - this._remainingterms = value; - this.OnremainingtermsChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _remainingterms; - partial void OnremainingtermsChanging(global::System.Nullable value); - partial void OnremainingtermsChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -244456,50 +244478,6 @@ public virtual string emailaddress partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property startdate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable startdate - { - get - { - return this._startdate; - } - set - { - this.OnstartdateChanging(value); - this._startdate = value; - this.OnstartdateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _startdate; - partial void OnstartdateChanging(global::System.Nullable value); - partial void OnstartdateChanged(); - /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -244522,27 +244500,27 @@ public virtual string emailaddress partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property stageid in the schema. + /// There are no comments for Property entitlementid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable stageid + public virtual global::System.Nullable entitlementid { get { - return this._stageid; + return this._entitlementid; } set { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); + this.OnentitlementidChanging(value); + this._entitlementid = value; + this.OnentitlementidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stageid; - partial void OnstageidChanging(global::System.Nullable value); - partial void OnstageidChanged(); + private global::System.Nullable _entitlementid; + partial void OnentitlementidChanging(global::System.Nullable value); + partial void OnentitlementidChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -244566,6 +244544,28 @@ public virtual string emailaddress partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property remainingterms in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable remainingterms + { + get + { + return this._remainingterms; + } + set + { + this.OnremainingtermsChanging(value); + this._remainingterms = value; + this.OnremainingtermsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _remainingterms; + partial void OnremainingtermsChanging(global::System.Nullable value); + partial void OnremainingtermsChanged(); + /// /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -244610,6 +244610,28 @@ public virtual string emailaddress partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property _entitlementtemplateid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _entitlementtemplateid_value + { + get + { + return this.__entitlementtemplateid_value; + } + set + { + this.On_entitlementtemplateid_valueChanging(value); + this.__entitlementtemplateid_value = value; + this.On_entitlementtemplateid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __entitlementtemplateid_value; + partial void On_entitlementtemplateid_valueChanging(global::System.Nullable value); + partial void On_entitlementtemplateid_valueChanged(); + /// /// There are no comments for Property kbaccesslevel in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -244676,28 +244698,6 @@ public virtual string emailaddress partial void OnisdefaultChanging(global::System.Nullable value); partial void OnisdefaultChanged(); /// - /// There are no comments for Property _entitlementtemplateid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _entitlementtemplateid_value - { - get - { - return this.__entitlementtemplateid_value; - } - set - { - this.On_entitlementtemplateid_valueChanging(value); - this.__entitlementtemplateid_value = value; - this.On_entitlementtemplateid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __entitlementtemplateid_value; - partial void On_entitlementtemplateid_valueChanging(global::System.Nullable value); - partial void On_entitlementtemplateid_valueChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -246233,28 +246233,6 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -246277,27 +246255,27 @@ public virtual string name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this.__modifiedby_value; + return this.__transactioncurrencyid_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -246321,6 +246299,28 @@ public virtual string name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -246343,27 +246343,27 @@ public virtual string name partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property entitlementtemplatechannelid in the schema. + /// There are no comments for Property channel in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entitlementtemplatechannelid + public virtual global::System.Nullable channel { get { - return this._entitlementtemplatechannelid; + return this._channel; } set { - this.OnentitlementtemplatechannelidChanging(value); - this._entitlementtemplatechannelid = value; - this.OnentitlementtemplatechannelidChanged(); + this.OnchannelChanging(value); + this._channel = value; + this.OnchannelChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entitlementtemplatechannelid; - partial void OnentitlementtemplatechannelidChanging(global::System.Nullable value); - partial void OnentitlementtemplatechannelidChanged(); + private global::System.Nullable _channel; + partial void OnchannelChanging(global::System.Nullable value); + partial void OnchannelChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -246387,28 +246387,6 @@ public virtual string name partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property channel in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable channel - { - get - { - return this._channel; - } - set - { - this.OnchannelChanging(value); - this._channel = value; - this.OnchannelChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _channel; - partial void OnchannelChanging(global::System.Nullable value); - partial void OnchannelChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -246431,71 +246409,71 @@ public virtual string name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _entitlementtemplateid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _entitlementtemplateid_value { get { - return this._exchangerate; + return this.__entitlementtemplateid_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_entitlementtemplateid_valueChanging(value); + this.__entitlementtemplateid_value = value; + this.On_entitlementtemplateid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __entitlementtemplateid_value; + partial void On_entitlementtemplateid_valueChanging(global::System.Nullable value); + partial void On_entitlementtemplateid_valueChanged(); /// - /// There are no comments for Property _entitlementtemplateid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _entitlementtemplateid_value + public virtual global::System.Nullable createdon { get { - return this.__entitlementtemplateid_value; + return this._createdon; } set { - this.On_entitlementtemplateid_valueChanging(value); - this.__entitlementtemplateid_value = value; - this.On_entitlementtemplateid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __entitlementtemplateid_value; - partial void On_entitlementtemplateid_valueChanging(global::System.Nullable value); - partial void On_entitlementtemplateid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable exchangerate { get { - return this.__transactioncurrencyid_value; + return this._exchangerate; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -246541,49 +246519,71 @@ public virtual string name partial void OntotaltermsChanging(global::System.Nullable value); partial void OntotaltermsChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _createdby_value { get { - return this._utcconversiontimezonecode; + return this.__createdby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property entitlementtemplatechannelid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable entitlementtemplatechannelid { get { - return this.__createdby_value; + return this._entitlementtemplatechannelid; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnentitlementtemplatechannelidChanging(value); + this._entitlementtemplatechannelid = value; + this.OnentitlementtemplatechannelidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _entitlementtemplatechannelid; + partial void OnentitlementtemplatechannelidChanging(global::System.Nullable value); + partial void OnentitlementtemplatechannelidChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -248153,28 +248153,6 @@ public static entitlementtemplate Createentitlementtemplate(global::EMBC.ESS.Uti partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property allocationtypecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable allocationtypecode - { - get - { - return this._allocationtypecode; - } - set - { - this.OnallocationtypecodeChanging(value); - this._allocationtypecode = value; - this.OnallocationtypecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _allocationtypecode; - partial void OnallocationtypecodeChanging(global::System.Nullable value); - partial void OnallocationtypecodeChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -248197,50 +248175,6 @@ public static entitlementtemplate Createentitlementtemplate(global::EMBC.ESS.Uti partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property startdate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable startdate - { - get - { - return this._startdate; - } - set - { - this.OnstartdateChanging(value); - this._startdate = value; - this.OnstartdateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _startdate; - partial void OnstartdateChanging(global::System.Nullable value); - partial void OnstartdateChanged(); - /// - /// There are no comments for Property entitytype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable entitytype - { - get - { - return this._entitytype; - } - set - { - this.OnentitytypeChanging(value); - this._entitytype = value; - this.OnentitytypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entitytype; - partial void OnentitytypeChanging(global::System.Nullable value); - partial void OnentitytypeChanged(); - /// /// There are no comments for Property restrictcasecreation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -248263,6 +248197,28 @@ public static entitlementtemplate Createentitlementtemplate(global::EMBC.ESS.Uti partial void OnrestrictcasecreationChanging(global::System.Nullable value); partial void OnrestrictcasecreationChanged(); /// + /// There are no comments for Property _slaid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _slaid_value + { + get + { + return this.__slaid_value; + } + set + { + this.On_slaid_valueChanging(value); + this.__slaid_value = value; + this.On_slaid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __slaid_value; + partial void On_slaid_valueChanging(global::System.Nullable value); + partial void On_slaid_valueChanged(); + /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -248285,27 +248241,27 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property entitytype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable entitytype { get { - return this.__modifiedby_value; + return this._entitytype; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnentitytypeChanging(value); + this._entitytype = value; + this.OnentitytypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _entitytype; + partial void OnentitytypeChanging(global::System.Nullable value); + partial void OnentitytypeChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -248395,27 +248351,27 @@ public virtual string description partial void OnkbaccesslevelChanging(global::System.Nullable value); partial void OnkbaccesslevelChanged(); /// - /// There are no comments for Property _slaid_value in the schema. + /// There are no comments for Property startdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _slaid_value + public virtual global::System.Nullable startdate { get { - return this.__slaid_value; + return this._startdate; } set { - this.On_slaid_valueChanging(value); - this.__slaid_value = value; - this.On_slaid_valueChanged(); + this.OnstartdateChanging(value); + this._startdate = value; + this.OnstartdateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __slaid_value; - partial void On_slaid_valueChanging(global::System.Nullable value); - partial void On_slaid_valueChanged(); + private global::System.Nullable _startdate; + partial void OnstartdateChanging(global::System.Nullable value); + partial void OnstartdateChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -248439,27 +248395,49 @@ public virtual string description partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable createdon { get { - return this._timezoneruleversionnumber; + return this._createdon; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property allocationtypecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable allocationtypecode + { + get + { + return this._allocationtypecode; + } + set + { + this.OnallocationtypecodeChanging(value); + this._allocationtypecode = value; + this.OnallocationtypecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _allocationtypecode; + partial void OnallocationtypecodeChanging(global::System.Nullable value); + partial void OnallocationtypecodeChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -248527,27 +248505,49 @@ public virtual string description partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property entitlementtemplateid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable entitlementtemplateid { get { - return this._importsequencenumber; + return this._entitlementtemplateid; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnentitlementtemplateidChanging(value); + this._entitlementtemplateid = value; + this.OnentitlementtemplateidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _entitlementtemplateid; + partial void OnentitlementtemplateidChanging(global::System.Nullable value); + partial void OnentitlementtemplateidChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -248637,71 +248637,71 @@ public virtual string name partial void OnenddateChanging(global::System.Nullable value); partial void OnenddateChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__organizationid_value; + return this._importsequencenumber; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property entitlementtemplateid in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entitlementtemplateid + public virtual global::System.Nullable _organizationid_value { get { - return this._entitlementtemplateid; + return this.__organizationid_value; } set { - this.OnentitlementtemplateidChanging(value); - this._entitlementtemplateid = value; - this.OnentitlementtemplateidChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entitlementtemplateid; - partial void OnentitlementtemplateidChanging(global::System.Nullable value); - partial void OnentitlementtemplateidChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _modifiedby_value { get { - return this._createdon; + return this.__modifiedby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property entitlementtemplate_abs_scheduledprocessexecutions in the schema. /// @@ -249660,28 +249660,6 @@ public static entityanalyticsconfig Createentityanalyticsconfig(global::EMBC.ESS return entityanalyticsconfig; } /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -249748,6 +249726,28 @@ public static entityanalyticsconfig Createentityanalyticsconfig(global::EMBC.ESS partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// /// There are no comments for Property _parententityid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -249792,6 +249792,28 @@ public virtual string parententitylogicalname partial void OnparententitylogicalnameChanging(string value); partial void OnparententitylogicalnameChanged(); /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// /// There are no comments for Property componentidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -249836,28 +249858,6 @@ public virtual string parententitylogicalname partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property isenabledforadls in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isenabledforadls - { - get - { - return this._isenabledforadls; - } - set - { - this.OnisenabledforadlsChanging(value); - this._isenabledforadls = value; - this.OnisenabledforadlsChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isenabledforadls; - partial void OnisenabledforadlsChanging(global::System.Nullable value); - partial void OnisenabledforadlsChanged(); - /// /// There are no comments for Property entityanalyticsconfigid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -249902,27 +249902,27 @@ public virtual string parententitylogicalname partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property isenabledforadls in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable isenabledforadls { get { - return this.__organizationid_value; + return this._isenabledforadls; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnisenabledforadlsChanging(value); + this._isenabledforadls = value; + this.OnisenabledforadlsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _isenabledforadls; + partial void OnisenabledforadlsChanging(global::System.Nullable value); + partial void OnisenabledforadlsChanged(); /// /// There are no comments for Property entityanalyticsconfig_SyncErrors in the schema. /// @@ -250246,49 +250246,49 @@ public partial class entitydataprovider : crmbaseentity partial void OnretrievemultiplepluginChanging(global::System.Nullable value); partial void OnretrievemultiplepluginChanged(); /// - /// There are no comments for Property updateplugin in the schema. + /// There are no comments for Property upsertplugin in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable updateplugin + public virtual global::System.Nullable upsertplugin { get { - return this._updateplugin; + return this._upsertplugin; } set { - this.OnupdatepluginChanging(value); - this._updateplugin = value; - this.OnupdatepluginChanged(); + this.OnupsertpluginChanging(value); + this._upsertplugin = value; + this.OnupsertpluginChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _updateplugin; - partial void OnupdatepluginChanging(global::System.Nullable value); - partial void OnupdatepluginChanged(); + private global::System.Nullable _upsertplugin; + partial void OnupsertpluginChanging(global::System.Nullable value); + partial void OnupsertpluginChanged(); /// - /// There are no comments for Property entitydataproviderid in the schema. + /// There are no comments for Property createmultipleplugin in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entitydataproviderid + public virtual global::System.Nullable createmultipleplugin { get { - return this._entitydataproviderid; + return this._createmultipleplugin; } set { - this.OnentitydataprovideridChanging(value); - this._entitydataproviderid = value; - this.OnentitydataprovideridChanged(); + this.OncreatemultiplepluginChanging(value); + this._createmultipleplugin = value; + this.OncreatemultiplepluginChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entitydataproviderid; - partial void OnentitydataprovideridChanging(global::System.Nullable value); - partial void OnentitydataprovideridChanged(); + private global::System.Nullable _createmultipleplugin; + partial void OncreatemultiplepluginChanging(global::System.Nullable value); + partial void OncreatemultiplepluginChanged(); /// /// There are no comments for Property solutionid in the schema. /// @@ -250312,49 +250312,49 @@ public partial class entitydataprovider : crmbaseentity partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property upsertplugin in the schema. + /// There are no comments for Property updatemultipleplugin in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable upsertplugin + public virtual global::System.Nullable updatemultipleplugin { get { - return this._upsertplugin; + return this._updatemultipleplugin; } set { - this.OnupsertpluginChanging(value); - this._upsertplugin = value; - this.OnupsertpluginChanged(); + this.OnupdatemultiplepluginChanging(value); + this._updatemultipleplugin = value; + this.OnupdatemultiplepluginChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _upsertplugin; - partial void OnupsertpluginChanging(global::System.Nullable value); - partial void OnupsertpluginChanged(); + private global::System.Nullable _updatemultipleplugin; + partial void OnupdatemultiplepluginChanging(global::System.Nullable value); + partial void OnupdatemultiplepluginChanged(); /// - /// There are no comments for Property createmultipleplugin in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createmultipleplugin + public virtual string description { get { - return this._createmultipleplugin; + return this._description; } set { - this.OncreatemultiplepluginChanging(value); - this._createmultipleplugin = value; - this.OncreatemultiplepluginChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createmultipleplugin; - partial void OncreatemultiplepluginChanging(global::System.Nullable value); - partial void OncreatemultiplepluginChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property name in the schema. /// @@ -250400,27 +250400,27 @@ public virtual string name partial void OnorganizationidChanging(global::System.Nullable value); partial void OnorganizationidChanged(); /// - /// There are no comments for Property updatemultipleplugin in the schema. + /// There are no comments for Property entitydataproviderid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable updatemultipleplugin + public virtual global::System.Nullable entitydataproviderid { get { - return this._updatemultipleplugin; + return this._entitydataproviderid; } set { - this.OnupdatemultiplepluginChanging(value); - this._updatemultipleplugin = value; - this.OnupdatemultiplepluginChanged(); + this.OnentitydataprovideridChanging(value); + this._entitydataproviderid = value; + this.OnentitydataprovideridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _updatemultipleplugin; - partial void OnupdatemultiplepluginChanging(global::System.Nullable value); - partial void OnupdatemultiplepluginChanged(); + private global::System.Nullable _entitydataproviderid; + partial void OnentitydataprovideridChanging(global::System.Nullable value); + partial void OnentitydataprovideridChanged(); /// /// There are no comments for Property createplugin in the schema. /// @@ -250466,6 +250466,28 @@ public virtual string name partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// + /// There are no comments for Property updateplugin in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable updateplugin + { + get + { + return this._updateplugin; + } + set + { + this.OnupdatepluginChanging(value); + this._updateplugin = value; + this.OnupdatepluginChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _updateplugin; + partial void OnupdatepluginChanging(global::System.Nullable value); + partial void OnupdatepluginChanged(); + /// /// There are no comments for Property upsertmultipleplugin in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -250532,28 +250554,6 @@ public virtual string introducedversion partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property description in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string description - { - get - { - return this._description; - } - set - { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); - /// /// There are no comments for Property retrieveentitychangesplugin in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -251101,49 +251101,49 @@ public virtual string logicalname partial void OnlogicalnameChanging(string value); partial void OnlogicalnameChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable componentstate { get { - return this._solutionid; + return this._componentstate; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable solutionid { get { - return this._overwritetime; + return this._solutionid; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property entitykeyid in the schema. /// @@ -251167,27 +251167,27 @@ public virtual string logicalname partial void OnentitykeyidChanging(global::System.Nullable value); partial void OnentitykeyidChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable overwritetime { get { - return this._componentstate; + return this._overwritetime; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property name in the schema. /// @@ -251941,28 +251941,6 @@ public static environmentvariabledefinition Createenvironmentvariabledefinition( partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property type in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -252623,6 +252601,28 @@ public virtual string hint partial void OnenvironmentvariabledefinitioniduniqueChanging(global::System.Nullable value); partial void OnenvironmentvariabledefinitioniduniqueChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -253511,6 +253511,28 @@ public static environmentvariablevalue Createenvironmentvariablevalue(global::EM return environmentvariablevalue; } /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -253555,6 +253577,28 @@ public static environmentvariablevalue Createenvironmentvariablevalue(global::EM partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string value + { + get + { + return this._value; + } + set + { + this.OnvalueChanging(value); + this._value = value; + this.OnvalueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _value; + partial void OnvalueChanging(string value); + partial void OnvalueChanged(); + /// /// There are no comments for Property environmentvariablevalueidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -253577,27 +253621,27 @@ public static environmentvariablevalue Createenvironmentvariablevalue(global::EM partial void OnenvironmentvariablevalueiduniqueChanging(global::System.Nullable value); partial void OnenvironmentvariablevalueiduniqueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable overwritetime { get { - return this._versionnumber; + return this._overwritetime; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -253621,6 +253665,28 @@ public static environmentvariablevalue Createenvironmentvariablevalue(global::EM partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -253687,71 +253753,27 @@ public static environmentvariablevalue Createenvironmentvariablevalue(global::EM partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable statecode { get { - return this._statuscode; + return this._statecode; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property iscustomizable in the schema. /// @@ -253775,28 +253797,6 @@ public static environmentvariablevalue Createenvironmentvariablevalue(global::EM partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -253819,27 +253819,27 @@ public static environmentvariablevalue Createenvironmentvariablevalue(global::EM partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property schemaname in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string schemaname + public virtual global::System.Nullable _owningteam_value { get { - return this._schemaname; + return this.__owningteam_value; } set { - this.OnschemanameChanging(value); - this._schemaname = value; - this.OnschemanameChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _schemaname; - partial void OnschemanameChanging(string value); - partial void OnschemanameChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property introducedversion in the schema. /// @@ -253863,6 +253863,28 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -253951,27 +253973,27 @@ public virtual string introducedversion partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._utcconversiontimezonecode; + return this.__modifiedonbehalfby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _environmentvariabledefinitionid_value in the schema. /// @@ -253995,49 +254017,27 @@ public virtual string introducedversion partial void On_environmentvariabledefinitionid_valueChanging(global::System.Nullable value); partial void On_environmentvariabledefinitionid_valueChanged(); /// - /// There are no comments for Property value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string value - { - get - { - return this._value; - } - set - { - this.OnvalueChanging(value); - this._value = value; - this.OnvalueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _value; - partial void OnvalueChanging(string value); - partial void OnvalueChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property schemaname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string schemaname { get { - return this.__modifiedonbehalfby_value; + return this._schemaname; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnschemanameChanging(value); + this._schemaname = value; + this.OnschemanameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _schemaname; + partial void OnschemanameChanging(string value); + partial void OnschemanameChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -254061,27 +254061,27 @@ public virtual string value partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__owningteam_value; + return this._overriddencreatedon; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -255168,28 +255168,6 @@ public static equipment Createequipment(global::EMBC.ESS.Utilities.Dynamics.Micr return equipment; } /// - /// There are no comments for Property exchangerate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable exchangerate - { - get - { - return this._exchangerate; - } - set - { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -255212,71 +255190,71 @@ public static equipment Createequipment(global::EMBC.ESS.Utilities.Dynamics.Micr partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property isdisabled in the schema. + /// There are no comments for Property timezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isdisabled + public virtual global::System.Nullable timezonecode { get { - return this._isdisabled; + return this._timezonecode; } set { - this.OnisdisabledChanging(value); - this._isdisabled = value; - this.OnisdisabledChanged(); + this.OntimezonecodeChanging(value); + this._timezonecode = value; + this.OntimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdisabled; - partial void OnisdisabledChanging(global::System.Nullable value); - partial void OnisdisabledChanged(); + private global::System.Nullable _timezonecode; + partial void OntimezonecodeChanging(global::System.Nullable value); + partial void OntimezonecodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property emailaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string emailaddress { get { - return this._importsequencenumber; + return this._emailaddress; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnemailaddressChanging(value); + this._emailaddress = value; + this.OnemailaddressChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _emailaddress; + partial void OnemailaddressChanging(string value); + partial void OnemailaddressChanged(); /// - /// There are no comments for Property emailaddress in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailaddress + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._emailaddress; + return this.__modifiedonbehalfby_value; } set { - this.OnemailaddressChanging(value); - this._emailaddress = value; - this.OnemailaddressChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress; - partial void OnemailaddressChanging(string value); - partial void OnemailaddressChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -255410,27 +255388,27 @@ public virtual string description partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable exchangerate { get { - return this.__modifiedonbehalfby_value; + return this._exchangerate; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property skills in the schema. /// @@ -255454,49 +255432,71 @@ public virtual string skills partial void OnskillsChanging(string value); partial void OnskillsChanged(); /// - /// There are no comments for Property _siteid_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _siteid_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__siteid_value; + return this._overriddencreatedon; } set { - this.On_siteid_valueChanging(value); - this.__siteid_value = value; - this.On_siteid_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __siteid_value; - partial void On_siteid_valueChanging(global::System.Nullable value); - partial void On_siteid_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property isdisabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable isdisabled { get { - return this._versionnumber; + return this._isdisabled; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnisdisabledChanging(value); + this._isdisabled = value; + this.OnisdisabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _isdisabled; + partial void OnisdisabledChanging(global::System.Nullable value); + partial void OnisdisabledChanged(); + /// + /// There are no comments for Property _siteid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _siteid_value + { + get + { + return this.__siteid_value; + } + set + { + this.On_siteid_valueChanging(value); + this.__siteid_value = value; + this.On_siteid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __siteid_value; + partial void On_siteid_valueChanging(global::System.Nullable value); + partial void On_siteid_valueChanged(); /// /// There are no comments for Property _businessunitid_value in the schema. /// @@ -255542,28 +255542,6 @@ public virtual string skills partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -255586,27 +255564,27 @@ public virtual string skills partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property timezonecode in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezonecode + public virtual global::System.Nullable importsequencenumber { get { - return this._timezonecode; + return this._importsequencenumber; } set { - this.OntimezonecodeChanging(value); - this._timezonecode = value; - this.OntimezonecodeChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezonecode; - partial void OntimezonecodeChanging(global::System.Nullable value); - partial void OntimezonecodeChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -255652,6 +255630,28 @@ public virtual string skills partial void OnequipmentidChanging(global::System.Nullable value); partial void OnequipmentidChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -255674,49 +255674,49 @@ public virtual string skills partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _createdby_value { get { - return this._name; + return this.__createdby_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable versionnumber { get { - return this._overriddencreatedon; + return this._versionnumber; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -256720,49 +256720,71 @@ public static era_animal Createera_animal(global::EMBC.ESS.Utilities.Dynamics.Mi return era_animal; } /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__createdby_value; + return this.__createdonbehalfby_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string era_name { get { - return this._timezoneruleversionnumber; + return this._era_name; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); + /// + /// There are no comments for Property _era_essfileid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_essfileid_value + { + get + { + return this.__era_essfileid_value; + } + set + { + this.On_era_essfileid_valueChanging(value); + this.__era_essfileid_value = value; + this.On_era_essfileid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_essfileid_value; + partial void On_era_essfileid_valueChanging(global::System.Nullable value); + partial void On_era_essfileid_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -256808,71 +256830,71 @@ public static era_animal Createera_animal(global::EMBC.ESS.Utilities.Dynamics.Mi partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _era_essfileid_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_essfileid_value + public virtual global::System.Nullable _createdby_value { get { - return this.__era_essfileid_value; + return this.__createdby_value; } set { - this.On_era_essfileid_valueChanging(value); - this.__era_essfileid_value = value; - this.On_era_essfileid_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_essfileid_value; - partial void On_era_essfileid_valueChanging(global::System.Nullable value); - partial void On_era_essfileid_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable statuscode { get { - return this.__modifiedonbehalfby_value; + return this._statuscode; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__createdonbehalfby_value; + return this._timezoneruleversionnumber; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property era_animalid in the schema. /// @@ -256896,28 +256918,6 @@ public static era_animal Createera_animal(global::EMBC.ESS.Utilities.Dynamics.Mi partial void Onera_animalidChanging(global::System.Nullable value); partial void Onera_animalidChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -256940,71 +256940,49 @@ public static era_animal Createera_animal(global::EMBC.ESS.Utilities.Dynamics.Mi partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property era_numberofpets in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable era_numberofpets { get { - return this._createdon; + return this._era_numberofpets; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.Onera_numberofpetsChanging(value); + this._era_numberofpets = value; + this.Onera_numberofpetsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _era_numberofpets; + partial void Onera_numberofpetsChanging(global::System.Nullable value); + partial void Onera_numberofpetsChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._modifiedon; + return this._utcconversiontimezonecode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -257028,49 +257006,49 @@ public static era_animal Createera_animal(global::EMBC.ESS.Utilities.Dynamics.Mi partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._versionnumber; + return this.__modifiedonbehalfby_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable createdon { get { - return this._utcconversiontimezonecode; + return this._createdon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -257094,27 +257072,27 @@ public static era_animal Createera_animal(global::EMBC.ESS.Utilities.Dynamics.Mi partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable overriddencreatedon { get { - return this._era_name; + return this._overriddencreatedon; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -257138,27 +257116,49 @@ public virtual string era_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property era_numberofpets in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_numberofpets + public virtual global::System.Nullable modifiedon { get { - return this._era_numberofpets; + return this._modifiedon; } set { - this.Onera_numberofpetsChanging(value); - this._era_numberofpets = value; - this.Onera_numberofpetsChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_numberofpets; - partial void Onera_numberofpetsChanging(global::System.Nullable value); - partial void Onera_numberofpetsChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -258027,49 +258027,49 @@ public static era_bcscaddress Createera_bcscaddress(global::EMBC.ESS.Utilities.D partial void On_era_registrant_valueChanging(global::System.Nullable value); partial void On_era_registrant_valueChanged(); /// - /// There are no comments for Property era_latitude in the schema. + /// There are no comments for Property era_address in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_latitude + public virtual string era_address { get { - return this._era_latitude; + return this._era_address; } set { - this.Onera_latitudeChanging(value); - this._era_latitude = value; - this.Onera_latitudeChanged(); + this.Onera_addressChanging(value); + this._era_address = value; + this.Onera_addressChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_latitude; - partial void Onera_latitudeChanging(global::System.Nullable value); - partial void Onera_latitudeChanged(); + private string _era_address; + partial void Onera_addressChanging(string value); + partial void Onera_addressChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property era_latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable era_latitude { get { - return this._createdon; + return this._era_latitude; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.Onera_latitudeChanging(value); + this._era_latitude = value; + this.Onera_latitudeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _era_latitude; + partial void Onera_latitudeChanging(global::System.Nullable value); + partial void Onera_latitudeChanged(); /// /// There are no comments for Property era_longitude in the schema. /// @@ -258093,27 +258093,27 @@ public static era_bcscaddress Createera_bcscaddress(global::EMBC.ESS.Utilities.D partial void Onera_longitudeChanging(global::System.Nullable value); partial void Onera_longitudeChanged(); /// - /// There are no comments for Property era_bcscaddressid in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_bcscaddressid + public virtual global::System.Nullable _modifiedby_value { get { - return this._era_bcscaddressid; + return this.__modifiedby_value; } set { - this.Onera_bcscaddressidChanging(value); - this._era_bcscaddressid = value; - this.Onera_bcscaddressidChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_bcscaddressid; - partial void Onera_bcscaddressidChanging(global::System.Nullable value); - partial void Onera_bcscaddressidChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -258137,6 +258137,28 @@ public static era_bcscaddress Createera_bcscaddress(global::EMBC.ESS.Utilities.D partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property era_bcscaddressid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_bcscaddressid + { + get + { + return this._era_bcscaddressid; + } + set + { + this.Onera_bcscaddressidChanging(value); + this._era_bcscaddressid = value; + this.Onera_bcscaddressidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_bcscaddressid; + partial void Onera_bcscaddressidChanging(global::System.Nullable value); + partial void Onera_bcscaddressidChanged(); + /// /// There are no comments for Property era_resolvedaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -258159,6 +258181,72 @@ public virtual string era_resolvedaddress partial void Onera_resolvedaddressChanging(string value); partial void Onera_resolvedaddressChanged(); /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -258225,93 +258313,93 @@ public virtual string era_resolvedaddress partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property era_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string era_postalcode { get { - return this._statuscode; + return this._era_postalcode; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onera_postalcodeChanging(value); + this._era_postalcode = value; + this.Onera_postalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _era_postalcode; + partial void Onera_postalcodeChanging(string value); + partial void Onera_postalcodeChanged(); /// - /// There are no comments for Property era_address in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_address + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._era_address; + return this.__createdonbehalfby_value; } set { - this.Onera_addressChanging(value); - this._era_address = value; - this.Onera_addressChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_address; - partial void Onera_addressChanging(string value); - partial void Onera_addressChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _ownerid_value { get { - return this._versionnumber; + return this.__ownerid_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property era_geocodescore in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable era_geocodescore { get { - return this._overriddencreatedon; + return this._era_geocodescore; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onera_geocodescoreChanging(value); + this._era_geocodescore = value; + this.Onera_geocodescoreChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _era_geocodescore; + partial void Onera_geocodescoreChanging(global::System.Nullable value); + partial void Onera_geocodescoreChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -258335,28 +258423,6 @@ public virtual string era_address partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property era_locality in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -258379,27 +258445,27 @@ public virtual string era_locality partial void Onera_localityChanging(string value); partial void Onera_localityChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__createdonbehalfby_value; + return this._overriddencreatedon; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -258423,93 +258489,49 @@ public virtual string era_locality partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property era_geocodescore in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_geocodescore - { - get - { - return this._era_geocodescore; - } - set - { - this.Onera_geocodescoreChanging(value); - this._era_geocodescore = value; - this.Onera_geocodescoreChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_geocodescore; - partial void Onera_geocodescoreChanging(global::System.Nullable value); - partial void Onera_geocodescoreChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property era_postalcode in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_postalcode + public virtual global::System.Nullable createdon { get { - return this._era_postalcode; + return this._createdon; } set { - this.Onera_postalcodeChanging(value); - this._era_postalcode = value; - this.Onera_postalcodeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_postalcode; - partial void Onera_postalcodeChanging(string value); - partial void Onera_postalcodeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._era_name; + return this.__modifiedonbehalfby_value; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -258533,49 +258555,27 @@ public virtual string era_name partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string era_name { get { - return this.__owninguser_value; + return this._era_name; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// /// There are no comments for Property era_province in the schema. /// @@ -259438,27 +259438,27 @@ public static era_castest Createera_castest(global::EMBC.ESS.Utilities.Dynamics. partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property era_securityprofiletest in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_securityprofiletest + public virtual global::System.Nullable _ownerid_value { get { - return this._era_securityprofiletest; + return this.__ownerid_value; } set { - this.Onera_securityprofiletestChanging(value); - this._era_securityprofiletest = value; - this.Onera_securityprofiletestChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_securityprofiletest; - partial void Onera_securityprofiletestChanging(string value); - partial void Onera_securityprofiletestChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -259482,27 +259482,27 @@ public virtual string era_securityprofiletest partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._importsequencenumber; + return this._timezoneruleversionnumber; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -259702,49 +259702,49 @@ public virtual string era_response partial void Onera_responseChanging(string value); partial void Onera_responseChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable importsequencenumber { get { - return this._createdon; + return this._importsequencenumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable createdon { get { - return this.__ownerid_value; + return this._createdon; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -259790,71 +259790,71 @@ public virtual string era_response partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _owningteam_value { get { - return this._timezoneruleversionnumber; + return this.__owningteam_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property era_securityprofiletest in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual string era_securityprofiletest { get { - return this._era_name; + return this._era_securityprofiletest; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.Onera_securityprofiletestChanging(value); + this._era_securityprofiletest = value; + this.Onera_securityprofiletestChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private string _era_securityprofiletest; + partial void Onera_securityprofiletestChanging(string value); + partial void Onera_securityprofiletestChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string era_name { get { - return this.__owningteam_value; + return this._era_name; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -260756,71 +260756,49 @@ public static era_country Createera_country(global::EMBC.ESS.Utilities.Dynamics. return era_country; } /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__modifiedonbehalfby_value; + return this._overriddencreatedon; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property era_countryid in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_countryid + public virtual global::System.Nullable _ownerid_value { get { - return this._era_countryid; + return this.__ownerid_value; } set { - this.Onera_countryidChanging(value); - this._era_countryid = value; - this.Onera_countryidChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_countryid; - partial void Onera_countryidChanging(global::System.Nullable value); - partial void Onera_countryidChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -260844,27 +260822,27 @@ public static era_country Createera_country(global::EMBC.ESS.Utilities.Dynamics. partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property era_isocountrycode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_isocountrycode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._era_isocountrycode; + return this.__modifiedonbehalfby_value; } set { - this.Onera_isocountrycodeChanging(value); - this._era_isocountrycode = value; - this.Onera_isocountrycodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_isocountrycode; - partial void Onera_isocountrycodeChanging(string value); - partial void Onera_isocountrycodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -261020,49 +260998,71 @@ public virtual string era_isocountrycode partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string era_name { get { - return this._utcconversiontimezonecode; + return this._era_name; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._era_name; + return this.__createdonbehalfby_value; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property era_countryid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_countryid + { + get + { + return this._era_countryid; + } + set + { + this.Onera_countryidChanging(value); + this._era_countryid = value; + this.Onera_countryidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_countryid; + partial void Onera_countryidChanging(global::System.Nullable value); + partial void Onera_countryidChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -261108,93 +261108,93 @@ public virtual string era_name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property era_isocountrycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string era_isocountrycode { get { - return this._overriddencreatedon; + return this._era_isocountrycode; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onera_isocountrycodeChanging(value); + this._era_isocountrycode = value; + this.Onera_isocountrycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _era_isocountrycode; + partial void Onera_isocountrycodeChanging(string value); + partial void Onera_isocountrycodeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__createdonbehalfby_value; + return this._utcconversiontimezonecode; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property era_countrycode in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_countrycode + public virtual global::System.Nullable importsequencenumber { get { - return this._era_countrycode; + return this._importsequencenumber; } set { - this.Onera_countrycodeChanging(value); - this._era_countrycode = value; - this.Onera_countrycodeChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_countrycode; - partial void Onera_countrycodeChanging(string value); - partial void Onera_countrycodeChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property era_countrycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string era_countrycode { get { - return this._importsequencenumber; + return this._era_countrycode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.Onera_countrycodeChanging(value); + this._era_countrycode = value; + this.Onera_countrycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _era_countrycode; + partial void Onera_countrycodeChanging(string value); + partial void Onera_countrycodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -261970,27 +261970,71 @@ public static era_customautonumberdefinition Createera_customautonumberdefinitio return era_customautonumberdefinition; } /// - /// There are no comments for Property era_format in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_format + public virtual global::System.Nullable importsequencenumber { get { - return this._era_format; + return this._importsequencenumber; } set { - this.Onera_formatChanging(value); - this._era_format = value; - this.Onera_formatChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_format; - partial void Onera_formatChanging(string value); - partial void Onera_formatChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property era_digits in the schema. /// @@ -262102,28 +262146,6 @@ public virtual string era_lockverification partial void Onera_lockverificationChanging(string value); partial void Onera_lockverificationChanged(); /// - /// There are no comments for Property era_lastnumberissued in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_lastnumberissued - { - get - { - return this._era_lastnumberissued; - } - set - { - this.Onera_lastnumberissuedChanging(value); - this._era_lastnumberissued = value; - this.Onera_lastnumberissuedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_lastnumberissued; - partial void Onera_lastnumberissuedChanging(global::System.Nullable value); - partial void Onera_lastnumberissuedChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -262190,49 +262212,49 @@ public virtual string era_lockverification partial void Onera_locktimestampChanging(global::System.Nullable value); partial void Onera_locktimestampChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property era_format in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string era_format { get { - return this.__createdonbehalfby_value; + return this._era_format; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onera_formatChanging(value); + this._era_format = value; + this.Onera_formatChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _era_format; + partial void Onera_formatChanging(string value); + partial void Onera_formatChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__modifiedby_value; + return this._utcconversiontimezonecode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -262322,28 +262344,6 @@ public virtual string era_lockverification partial void Onera_customautonumberdefinitionidChanging(global::System.Nullable value); partial void Onera_customautonumberdefinitionidChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -262388,49 +262388,49 @@ public virtual string era_lockverification partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string era_name { get { - return this._utcconversiontimezonecode; + return this._era_name; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property era_lastnumberissued in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable era_lastnumberissued { get { - return this._era_name; + return this._era_lastnumberissued; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.Onera_lastnumberissuedChanging(value); + this._era_lastnumberissued = value; + this.Onera_lastnumberissuedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable _era_lastnumberissued; + partial void Onera_lastnumberissuedChanging(global::System.Nullable value); + partial void Onera_lastnumberissuedChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -263005,27 +263005,27 @@ public static era_customautonumberrequest Createera_customautonumberrequest(glob return era_customautonumberrequest; } /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable statuscode { get { - return this._timezoneruleversionnumber; + return this._statuscode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property era_customautonumberrequestid in the schema. /// @@ -263049,6 +263049,28 @@ public static era_customautonumberrequest Createera_customautonumberrequest(glob partial void Onera_customautonumberrequestidChanging(global::System.Nullable value); partial void Onera_customautonumberrequestidChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property era_number in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -263115,28 +263137,6 @@ public virtual string era_lockvalue partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property era_integernumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -263159,49 +263159,27 @@ public virtual string era_lockvalue partial void Onera_integernumberChanging(global::System.Nullable value); partial void Onera_integernumberChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable modifiedon { get { - return this.__createdonbehalfby_value; + return this._modifiedon; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -263247,27 +263225,27 @@ public virtual string era_lockvalue partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._versionnumber; + return this._timezoneruleversionnumber; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -263445,6 +263423,28 @@ public virtual string era_name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -264281,6 +264281,28 @@ public static era_eligibilitycheck Createera_eligibilitycheck(global::EMBC.ESS.U partial void Onera_eligibilityperiodfromChanging(global::System.Nullable value); partial void Onera_eligibilityperiodfromChanged(); /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// /// There are no comments for Property _era_needsassessment_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -264303,27 +264325,27 @@ public static era_eligibilitycheck Createera_eligibilitycheck(global::EMBC.ESS.U partial void On_era_needsassessment_valueChanging(global::System.Nullable value); partial void On_era_needsassessment_valueChanged(); /// - /// There are no comments for Property era_iseligible in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_iseligible + public virtual global::System.Nullable versionnumber { get { - return this._era_iseligible; + return this._versionnumber; } set { - this.Onera_iseligibleChanging(value); - this._era_iseligible = value; - this.Onera_iseligibleChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_iseligible; - partial void Onera_iseligibleChanging(global::System.Nullable value); - partial void Onera_iseligibleChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -264347,49 +264369,49 @@ public static era_eligibilitycheck Createera_eligibilitycheck(global::EMBC.ESS.U partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property era_reason in the schema. + /// There are no comments for Property era_eligibilitycheckid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_reason + public virtual global::System.Nullable era_eligibilitycheckid { get { - return this._era_reason; + return this._era_eligibilitycheckid; } set { - this.Onera_reasonChanging(value); - this._era_reason = value; - this.Onera_reasonChanged(); + this.Onera_eligibilitycheckidChanging(value); + this._era_eligibilitycheckid = value; + this.Onera_eligibilitycheckidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_reason; - partial void Onera_reasonChanging(string value); - partial void Onera_reasonChanged(); + private global::System.Nullable _era_eligibilitycheckid; + partial void Onera_eligibilitycheckidChanging(global::System.Nullable value); + partial void Onera_eligibilitycheckidChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property era_iseligible in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable era_iseligible { get { - return this._utcconversiontimezonecode; + return this._era_iseligible; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onera_iseligibleChanging(value); + this._era_iseligible = value; + this.Onera_iseligibleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _era_iseligible; + partial void Onera_iseligibleChanging(global::System.Nullable value); + partial void Onera_iseligibleChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -264413,28 +264435,6 @@ public virtual string era_reason partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _era_task_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_task_value - { - get - { - return this.__era_task_value; - } - set - { - this.On_era_task_valueChanging(value); - this.__era_task_value = value; - this.On_era_task_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_task_value; - partial void On_era_task_valueChanging(global::System.Nullable value); - partial void On_era_task_valueChanged(); - /// /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -264479,28 +264479,6 @@ public virtual string era_name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property era_eligibilitycheckid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_eligibilitycheckid - { - get - { - return this._era_eligibilitycheckid; - } - set - { - this.Onera_eligibilitycheckidChanging(value); - this._era_eligibilitycheckid = value; - this.Onera_eligibilitycheckidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_eligibilitycheckid; - partial void Onera_eligibilitycheckidChanging(global::System.Nullable value); - partial void Onera_eligibilitycheckidChanged(); - /// /// There are no comments for Property _era_essfile_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -264567,6 +264545,28 @@ public virtual string era_name partial void Onera_eligibilityperiodtoChanging(global::System.Nullable value); partial void Onera_eligibilityperiodtoChanged(); /// + /// There are no comments for Property era_selfserveoptout in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_selfserveoptout + { + get + { + return this._era_selfserveoptout; + } + set + { + this.Onera_selfserveoptoutChanging(value); + this._era_selfserveoptout = value; + this.Onera_selfserveoptoutChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_selfserveoptout; + partial void Onera_selfserveoptoutChanging(global::System.Nullable value); + partial void Onera_selfserveoptoutChanged(); + /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -264589,6 +264589,28 @@ public virtual string era_name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -264611,6 +264633,28 @@ public virtual string era_name partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -264677,49 +264721,49 @@ public virtual string era_name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property era_reason in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string era_reason { get { - return this.__owningteam_value; + return this._era_reason; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onera_reasonChanging(value); + this._era_reason = value; + this.Onera_reasonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _era_reason; + partial void Onera_reasonChanging(string value); + partial void Onera_reasonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _era_task_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _era_task_value { get { - return this.__modifiedonbehalfby_value; + return this.__era_task_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_era_task_valueChanging(value); + this.__era_task_value = value; + this.On_era_task_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __era_task_value; + partial void On_era_task_valueChanging(global::System.Nullable value); + partial void On_era_task_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -264743,28 +264787,6 @@ public virtual string era_name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -264787,27 +264809,27 @@ public virtual string era_name partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property era_selfserveoptout in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_selfserveoptout + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._era_selfserveoptout; + return this.__modifiedonbehalfby_value; } set { - this.Onera_selfserveoptoutChanging(value); - this._era_selfserveoptout = value; - this.Onera_selfserveoptoutChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_selfserveoptout; - partial void Onera_selfserveoptoutChanging(global::System.Nullable value); - partial void Onera_selfserveoptoutChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _era_bcscaddress_value in the schema. /// @@ -264831,28 +264853,6 @@ public virtual string era_name partial void On_era_bcscaddress_valueChanging(global::System.Nullable value); partial void On_era_bcscaddress_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -265841,49 +265841,49 @@ public static era_eligiblesupport Createera_eligiblesupport(global::EMBC.ESS.Uti partial void On_era_eligibilitycheck_valueChanging(global::System.Nullable value); partial void On_era_eligibilitycheck_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string era_name { get { - return this.__modifiedonbehalfby_value; + return this._era_name; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable _ownerid_value { get { - return this._era_name; + return this.__ownerid_value; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -265929,28 +265929,6 @@ public virtual string era_name partial void Onera_eligiblesupportidChanging(global::System.Nullable value); partial void Onera_eligiblesupportidChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -265973,71 +265951,27 @@ public virtual string era_name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._modifiedon; + return this.__createdonbehalfby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -266061,27 +265995,137 @@ public virtual string era_name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__ownerid_value; + return this._overriddencreatedon; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -266149,28 +266193,6 @@ public virtual string era_name partial void Onera_supporteligibleChanging(global::System.Nullable value); partial void Onera_supporteligibleChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -266259,28 +266281,6 @@ public virtual string era_name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -267096,6 +267096,116 @@ public static era_embcregion Createera_embcregion(global::EMBC.ESS.Utilities.Dyn partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property era_embcregionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_embcregionid + { + get + { + return this._era_embcregionid; + } + set + { + this.Onera_embcregionidChanging(value); + this._era_embcregionid = value; + this.Onera_embcregionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_embcregionid; + partial void Onera_embcregionidChanging(global::System.Nullable value); + partial void Onera_embcregionidChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property era_location in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -267118,72 +267228,6 @@ public virtual string era_location partial void Onera_locationChanging(string value); partial void Onera_locationChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property era_callsign in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_callsign - { - get - { - return this._era_callsign; - } - set - { - this.Onera_callsignChanging(value); - this._era_callsign = value; - this.Onera_callsignChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_callsign; - partial void Onera_callsignChanging(string value); - partial void Onera_callsignChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -267206,50 +267250,6 @@ public virtual string era_callsign partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -267272,71 +267272,71 @@ public virtual string era_callsign partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property era_callsign in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string era_callsign { get { - return this.__createdonbehalfby_value; + return this._era_callsign; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onera_callsignChanging(value); + this._era_callsign = value; + this.Onera_callsignChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _era_callsign; + partial void Onera_callsignChanging(string value); + partial void Onera_callsignChanged(); /// - /// There are no comments for Property era_embcregionid in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_embcregionid + public virtual string era_name { get { - return this._era_embcregionid; + return this._era_name; } set { - this.Onera_embcregionidChanging(value); - this._era_embcregionid = value; - this.Onera_embcregionidChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_embcregionid; - partial void Onera_embcregionidChanging(global::System.Nullable value); - partial void Onera_embcregionidChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._era_name; + return this.__createdonbehalfby_value; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -267360,27 +267360,27 @@ public virtual string era_name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property era_code in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_code + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._era_code; + return this._utcconversiontimezonecode; } set { - this.Onera_codeChanging(value); - this._era_code = value; - this.Onera_codeChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_code; - partial void Onera_codeChanging(string value); - partial void Onera_codeChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -267426,27 +267426,27 @@ public virtual string era_code partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property era_code in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string era_code { get { - return this._modifiedon; + return this._era_code; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.Onera_codeChanging(value); + this._era_code = value; + this.Onera_codeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private string _era_code; + partial void Onera_codeChanging(string value); + partial void Onera_codeChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -268850,6 +268850,50 @@ public static era_essevacueeetransfersupport Createera_essevacueeetransfersuppor return era_essevacueeetransfersupport; } /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property _processid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -268894,27 +268938,27 @@ public static era_essevacueeetransfersupport Createera_essevacueeetransfersuppor partial void Onbpf_durationChanging(global::System.Nullable value); partial void Onbpf_durationChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._overriddencreatedon; + return this._timezoneruleversionnumber; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property businessprocessflowinstanceid in the schema. /// @@ -268938,6 +268982,28 @@ public static era_essevacueeetransfersupport Createera_essevacueeetransfersuppor partial void OnbusinessprocessflowinstanceidChanging(global::System.Nullable value); partial void OnbusinessprocessflowinstanceidChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -269048,93 +269114,93 @@ public virtual string traversedpath partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable versionnumber { get { - return this.__createdonbehalfby_value; + return this._versionnumber; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._timezoneruleversionnumber; + return this._utcconversiontimezonecode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable overriddencreatedon { get { - return this._statuscode; + return this._overriddencreatedon; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable statuscode { get { - return this._versionnumber; + return this._statuscode; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property activestagestartedon in the schema. /// @@ -269158,28 +269224,6 @@ public virtual string traversedpath partial void OnactivestagestartedonChanging(global::System.Nullable value); partial void OnactivestagestartedonChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _activestageid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -269202,72 +269246,6 @@ public virtual string traversedpath partial void On_activestageid_valueChanging(global::System.Nullable value); partial void On_activestageid_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property bpf_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string bpf_name - { - get - { - return this._bpf_name; - } - set - { - this.Onbpf_nameChanging(value); - this._bpf_name = value; - this.Onbpf_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _bpf_name; - partial void Onbpf_nameChanging(string value); - partial void Onbpf_nameChanged(); - /// /// There are no comments for Property completedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -269312,49 +269290,71 @@ public virtual string bpf_name partial void On_bpf_era_evacueesupportid_valueChanging(global::System.Nullable value); partial void On_bpf_era_evacueesupportid_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._importsequencenumber; + return this.__createdonbehalfby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property bpf_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string bpf_name { get { - return this._utcconversiontimezonecode; + return this._bpf_name; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onbpf_nameChanging(value); + this._bpf_name = value; + this.Onbpf_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _bpf_name; + partial void Onbpf_nameChanging(string value); + partial void Onbpf_nameChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -270142,6 +270142,50 @@ public static era_essfilenote Createera_essfilenote(global::EMBC.ESS.Utilities.D return era_essfilenote; } /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -270164,71 +270208,71 @@ public static era_essfilenote Createera_essfilenote(global::EMBC.ESS.Utilities.D partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _era_essteamuserid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _era_essteamuserid_value { get { - return this._timezoneruleversionnumber; + return this.__era_essteamuserid_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_era_essteamuserid_valueChanging(value); + this.__era_essteamuserid_value = value; + this.On_era_essteamuserid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __era_essteamuserid_value; + partial void On_era_essteamuserid_valueChanging(global::System.Nullable value); + partial void On_era_essteamuserid_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property era_essfilenoteid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable era_essfilenoteid { get { - return this.__owningbusinessunit_value; + return this._era_essfilenoteid; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.Onera_essfilenoteidChanging(value); + this._era_essfilenoteid = value; + this.Onera_essfilenoteidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _era_essfilenoteid; + partial void Onera_essfilenoteidChanging(global::System.Nullable value); + partial void Onera_essfilenoteidChanged(); /// - /// There are no comments for Property _era_essteamuserid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_essteamuserid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__era_essteamuserid_value; + return this._importsequencenumber; } set { - this.On_era_essteamuserid_valueChanging(value); - this.__era_essteamuserid_value = value; - this.On_era_essteamuserid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_essteamuserid_value; - partial void On_era_essteamuserid_valueChanging(global::System.Nullable value); - partial void On_era_essteamuserid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -270252,159 +270296,159 @@ public static era_essfilenote Createera_essfilenote(global::EMBC.ESS.Utilities.D partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable versionnumber { get { - return this._createdon; + return this._versionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__createdby_value; + return this._timezoneruleversionnumber; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property era_essfilenoteid in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_essfilenoteid + public virtual global::System.Nullable createdon { get { - return this._era_essfilenoteid; + return this._createdon; } set { - this.Onera_essfilenoteidChanging(value); - this._era_essfilenoteid = value; - this.Onera_essfilenoteidChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_essfilenoteid; - partial void Onera_essfilenoteidChanging(global::System.Nullable value); - partial void Onera_essfilenoteidChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__createdonbehalfby_value; + return this.__createdby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property era_important in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable era_important { get { - return this._statuscode; + return this._era_important; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onera_importantChanging(value); + this._era_important = value; + this.Onera_importantChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _era_important; + partial void Onera_importantChanging(global::System.Nullable value); + partial void Onera_importantChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _era_essfileid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _era_essfileid_value { get { - return this._utcconversiontimezonecode; + return this.__era_essfileid_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_era_essfileid_valueChanging(value); + this.__era_essfileid_value = value; + this.On_era_essfileid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __era_essfileid_value; + partial void On_era_essfileid_valueChanging(global::System.Nullable value); + partial void On_era_essfileid_valueChanged(); /// - /// There are no comments for Property _era_essfileid_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_essfileid_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__era_essfileid_value; + return this.__modifiedby_value; } set { - this.On_era_essfileid_valueChanging(value); - this.__era_essfileid_value = value; - this.On_era_essfileid_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_essfileid_value; - partial void On_era_essfileid_valueChanging(global::System.Nullable value); - partial void On_era_essfileid_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -270428,49 +270472,49 @@ public static era_essfilenote Createera_essfilenote(global::EMBC.ESS.Utilities.D partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property era_ishidden in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_ishidden + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._era_ishidden; + return this.__owningbusinessunit_value; } set { - this.Onera_ishiddenChanging(value); - this._era_ishidden = value; - this.Onera_ishiddenChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_ishidden; - partial void Onera_ishiddenChanging(global::System.Nullable value); - partial void Onera_ishiddenChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property era_ishidden in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable era_ishidden { get { - return this._versionnumber; + return this._era_ishidden; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.Onera_ishiddenChanging(value); + this._era_ishidden = value; + this.Onera_ishiddenChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _era_ishidden; + partial void Onera_ishiddenChanging(global::System.Nullable value); + partial void Onera_ishiddenChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -270538,71 +270582,71 @@ public virtual string era_notetext partial void Onera_notetextChanging(string value); partial void Onera_notetextChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._importsequencenumber; + return this.__createdonbehalfby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__modifiedby_value; + return this._utcconversiontimezonecode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string era_name { get { - return this._overriddencreatedon; + return this._era_name; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -270626,28 +270670,6 @@ public virtual string era_notetext partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property era_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_name - { - get - { - return this._era_name; - } - set - { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -271790,28 +271812,6 @@ public virtual string era_name partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property _era_supporttypeid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -271878,6 +271878,28 @@ public virtual string era_name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -272705,49 +272727,49 @@ public static era_esstaskchangerequest Createera_esstaskchangerequest(global::EM return era_esstaskchangerequest; } /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string era_name { get { - return this._statuscode; + return this._era_name; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// - /// There are no comments for Property era_esstaskchangerequestid in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_esstaskchangerequestid + public virtual global::System.Nullable overriddencreatedon { get { - return this._era_esstaskchangerequestid; + return this._overriddencreatedon; } set { - this.Onera_esstaskchangerequestidChanging(value); - this._era_esstaskchangerequestid = value; - this.Onera_esstaskchangerequestidChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_esstaskchangerequestid; - partial void Onera_esstaskchangerequestidChanging(global::System.Nullable value); - partial void Onera_esstaskchangerequestidChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property era_newserviceline in the schema. /// @@ -272793,50 +272815,6 @@ public virtual string era_newserviceline partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property era_newstob in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_newstob - { - get - { - return this._era_newstob; - } - set - { - this.Onera_newstobChanging(value); - this._era_newstob = value; - this.Onera_newstobChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_newstob; - partial void Onera_newstobChanging(string value); - partial void Onera_newstobChanged(); - /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -272903,6 +272881,28 @@ public virtual string era_newstob partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property _era_supplierinvoice_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_supplierinvoice_value + { + get + { + return this.__era_supplierinvoice_value; + } + set + { + this.On_era_supplierinvoice_valueChanging(value); + this.__era_supplierinvoice_value = value; + this.On_era_supplierinvoice_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_supplierinvoice_value; + partial void On_era_supplierinvoice_valueChanging(global::System.Nullable value); + partial void On_era_supplierinvoice_valueChanged(); + /// /// There are no comments for Property era_neweventsummary in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -272969,27 +272969,49 @@ public virtual string era_neweventsummary partial void Onera_updateesstaskChanging(global::System.Nullable value); partial void Onera_updateesstaskChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable statuscode { get { - return this._createdon; + return this._statuscode; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property era_newstob in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_newstob + { + get + { + return this._era_newstob; + } + set + { + this.Onera_newstobChanging(value); + this._era_newstob = value; + this.Onera_newstobChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_newstob; + partial void Onera_newstobChanging(string value); + partial void Onera_newstobChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -273013,27 +273035,27 @@ public virtual string era_neweventsummary partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _era_supplierinvoice_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_supplierinvoice_value + public virtual global::System.Nullable statecode { get { - return this.__era_supplierinvoice_value; + return this._statecode; } set { - this.On_era_supplierinvoice_valueChanging(value); - this.__era_supplierinvoice_value = value; - this.On_era_supplierinvoice_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_supplierinvoice_value; - partial void On_era_supplierinvoice_valueChanging(global::System.Nullable value); - partial void On_era_supplierinvoice_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -273057,28 +273079,6 @@ public virtual string era_neweventsummary partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -273101,27 +273101,27 @@ public virtual string era_neweventsummary partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._era_name; + return this._timezoneruleversionnumber; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -273145,6 +273145,28 @@ public virtual string era_name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property era_newprojectnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -273255,49 +273277,49 @@ public virtual string era_newresponsiblecenter partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property era_esstaskchangerequestid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable era_esstaskchangerequestid { get { - return this.__modifiedonbehalfby_value; + return this._era_esstaskchangerequestid; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onera_esstaskchangerequestidChanging(value); + this._era_esstaskchangerequestid = value; + this.Onera_esstaskchangerequestidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _era_esstaskchangerequestid; + partial void Onera_esstaskchangerequestidChanging(global::System.Nullable value); + partial void Onera_esstaskchangerequestidChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._overriddencreatedon; + return this.__modifiedonbehalfby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -274217,49 +274239,49 @@ public static era_essteamarea Createera_essteamarea(global::EMBC.ESS.Utilities.D partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._era_name; + return this.__modifiedonbehalfby_value; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string era_name { get { - return this.__modifiedonbehalfby_value; + return this._era_name; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -274459,6 +274481,28 @@ public virtual string era_name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property _era_essteamid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_essteamid_value + { + get + { + return this.__era_essteamid_value; + } + set + { + this.On_era_essteamid_valueChanging(value); + this.__era_essteamid_value = value; + this.On_era_essteamid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_essteamid_value; + partial void On_era_essteamid_valueChanging(global::System.Nullable value); + partial void On_era_essteamid_valueChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -274591,28 +274635,6 @@ public virtual string era_name partial void Onera_essteamareaidChanging(global::System.Nullable value); partial void Onera_essteamareaidChanged(); /// - /// There are no comments for Property _era_essteamid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_essteamid_value - { - get - { - return this.__era_essteamid_value; - } - set - { - this.On_era_essteamid_valueChanging(value); - this.__era_essteamid_value = value; - this.On_era_essteamid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_essteamid_value; - partial void On_era_essteamid_valueChanging(global::System.Nullable value); - partial void On_era_essteamid_valueChanged(); - /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -275668,50 +275690,6 @@ public static era_essteam Createera_essteam(global::EMBC.ESS.Utilities.Dynamics. partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property era_essteamid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_essteamid - { - get - { - return this._era_essteamid; - } - set - { - this.Onera_essteamidChanging(value); - this._era_essteamid = value; - this.Onera_essteamidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_essteamid; - partial void Onera_essteamidChanging(global::System.Nullable value); - partial void Onera_essteamidChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -275756,28 +275734,6 @@ public virtual string era_name partial void Onera_nameChanging(string value); partial void Onera_nameChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -275800,27 +275756,27 @@ public virtual string era_name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property era_essteamid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable era_essteamid { get { - return this.__modifiedby_value; + return this._era_essteamid; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.Onera_essteamidChanging(value); + this._era_essteamid = value; + this.Onera_essteamidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _era_essteamid; + partial void Onera_essteamidChanging(global::System.Nullable value); + partial void Onera_essteamidChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -275888,71 +275844,49 @@ public virtual string era_name partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable versionnumber { get { - return this._statuscode; + return this._versionnumber; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._timezoneruleversionnumber; + return this._utcconversiontimezonecode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -275998,6 +275932,94 @@ public virtual string era_name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -277074,6 +277096,28 @@ public static era_essteamsupplier Createera_essteamsupplier(global::EMBC.ESS.Uti partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -277426,27 +277470,27 @@ public virtual string era_name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _era_supplierid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _era_supplierid_value { get { - return this._utcconversiontimezonecode; + return this.__era_supplierid_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_era_supplierid_valueChanging(value); + this.__era_supplierid_value = value; + this.On_era_supplierid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __era_supplierid_value; + partial void On_era_supplierid_valueChanging(global::System.Nullable value); + partial void On_era_supplierid_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -277470,28 +277514,6 @@ public virtual string era_name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _era_supplierid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_supplierid_value - { - get - { - return this.__era_supplierid_value; - } - set - { - this.On_era_supplierid_valueChanging(value); - this.__era_supplierid_value = value; - this.On_era_supplierid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_supplierid_value; - partial void On_era_supplierid_valueChanging(global::System.Nullable value); - partial void On_era_supplierid_valueChanged(); - /// /// There are no comments for Property _era_essteamid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -278684,49 +278706,27 @@ public virtual string era_phone partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property era_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_name - { - get - { - return this._era_name; - } - set - { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); - /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _owninguser_value { get { - return this._createdon; + return this.__owninguser_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property era_lastsuccessfullogin in the schema. /// @@ -278750,50 +278750,6 @@ public virtual string era_name partial void Onera_lastsuccessfulloginChanging(global::System.Nullable value); partial void Onera_lastsuccessfulloginChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property era_lastname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -278860,49 +278816,71 @@ public virtual string era_lastname partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property era_role in the schema. + /// There are no comments for Property era_email in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_role + public virtual string era_email { get { - return this._era_role; + return this._era_email; } set { - this.Onera_roleChanging(value); - this._era_role = value; - this.Onera_roleChanged(); + this.Onera_emailChanging(value); + this._era_email = value; + this.Onera_emailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_role; - partial void Onera_roleChanging(global::System.Nullable value); - partial void Onera_roleChanged(); + private string _era_email; + partial void Onera_emailChanging(string value); + partial void Onera_emailChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property era_firstname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string era_firstname { get { - return this.__owningteam_value; + return this._era_firstname; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onera_firstnameChanging(value); + this._era_firstname = value; + this.Onera_firstnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _era_firstname; + partial void Onera_firstnameChanging(string value); + partial void Onera_firstnameChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property era_externalsystemuser in the schema. /// @@ -278926,49 +278904,93 @@ public virtual string era_externalsystemuser partial void Onera_externalsystemuserChanging(string value); partial void Onera_externalsystemuserChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__createdby_value; + return this._utcconversiontimezonecode; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property era_essteamuserid in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_essteamuserid + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._era_essteamuserid; + return this.__createdonbehalfby_value; } set { - this.Onera_essteamuseridChanging(value); - this._era_essteamuserid = value; - this.Onera_essteamuseridChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_essteamuserid; - partial void Onera_essteamuseridChanging(global::System.Nullable value); - partial void Onera_essteamuseridChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// + /// There are no comments for Property era_role in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_role + { + get + { + return this._era_role; + } + set + { + this.Onera_roleChanging(value); + this._era_role = value; + this.Onera_roleChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_role; + partial void Onera_roleChanging(global::System.Nullable value); + partial void Onera_roleChanged(); /// /// There are no comments for Property era_label in the schema. /// @@ -279014,6 +279036,28 @@ public virtual string era_externalsystemuser partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property era_essteamuserid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_essteamuserid + { + get + { + return this._era_essteamuserid; + } + set + { + this.Onera_essteamuseridChanging(value); + this._era_essteamuserid = value; + this.Onera_essteamuseridChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_essteamuserid; + partial void Onera_essteamuseridChanging(global::System.Nullable value); + partial void Onera_essteamuseridChanged(); + /// /// There are no comments for Property era_electronicaccessagreementaccepteddate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -279036,27 +279080,27 @@ public virtual string era_externalsystemuser partial void Onera_electronicaccessagreementaccepteddateChanging(global::System.Nullable value); partial void Onera_electronicaccessagreementaccepteddateChanged(); /// - /// There are no comments for Property era_firstname in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_firstname + public virtual global::System.Nullable _createdby_value { get { - return this._era_firstname; + return this.__createdby_value; } set { - this.Onera_firstnameChanging(value); - this._era_firstname = value; - this.Onera_firstnameChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_firstname; - partial void Onera_firstnameChanging(string value); - partial void Onera_firstnameChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -279102,159 +279146,137 @@ public virtual string era_firstname partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property era_externalsystemusername in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_externalsystemusername - { - get - { - return this._era_externalsystemusername; - } - set - { - this.Onera_externalsystemusernameChanging(value); - this._era_externalsystemusername = value; - this.Onera_externalsystemusernameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_externalsystemusername; - partial void Onera_externalsystemusernameChanging(string value); - partial void Onera_externalsystemusernameChanged(); - /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_externalsystemtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable era_externalsystemtype { get { - return this._statecode; + return this._era_externalsystemtype; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_externalsystemtypeChanging(value); + this._era_externalsystemtype = value; + this.Onera_externalsystemtypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _era_externalsystemtype; + partial void Onera_externalsystemtypeChanging(global::System.Nullable value); + partial void Onera_externalsystemtypeChanged(); /// - /// There are no comments for Property era_email in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_email + public virtual global::System.Nullable versionnumber { get { - return this._era_email; + return this._versionnumber; } set { - this.Onera_emailChanging(value); - this._era_email = value; - this.Onera_emailChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_email; - partial void Onera_emailChanging(string value); - partial void Onera_emailChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property era_externalsystemtype in the schema. + /// There are no comments for Property era_externalsystemusername in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_externalsystemtype + public virtual string era_externalsystemusername { get { - return this._era_externalsystemtype; + return this._era_externalsystemusername; } set { - this.Onera_externalsystemtypeChanging(value); - this._era_externalsystemtype = value; - this.Onera_externalsystemtypeChanged(); + this.Onera_externalsystemusernameChanging(value); + this._era_externalsystemusername = value; + this.Onera_externalsystemusernameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_externalsystemtype; - partial void Onera_externalsystemtypeChanging(global::System.Nullable value); - partial void Onera_externalsystemtypeChanged(); + private string _era_externalsystemusername; + partial void Onera_externalsystemusernameChanging(string value); + partial void Onera_externalsystemusernameChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable statecode { get { - return this.__ownerid_value; + return this._statecode; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string era_name { get { - return this.__owninguser_value; + return this._era_name; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _owningteam_value { get { - return this._utcconversiontimezonecode; + return this.__owningteam_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -280705,6 +280727,28 @@ public virtual string era_countrycode partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property era_lastname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_lastname + { + get + { + return this._era_lastname; + } + set + { + this.Onera_lastnameChanging(value); + this._era_lastname = value; + this.Onera_lastnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_lastname; + partial void Onera_lastnameChanging(string value); + partial void Onera_lastnameChanged(); + /// /// There are no comments for Property era_sitesuppliernumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -280771,71 +280815,49 @@ public virtual string era_sitesuppliernumber partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property era_totalamount in the schema. + /// There are no comments for Property era_queuetransitiondate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalamount + public virtual global::System.Nullable era_queuetransitiondate { get { - return this._era_totalamount; + return this._era_queuetransitiondate; } set { - this.Onera_totalamountChanging(value); - this._era_totalamount = value; - this.Onera_totalamountChanged(); + this.Onera_queuetransitiondateChanging(value); + this._era_queuetransitiondate = value; + this.Onera_queuetransitiondateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalamount; - partial void Onera_totalamountChanging(global::System.Nullable value); - partial void Onera_totalamountChanged(); + private global::System.Nullable _era_queuetransitiondate; + partial void Onera_queuetransitiondateChanging(global::System.Nullable value); + partial void Onera_queuetransitiondateChanged(); /// - /// There are no comments for Property era_dateinvoicereceived in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_dateinvoicereceived + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._era_dateinvoicereceived; + return this._timezoneruleversionnumber; } set { - this.Onera_dateinvoicereceivedChanging(value); - this._era_dateinvoicereceived = value; - this.Onera_dateinvoicereceivedChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_dateinvoicereceived; - partial void Onera_dateinvoicereceivedChanging(global::System.Nullable value); - partial void Onera_dateinvoicereceivedChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property era_emailaddress in the schema. /// @@ -280925,6 +280947,28 @@ public virtual string era_invoicebatchname partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// + /// There are no comments for Property era_dateinvoicereceived in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_dateinvoicereceived + { + get + { + return this._era_dateinvoicereceived; + } + set + { + this.Onera_dateinvoicereceivedChanging(value); + this._era_dateinvoicereceived = value; + this.Onera_dateinvoicereceivedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_dateinvoicereceived; + partial void Onera_dateinvoicereceivedChanging(global::System.Nullable value); + partial void Onera_dateinvoicereceivedChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -281057,49 +281101,27 @@ public virtual string era_securityanswer partial void Onera_totalamount_baseChanging(global::System.Nullable value); partial void Onera_totalamount_baseChanged(); /// - /// There are no comments for Property era_lastname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_lastname - { - get - { - return this._era_lastname; - } - set - { - this.Onera_lastnameChanging(value); - this._era_lastname = value; - this.Onera_lastnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_lastname; - partial void Onera_lastnameChanging(string value); - partial void Onera_lastnameChanged(); - /// - /// There are no comments for Property era_queuetransitiondate in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_queuetransitiondate + public virtual global::System.Nullable exchangerate { get { - return this._era_queuetransitiondate; + return this._exchangerate; } set { - this.Onera_queuetransitiondateChanging(value); - this._era_queuetransitiondate = value; - this.Onera_queuetransitiondateChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_queuetransitiondate; - partial void Onera_queuetransitiondateChanging(global::System.Nullable value); - partial void Onera_queuetransitiondateChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -281211,27 +281233,27 @@ public virtual string era_suppliernumber partial void Onera_suppliernumberChanging(string value); partial void Onera_suppliernumberChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property era_totalamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable era_totalamount { get { - return this._exchangerate; + return this._era_totalamount; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.Onera_totalamountChanging(value); + this._era_totalamount = value; + this.Onera_totalamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _era_totalamount; + partial void Onera_totalamountChanging(global::System.Nullable value); + partial void Onera_totalamountChanged(); /// /// There are no comments for Property era_phonenumber in the schema. /// @@ -282514,49 +282536,49 @@ public static era_evacuationfile Createera_evacuationfile(global::EMBC.ESS.Utili partial void Onera_supportprovidedChanging(global::System.Nullable value); partial void Onera_supportprovidedChanged(); /// - /// There are no comments for Property era_totalhouseholdmembers in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalhouseholdmembers + public virtual global::System.Nullable statuscode { get { - return this._era_totalhouseholdmembers; + return this._statuscode; } set { - this.Onera_totalhouseholdmembersChanging(value); - this._era_totalhouseholdmembers = value; - this.Onera_totalhouseholdmembersChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalhouseholdmembers; - partial void Onera_totalhouseholdmembersChanging(global::System.Nullable value); - partial void Onera_totalhouseholdmembersChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property era_totalhouseholdanimals_date in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable era_totalhouseholdanimals_date { get { - return this._statuscode; + return this._era_totalhouseholdanimals_date; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onera_totalhouseholdanimals_dateChanging(value); + this._era_totalhouseholdanimals_date = value; + this.Onera_totalhouseholdanimals_dateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _era_totalhouseholdanimals_date; + partial void Onera_totalhouseholdanimals_dateChanging(global::System.Nullable value); + partial void Onera_totalhouseholdanimals_dateChanged(); /// /// There are no comments for Property era_haspetfood in the schema. /// @@ -282580,6 +282602,28 @@ public static era_evacuationfile Createera_evacuationfile(global::EMBC.ESS.Utili partial void Onera_haspetfoodChanging(global::System.Nullable value); partial void Onera_haspetfoodChanged(); /// + /// There are no comments for Property era_registrationcompleteddate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_registrationcompleteddate + { + get + { + return this._era_registrationcompleteddate; + } + set + { + this.Onera_registrationcompleteddateChanging(value); + this._era_registrationcompleteddate = value; + this.Onera_registrationcompleteddateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_registrationcompleteddate; + partial void Onera_registrationcompleteddateChanging(global::System.Nullable value); + partial void Onera_registrationcompleteddateChanged(); + /// /// There are no comments for Property era_numberofassessments in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -282646,49 +282690,49 @@ public static era_evacuationfile Createera_evacuationfile(global::EMBC.ESS.Utili partial void Onera_totalhouseholdmembers_dateChanging(global::System.Nullable value); partial void Onera_totalhouseholdmembers_dateChanged(); /// - /// There are no comments for Property era_numberofassessments_date in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_numberofassessments_date + public virtual global::System.Nullable modifiedon { get { - return this._era_numberofassessments_date; + return this._modifiedon; } set { - this.Onera_numberofassessments_dateChanging(value); - this._era_numberofassessments_date = value; - this.Onera_numberofassessments_dateChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_numberofassessments_date; - partial void Onera_numberofassessments_dateChanging(global::System.Nullable value); - partial void Onera_numberofassessments_dateChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _era_registrant_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _era_registrant_value { get { - return this.__createdonbehalfby_value; + return this.__era_registrant_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_era_registrant_valueChanging(value); + this.__era_registrant_value = value; + this.On_era_registrant_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __era_registrant_value; + partial void On_era_registrant_valueChanging(global::System.Nullable value); + partial void On_era_registrant_valueChanged(); /// /// There are no comments for Property era_name in the schema. /// @@ -282712,6 +282756,28 @@ public virtual string era_name partial void Onera_nameChanging(string value); partial void Onera_nameChanged(); /// + /// There are no comments for Property era_totalhouseholdanimals in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_totalhouseholdanimals + { + get + { + return this._era_totalhouseholdanimals; + } + set + { + this.Onera_totalhouseholdanimalsChanging(value); + this._era_totalhouseholdanimals = value; + this.Onera_totalhouseholdanimalsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_totalhouseholdanimals; + partial void Onera_totalhouseholdanimalsChanging(global::System.Nullable value); + partial void Onera_totalhouseholdanimalsChanged(); + /// /// There are no comments for Property era_hasrestriction in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -282778,27 +282844,71 @@ public virtual string era_name partial void Onera_dayssincecreatedChanging(global::System.Nullable value); partial void Onera_dayssincecreatedChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__owningteam_value; + return this.__modifiedby_value; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property era_totalhouseholdmembers_state in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_totalhouseholdmembers_state + { + get + { + return this._era_totalhouseholdmembers_state; + } + set + { + this.Onera_totalhouseholdmembers_stateChanging(value); + this._era_totalhouseholdmembers_state = value; + this.Onera_totalhouseholdmembers_stateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_totalhouseholdmembers_state; + partial void Onera_totalhouseholdmembers_stateChanging(global::System.Nullable value); + partial void Onera_totalhouseholdmembers_stateChanged(); + /// + /// There are no comments for Property era_hasrestriction_date in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_hasrestriction_date + { + get + { + return this._era_hasrestriction_date; + } + set + { + this.Onera_hasrestriction_dateChanging(value); + this._era_hasrestriction_date = value; + this.Onera_hasrestriction_dateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_hasrestriction_date; + partial void Onera_hasrestriction_dateChanging(global::System.Nullable value); + partial void Onera_hasrestriction_dateChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -282822,49 +282932,27 @@ public virtual string era_name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property era_supportstotalamountsincludingpaid_date in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_supportstotalamountsincludingpaid_date - { - get - { - return this._era_supportstotalamountsincludingpaid_date; - } - set - { - this.Onera_supportstotalamountsincludingpaid_dateChanging(value); - this._era_supportstotalamountsincludingpaid_date = value; - this.Onera_supportstotalamountsincludingpaid_dateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_supportstotalamountsincludingpaid_date; - partial void Onera_supportstotalamountsincludingpaid_dateChanging(global::System.Nullable value); - partial void Onera_supportstotalamountsincludingpaid_dateChanged(); - /// - /// There are no comments for Property era_totalhouseholdanimals_date in the schema. + /// There are no comments for Property era_interviewername in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalhouseholdanimals_date + public virtual string era_interviewername { get { - return this._era_totalhouseholdanimals_date; + return this._era_interviewername; } set { - this.Onera_totalhouseholdanimals_dateChanging(value); - this._era_totalhouseholdanimals_date = value; - this.Onera_totalhouseholdanimals_dateChanged(); + this.Onera_interviewernameChanging(value); + this._era_interviewername = value; + this.Onera_interviewernameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalhouseholdanimals_date; - partial void Onera_totalhouseholdanimals_dateChanging(global::System.Nullable value); - partial void Onera_totalhouseholdanimals_dateChanged(); + private string _era_interviewername; + partial void Onera_interviewernameChanging(string value); + partial void Onera_interviewernameChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -282976,27 +283064,27 @@ public virtual string era_name partial void Onera_supportstotalamountsincludingpaidChanging(global::System.Nullable value); partial void Onera_supportstotalamountsincludingpaidChanged(); /// - /// There are no comments for Property era_hasrestriction_date in the schema. + /// There are no comments for Property era_evacuationfileid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_hasrestriction_date + public virtual global::System.Nullable era_evacuationfileid { get { - return this._era_hasrestriction_date; + return this._era_evacuationfileid; } set { - this.Onera_hasrestriction_dateChanging(value); - this._era_hasrestriction_date = value; - this.Onera_hasrestriction_dateChanged(); + this.Onera_evacuationfileidChanging(value); + this._era_evacuationfileid = value; + this.Onera_evacuationfileidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_hasrestriction_date; - partial void Onera_hasrestriction_dateChanging(global::System.Nullable value); - partial void Onera_hasrestriction_dateChanged(); + private global::System.Nullable _era_evacuationfileid; + partial void Onera_evacuationfileidChanging(global::System.Nullable value); + partial void Onera_evacuationfileidChanged(); /// /// There are no comments for Property era_petcareplans in the schema. /// @@ -283042,137 +283130,137 @@ public virtual string era_petcareplans partial void Onera_registrationcompleteChanging(global::System.Nullable value); partial void Onera_registrationcompleteChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._createdon; + return this.__createdonbehalfby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property era_paperbasedessfile in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual string era_paperbasedessfile { get { - return this._exchangerate; + return this._era_paperbasedessfile; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.Onera_paperbasedessfileChanging(value); + this._era_paperbasedessfile = value; + this.Onera_paperbasedessfileChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private string _era_paperbasedessfile; + partial void Onera_paperbasedessfileChanging(string value); + partial void Onera_paperbasedessfileChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_totalhouseholdmembers in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable era_totalhouseholdmembers { get { - return this._statecode; + return this._era_totalhouseholdmembers; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_totalhouseholdmembersChanging(value); + this._era_totalhouseholdmembers = value; + this.Onera_totalhouseholdmembersChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _era_totalhouseholdmembers; + partial void Onera_totalhouseholdmembersChanging(global::System.Nullable value); + partial void Onera_totalhouseholdmembersChanged(); /// - /// There are no comments for Property era_paperbasedessfile in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_paperbasedessfile + public virtual global::System.Nullable statecode { get { - return this._era_paperbasedessfile; + return this._statecode; } set { - this.Onera_paperbasedessfileChanging(value); - this._era_paperbasedessfile = value; - this.Onera_paperbasedessfileChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_paperbasedessfile; - partial void Onera_paperbasedessfileChanging(string value); - partial void Onera_paperbasedessfileChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property _era_registrant_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_registrant_value + public virtual global::System.Nullable exchangerate { get { - return this.__era_registrant_value; + return this._exchangerate; } set { - this.On_era_registrant_valueChanging(value); - this.__era_registrant_value = value; - this.On_era_registrant_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_registrant_value; - partial void On_era_registrant_valueChanging(global::System.Nullable value); - partial void On_era_registrant_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__transactioncurrencyid_value; + return this._overriddencreatedon; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -283218,49 +283306,49 @@ public virtual string era_paperbasedessfile partial void Onera_numberofassessments_stateChanging(global::System.Nullable value); partial void Onera_numberofassessments_stateChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property era_numberofassessments_date in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable era_numberofassessments_date { get { - return this._overriddencreatedon; + return this._era_numberofassessments_date; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onera_numberofassessments_dateChanging(value); + this._era_numberofassessments_date = value; + this.Onera_numberofassessments_dateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _era_numberofassessments_date; + partial void Onera_numberofassessments_dateChanging(global::System.Nullable value); + partial void Onera_numberofassessments_dateChanged(); /// - /// There are no comments for Property era_evacuationfiledate in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_evacuationfiledate + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._era_evacuationfiledate; + return this.__transactioncurrencyid_value; } set { - this.Onera_evacuationfiledateChanging(value); - this._era_evacuationfiledate = value; - this.Onera_evacuationfiledateChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_evacuationfiledate; - partial void Onera_evacuationfiledateChanging(global::System.Nullable value); - partial void Onera_evacuationfiledateChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property era_totalhouseholdanimals_state in the schema. /// @@ -283306,28 +283394,6 @@ public virtual string era_securityphrase partial void Onera_securityphraseChanging(string value); partial void Onera_securityphraseChanged(); /// - /// There are no comments for Property era_evacuationfileid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_evacuationfileid - { - get - { - return this._era_evacuationfileid; - } - set - { - this.Onera_evacuationfileidChanging(value); - this._era_evacuationfileid = value; - this.Onera_evacuationfileidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_evacuationfileid; - partial void Onera_evacuationfileidChanging(global::System.Nullable value); - partial void Onera_evacuationfileidChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -283350,71 +283416,49 @@ public virtual string era_securityphrase partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property era_totalhouseholdanimals in the schema. + /// There are no comments for Property era_supportstotalamountsincludingpaid_date in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalhouseholdanimals + public virtual global::System.Nullable era_supportstotalamountsincludingpaid_date { get { - return this._era_totalhouseholdanimals; + return this._era_supportstotalamountsincludingpaid_date; } set { - this.Onera_totalhouseholdanimalsChanging(value); - this._era_totalhouseholdanimals = value; - this.Onera_totalhouseholdanimalsChanged(); + this.Onera_supportstotalamountsincludingpaid_dateChanging(value); + this._era_supportstotalamountsincludingpaid_date = value; + this.Onera_supportstotalamountsincludingpaid_dateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalhouseholdanimals; - partial void Onera_totalhouseholdanimalsChanging(global::System.Nullable value); - partial void Onera_totalhouseholdanimalsChanged(); + private global::System.Nullable _era_supportstotalamountsincludingpaid_date; + partial void Onera_supportstotalamountsincludingpaid_dateChanging(global::System.Nullable value); + partial void Onera_supportstotalamountsincludingpaid_dateChanged(); /// - /// There are no comments for Property era_interviewername in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_interviewername + public virtual global::System.Nullable createdon { get { - return this._era_interviewername; + return this._createdon; } set { - this.Onera_interviewernameChanging(value); - this._era_interviewername = value; - this.Onera_interviewernameChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_interviewername; - partial void Onera_interviewernameChanging(string value); - partial void Onera_interviewernameChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property era_selfregistrationdate in the schema. /// @@ -283438,28 +283482,6 @@ public virtual string era_interviewername partial void Onera_selfregistrationdateChanging(global::System.Nullable value); partial void Onera_selfregistrationdateChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -283482,28 +283504,6 @@ public virtual string era_interviewername partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property era_hasrestriction_state in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_hasrestriction_state - { - get - { - return this._era_hasrestriction_state; - } - set - { - this.Onera_hasrestriction_stateChanging(value); - this._era_hasrestriction_state = value; - this.Onera_hasrestriction_stateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_hasrestriction_state; - partial void Onera_hasrestriction_stateChanging(global::System.Nullable value); - partial void Onera_hasrestriction_stateChanged(); - /// /// There are no comments for Property _era_evacuatedfromid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -283526,27 +283526,27 @@ public virtual string era_interviewername partial void On_era_evacuatedfromid_valueChanging(global::System.Nullable value); partial void On_era_evacuatedfromid_valueChanged(); /// - /// There are no comments for Property era_registrationcompleteddate in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_registrationcompleteddate + public virtual global::System.Nullable _owningteam_value { get { - return this._era_registrationcompleteddate; + return this.__owningteam_value; } set { - this.Onera_registrationcompleteddateChanging(value); - this._era_registrationcompleteddate = value; - this.Onera_registrationcompleteddateChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_registrationcompleteddate; - partial void Onera_registrationcompleteddateChanging(global::System.Nullable value); - partial void Onera_registrationcompleteddateChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property era_supportstotalamountsummary_base in the schema. /// @@ -283570,27 +283570,27 @@ public virtual string era_interviewername partial void Onera_supportstotalamountsummary_baseChanging(global::System.Nullable value); partial void Onera_supportstotalamountsummary_baseChanged(); /// - /// There are no comments for Property era_totalhouseholdmembers_state in the schema. + /// There are no comments for Property era_evacuationfiledate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalhouseholdmembers_state + public virtual global::System.Nullable era_evacuationfiledate { get { - return this._era_totalhouseholdmembers_state; + return this._era_evacuationfiledate; } set { - this.Onera_totalhouseholdmembers_stateChanging(value); - this._era_totalhouseholdmembers_state = value; - this.Onera_totalhouseholdmembers_stateChanged(); + this.Onera_evacuationfiledateChanging(value); + this._era_evacuationfiledate = value; + this.Onera_evacuationfiledateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalhouseholdmembers_state; - partial void Onera_totalhouseholdmembers_stateChanging(global::System.Nullable value); - partial void Onera_totalhouseholdmembers_stateChanged(); + private global::System.Nullable _era_evacuationfiledate; + partial void Onera_evacuationfiledateChanging(global::System.Nullable value); + partial void Onera_evacuationfiledateChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -283658,6 +283658,28 @@ public virtual string era_interviewername partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property era_hasrestriction_state in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_hasrestriction_state + { + get + { + return this._era_hasrestriction_state; + } + set + { + this.Onera_hasrestriction_stateChanging(value); + this._era_hasrestriction_state = value; + this.Onera_hasrestriction_stateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_hasrestriction_state; + partial void Onera_hasrestriction_stateChanging(global::System.Nullable value); + partial void Onera_hasrestriction_stateChanged(); + /// /// There are no comments for Property _era_taskid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -284801,71 +284823,71 @@ public static era_evacueeemailinvite Createera_evacueeemailinvite(global::EMBC.E partial void On_era_essteamuser_valueChanging(global::System.Nullable value); partial void On_era_essteamuser_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__owningbusinessunit_value; + return this.__ownerid_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable importsequencenumber { get { - return this._modifiedon; + return this._importsequencenumber; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._importsequencenumber; + return this.__createdonbehalfby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -284933,28 +284955,6 @@ public static era_evacueeemailinvite Createera_evacueeemailinvite(global::EMBC.E partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -284999,27 +284999,49 @@ public static era_evacueeemailinvite Createera_evacueeemailinvite(global::EMBC.E partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property era_emailaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string era_emailaddress { get { - return this.__owninguser_value; + return this._era_emailaddress; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.Onera_emailaddressChanging(value); + this._era_emailaddress = value; + this.Onera_emailaddressChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private string _era_emailaddress; + partial void Onera_emailaddressChanging(string value); + partial void Onera_emailaddressChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -285065,71 +285087,93 @@ public static era_evacueeemailinvite Createera_evacueeemailinvite(global::EMBC.E partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property era_expirydate in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_expirydate + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._era_expirydate; + return this.__owningbusinessunit_value; } set { - this.Onera_expirydateChanging(value); - this._era_expirydate = value; - this.Onera_expirydateChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_expirydate; - partial void Onera_expirydateChanging(global::System.Nullable value); - partial void Onera_expirydateChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__createdonbehalfby_value; + return this._timezoneruleversionnumber; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _owninguser_value { get { - return this._timezoneruleversionnumber; + return this.__owninguser_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property era_expirydate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_expirydate + { + get + { + return this._era_expirydate; + } + set + { + this.Onera_expirydateChanging(value); + this._era_expirydate = value; + this.Onera_expirydateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_expirydate; + partial void Onera_expirydateChanging(global::System.Nullable value); + partial void Onera_expirydateChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -285219,28 +285263,6 @@ public static era_evacueeemailinvite Createera_evacueeemailinvite(global::EMBC.E partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property era_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_name - { - get - { - return this._era_name; - } - set - { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -285263,27 +285285,27 @@ public virtual string era_name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property era_emailaddress in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_emailaddress + public virtual string era_name { get { - return this._era_emailaddress; + return this._era_name; } set { - this.Onera_emailaddressChanging(value); - this._era_emailaddress = value; - this.Onera_emailaddressChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_emailaddress; - partial void Onera_emailaddressChanging(string value); - partial void Onera_emailaddressChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -286551,27 +286573,27 @@ public static era_evacueesupport Createera_evacueesupport(global::EMBC.ESS.Utili partial void Onera_totalamountChanging(global::System.Nullable value); partial void Onera_totalamountChanged(); /// - /// There are no comments for Property era_transportmode in the schema. + /// There are no comments for Property era_approveditems in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_transportmode + public virtual string era_approveditems { get { - return this._era_transportmode; + return this._era_approveditems; } set { - this.Onera_transportmodeChanging(value); - this._era_transportmode = value; - this.Onera_transportmodeChanged(); + this.Onera_approveditemsChanging(value); + this._era_approveditems = value; + this.Onera_approveditemsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_transportmode; - partial void Onera_transportmodeChanging(string value); - partial void Onera_transportmodeChanged(); + private string _era_approveditems; + partial void Onera_approveditemsChanging(string value); + partial void Onera_approveditemsChanged(); /// /// There are no comments for Property traversedpath in the schema. /// @@ -286595,6 +286617,28 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// + /// There are no comments for Property era_paperissuedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_paperissuedby + { + get + { + return this._era_paperissuedby; + } + set + { + this.Onera_paperissuedbyChanging(value); + this._era_paperissuedby = value; + this.Onera_paperissuedbyChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_paperissuedby; + partial void Onera_paperissuedbyChanging(string value); + partial void Onera_paperissuedbyChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -286617,6 +286661,50 @@ public virtual string traversedpath partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property era_supportoverrideauthority in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_supportoverrideauthority + { + get + { + return this._era_supportoverrideauthority; + } + set + { + this.Onera_supportoverrideauthorityChanging(value); + this._era_supportoverrideauthority = value; + this.Onera_supportoverrideauthorityChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_supportoverrideauthority; + partial void Onera_supportoverrideauthorityChanging(string value); + partial void Onera_supportoverrideauthorityChanged(); + /// + /// There are no comments for Property era_selfservesupport in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_selfservesupport + { + get + { + return this._era_selfservesupport; + } + set + { + this.Onera_selfservesupportChanging(value); + this._era_selfservesupport = value; + this.Onera_selfservesupportChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_selfservesupport; + partial void Onera_selfservesupportChanging(global::System.Nullable value); + partial void Onera_selfservesupportChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -286661,28 +286749,6 @@ public virtual string traversedpath partial void Onera_numberofdinnersChanging(global::System.Nullable value); partial void Onera_numberofdinnersChanged(); /// - /// There are no comments for Property era_paperissuedby in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_paperissuedby - { - get - { - return this._era_paperissuedby; - } - set - { - this.Onera_paperissuedbyChanging(value); - this._era_paperissuedby = value; - this.Onera_paperissuedbyChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_paperissuedby; - partial void Onera_paperissuedbyChanging(string value); - partial void Onera_paperissuedbyChanged(); - /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -286705,28 +286771,6 @@ public virtual string era_paperissuedby partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property era_queuetransitiondate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_queuetransitiondate - { - get - { - return this._era_queuetransitiondate; - } - set - { - this.Onera_queuetransitiondateChanging(value); - this._era_queuetransitiondate = value; - this.Onera_queuetransitiondateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_queuetransitiondate; - partial void Onera_queuetransitiondateChanging(global::System.Nullable value); - partial void Onera_queuetransitiondateChanged(); - /// /// There are no comments for Property era_lodgingname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -286815,50 +286859,6 @@ public virtual string era_qualifiedreceivercomments partial void On_era_task_valueChanging(global::System.Nullable value); partial void On_era_task_valueChanged(); /// - /// There are no comments for Property era_totalamount_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_totalamount_base - { - get - { - return this._era_totalamount_base; - } - set - { - this.Onera_totalamount_baseChanging(value); - this._era_totalamount_base = value; - this.Onera_totalamount_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalamount_base; - partial void Onera_totalamount_baseChanging(global::System.Nullable value); - partial void Onera_totalamount_baseChanged(); - /// - /// There are no comments for Property era_supportoverrideauthority in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_supportoverrideauthority - { - get - { - return this._era_supportoverrideauthority; - } - set - { - this.Onera_supportoverrideauthorityChanging(value); - this._era_supportoverrideauthority = value; - this.Onera_supportoverrideauthorityChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_supportoverrideauthority; - partial void Onera_supportoverrideauthorityChanging(string value); - partial void Onera_supportoverrideauthorityChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -286881,27 +286881,27 @@ public virtual string era_supportoverrideauthority partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property era_evacueesupportid in the schema. + /// There are no comments for Property era_purchaserofgoods in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_evacueesupportid + public virtual string era_purchaserofgoods { get { - return this._era_evacueesupportid; + return this._era_purchaserofgoods; } set { - this.Onera_evacueesupportidChanging(value); - this._era_evacueesupportid = value; - this.Onera_evacueesupportidChanged(); + this.Onera_purchaserofgoodsChanging(value); + this._era_purchaserofgoods = value; + this.Onera_purchaserofgoodsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_evacueesupportid; - partial void Onera_evacueesupportidChanging(global::System.Nullable value); - partial void Onera_evacueesupportidChanged(); + private string _era_purchaserofgoods; + partial void Onera_purchaserofgoodsChanging(string value); + partial void Onera_purchaserofgoodsChanged(); /// /// There are no comments for Property era_numberofrooms in the schema. /// @@ -286947,49 +286947,71 @@ public virtual string era_supportoverrideauthority partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property era_lastcontactattempt in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_lastcontactattempt + public virtual global::System.Nullable createdon { get { - return this._era_lastcontactattempt; + return this._createdon; } set { - this.Onera_lastcontactattemptChanging(value); - this._era_lastcontactattempt = value; - this.Onera_lastcontactattemptChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_lastcontactattempt; - partial void Onera_lastcontactattemptChanging(global::System.Nullable value); - partial void Onera_lastcontactattemptChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property era_etransfercontactemail in the schema. + /// There are no comments for Property era_numberofdays in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_etransfercontactemail + public virtual global::System.Nullable era_numberofdays { get { - return this._era_etransfercontactemail; + return this._era_numberofdays; } set { - this.Onera_etransfercontactemailChanging(value); - this._era_etransfercontactemail = value; - this.Onera_etransfercontactemailChanged(); + this.Onera_numberofdaysChanging(value); + this._era_numberofdays = value; + this.Onera_numberofdaysChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_etransfercontactemail; - partial void Onera_etransfercontactemailChanging(string value); - partial void Onera_etransfercontactemailChanged(); + private global::System.Nullable _era_numberofdays; + partial void Onera_numberofdaysChanging(global::System.Nullable value); + partial void Onera_numberofdaysChanged(); + /// + /// There are no comments for Property era_lastcontactattempt in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_lastcontactattempt + { + get + { + return this._era_lastcontactattempt; + } + set + { + this.Onera_lastcontactattemptChanging(value); + this._era_lastcontactattempt = value; + this.Onera_lastcontactattemptChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_lastcontactattempt; + partial void Onera_lastcontactattemptChanging(global::System.Nullable value); + partial void Onera_lastcontactattemptChanged(); /// /// There are no comments for Property era_lodgingcontactnumber in the schema. /// @@ -287057,49 +287079,27 @@ public virtual string era_notificationemailaddress partial void Onera_validtoChanging(global::System.Nullable value); partial void Onera_validtoChanged(); /// - /// There are no comments for Property era_fromaddress in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_fromaddress - { - get - { - return this._era_fromaddress; - } - set - { - this.Onera_fromaddressChanging(value); - this._era_fromaddress = value; - this.Onera_fromaddressChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_fromaddress; - partial void Onera_fromaddressChanging(string value); - partial void Onera_fromaddressChanged(); - /// - /// There are no comments for Property era_approveditems in the schema. + /// There are no comments for Property era_totalamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_approveditems + public virtual global::System.Nullable era_totalamount_base { get { - return this._era_approveditems; + return this._era_totalamount_base; } set { - this.Onera_approveditemsChanging(value); - this._era_approveditems = value; - this.Onera_approveditemsChanged(); + this.Onera_totalamount_baseChanging(value); + this._era_totalamount_base = value; + this.Onera_totalamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_approveditems; - partial void Onera_approveditemsChanging(string value); - partial void Onera_approveditemsChanged(); + private global::System.Nullable _era_totalamount_base; + partial void Onera_totalamount_baseChanging(global::System.Nullable value); + partial void Onera_totalamount_baseChanged(); /// /// There are no comments for Property era_paperreferralcompletedon in the schema. /// @@ -287145,49 +287145,27 @@ public virtual string era_expenseauthoritycomments partial void Onera_expenseauthoritycommentsChanging(string value); partial void Onera_expenseauthoritycommentsChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property era_purchaserofgoods in the schema. + /// There are no comments for Property era_etransfercontactemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_purchaserofgoods + public virtual string era_etransfercontactemail { get { - return this._era_purchaserofgoods; + return this._era_etransfercontactemail; } set { - this.Onera_purchaserofgoodsChanging(value); - this._era_purchaserofgoods = value; - this.Onera_purchaserofgoodsChanged(); + this.Onera_etransfercontactemailChanging(value); + this._era_etransfercontactemail = value; + this.Onera_etransfercontactemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_purchaserofgoods; - partial void Onera_purchaserofgoodsChanging(string value); - partial void Onera_purchaserofgoodsChanged(); + private string _era_etransfercontactemail; + partial void Onera_etransfercontactemailChanging(string value); + partial void Onera_etransfercontactemailChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -287211,27 +287189,27 @@ public virtual string era_purchaserofgoods partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property era_selfservesupport in the schema. + /// There are no comments for Property era_billetinglodgingcity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_selfservesupport + public virtual string era_billetinglodgingcity { get { - return this._era_selfservesupport; + return this._era_billetinglodgingcity; } set { - this.Onera_selfservesupportChanging(value); - this._era_selfservesupport = value; - this.Onera_selfservesupportChanged(); + this.Onera_billetinglodgingcityChanging(value); + this._era_billetinglodgingcity = value; + this.Onera_billetinglodgingcityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_selfservesupport; - partial void Onera_selfservesupportChanging(global::System.Nullable value); - partial void Onera_selfservesupportChanged(); + private string _era_billetinglodgingcity; + partial void Onera_billetinglodgingcityChanging(string value); + partial void Onera_billetinglodgingcityChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -287255,50 +287233,6 @@ public virtual string era_purchaserofgoods partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property era_validfrom in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_validfrom - { - get - { - return this._era_validfrom; - } - set - { - this.Onera_validfromChanging(value); - this._era_validfrom = value; - this.Onera_validfromChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_validfrom; - partial void Onera_validfromChanging(global::System.Nullable value); - partial void Onera_validfromChanged(); - /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property era_numberofbreakfasts in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -287365,27 +287299,27 @@ public virtual string era_suppliernote partial void Onera_suppliernoteChanging(string value); partial void Onera_suppliernoteChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__transactioncurrencyid_value; + return this.__modifiedby_value; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -287409,49 +287343,49 @@ public virtual string era_suppliernote partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property era_numberofdays in the schema. + /// There are no comments for Property era_evacueesupportid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_numberofdays + public virtual global::System.Nullable era_evacueesupportid { get { - return this._era_numberofdays; + return this._era_evacueesupportid; } set { - this.Onera_numberofdaysChanging(value); - this._era_numberofdays = value; - this.Onera_numberofdaysChanged(); + this.Onera_evacueesupportidChanging(value); + this._era_evacueesupportid = value; + this.Onera_evacueesupportidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_numberofdays; - partial void Onera_numberofdaysChanging(global::System.Nullable value); - partial void Onera_numberofdaysChanged(); + private global::System.Nullable _era_evacueesupportid; + partial void Onera_evacueesupportidChanging(global::System.Nullable value); + partial void Onera_evacueesupportidChanged(); /// - /// There are no comments for Property era_queueprocessingstatus in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_queueprocessingstatus + public virtual global::System.Nullable statuscode { get { - return this._era_queueprocessingstatus; + return this._statuscode; } set { - this.Onera_queueprocessingstatusChanging(value); - this._era_queueprocessingstatus = value; - this.Onera_queueprocessingstatusChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_queueprocessingstatus; - partial void Onera_queueprocessingstatusChanging(global::System.Nullable value); - partial void Onera_queueprocessingstatusChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property era_numberofnights in the schema. /// @@ -287519,27 +287453,49 @@ public virtual string era_toaddress partial void Onera_toaddressChanging(string value); partial void Onera_toaddressChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _era_payeeid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _era_payeeid_value { get { - return this._createdon; + return this.__era_payeeid_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_era_payeeid_valueChanging(value); + this.__era_payeeid_value = value; + this.On_era_payeeid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __era_payeeid_value; + partial void On_era_payeeid_valueChanging(global::System.Nullable value); + partial void On_era_payeeid_valueChanged(); + /// + /// There are no comments for Property era_queuetransitiondate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_queuetransitiondate + { + get + { + return this._era_queuetransitiondate; + } + set + { + this.Onera_queuetransitiondateChanging(value); + this._era_queuetransitiondate = value; + this.Onera_queuetransitiondateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_queuetransitiondate; + partial void Onera_queuetransitiondateChanging(global::System.Nullable value); + partial void Onera_queuetransitiondateChanged(); /// /// There are no comments for Property era_amountoverride in the schema. /// @@ -287607,6 +287563,28 @@ public virtual string era_toaddress partial void On_era_internalqualifiedreceiver_valueChanging(global::System.Nullable value); partial void On_era_internalqualifiedreceiver_valueChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property era_lodgingaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -287695,27 +287673,49 @@ public virtual string era_manualsupport partial void Onera_manualsupportChanging(string value); partial void Onera_manualsupportChanged(); /// - /// There are no comments for Property _era_payeeid_value in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_payeeid_value + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this.__era_payeeid_value; + return this.__transactioncurrencyid_value; } set { - this.On_era_payeeid_valueChanging(value); - this.__era_payeeid_value = value; - this.On_era_payeeid_valueChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_payeeid_value; - partial void On_era_payeeid_valueChanging(global::System.Nullable value); - partial void On_era_payeeid_valueChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); + /// + /// There are no comments for Property era_validfrom in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_validfrom + { + get + { + return this._era_validfrom; + } + set + { + this.Onera_validfromChanging(value); + this._era_validfrom = value; + this.Onera_validfromChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_validfrom; + partial void Onera_validfromChanging(global::System.Nullable value); + partial void Onera_validfromChanged(); /// /// There are no comments for Property era_supporttype in the schema. /// @@ -287849,27 +287849,27 @@ public virtual string era_manualsupport partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable statecode { get { - return this.__owningbusinessunit_value; + return this._statecode; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property era_previousstatus in the schema. /// @@ -287981,27 +287981,27 @@ public virtual string era_lodgingcity partial void Onera_lodgingcityChanging(string value); partial void Onera_lodgingcityChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_transportmode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string era_transportmode { get { - return this._statecode; + return this._era_transportmode; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_transportmodeChanging(value); + this._era_transportmode = value; + this.Onera_transportmodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _era_transportmode; + partial void Onera_transportmodeChanging(string value); + partial void Onera_transportmodeChanged(); /// /// There are no comments for Property _era_evacuationfileid_value in the schema. /// @@ -288091,27 +288091,27 @@ public virtual string era_autonumber partial void Onera_numberoflunchesChanging(global::System.Nullable value); partial void Onera_numberoflunchesChanged(); /// - /// There are no comments for Property era_billetinglodgingcity in the schema. + /// There are no comments for Property era_queueprocessingstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_billetinglodgingcity + public virtual global::System.Nullable era_queueprocessingstatus { get { - return this._era_billetinglodgingcity; + return this._era_queueprocessingstatus; } set { - this.Onera_billetinglodgingcityChanging(value); - this._era_billetinglodgingcity = value; - this.Onera_billetinglodgingcityChanged(); + this.Onera_queueprocessingstatusChanging(value); + this._era_queueprocessingstatus = value; + this.Onera_queueprocessingstatusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_billetinglodgingcity; - partial void Onera_billetinglodgingcityChanging(string value); - partial void Onera_billetinglodgingcityChanged(); + private global::System.Nullable _era_queueprocessingstatus; + partial void Onera_queueprocessingstatusChanging(global::System.Nullable value); + partial void Onera_queueprocessingstatusChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -288245,6 +288245,28 @@ public virtual string era_notificationphonenumber partial void Onera_notificationphonenumberChanging(string value); partial void Onera_notificationphonenumberChanged(); /// + /// There are no comments for Property era_fromaddress in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_fromaddress + { + get + { + return this._era_fromaddress; + } + set + { + this.Onera_fromaddressChanging(value); + this._era_fromaddress = value; + this.Onera_fromaddressChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_fromaddress; + partial void Onera_fromaddressChanging(string value); + partial void Onera_fromaddressChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -289543,159 +289565,27 @@ public static era_householdmember Createera_householdmember(global::EMBC.ESS.Uti return era_householdmember; } /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable statuscode { get { - return this.__ownerid_value; + return this._statuscode; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property era_name in the schema. /// @@ -289719,115 +289609,137 @@ public virtual string era_name partial void Onera_nameChanging(string value); partial void Onera_nameChanged(); /// - /// There are no comments for Property era_isunder19 in the schema. + /// There are no comments for Property era_initials in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_isunder19 + public virtual string era_initials { get { - return this._era_isunder19; + return this._era_initials; } set { - this.Onera_isunder19Changing(value); - this._era_isunder19 = value; - this.Onera_isunder19Changed(); + this.Onera_initialsChanging(value); + this._era_initials = value; + this.Onera_initialsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_isunder19; - partial void Onera_isunder19Changing(global::System.Nullable value); - partial void Onera_isunder19Changed(); + private string _era_initials; + partial void Onera_initialsChanging(string value); + partial void Onera_initialsChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__createdby_value; + return this._importsequencenumber; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property era_householdmemberid in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_householdmemberid + public virtual global::System.Nullable _owninguser_value { get { - return this._era_householdmemberid; + return this.__owninguser_value; } set { - this.Onera_householdmemberidChanging(value); - this._era_householdmemberid = value; - this.Onera_householdmemberidChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_householdmemberid; - partial void Onera_householdmemberidChanging(global::System.Nullable value); - partial void Onera_householdmemberidChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property era_registrantrestricted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable era_registrantrestricted { get { - return this.__modifiedby_value; + return this._era_registrantrestricted; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.Onera_registrantrestrictedChanging(value); + this._era_registrantrestricted = value; + this.Onera_registrantrestrictedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _era_registrantrestricted; + partial void Onera_registrantrestrictedChanging(global::System.Nullable value); + partial void Onera_registrantrestrictedChanged(); /// - /// There are no comments for Property era_isprimaryregistrant in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_isprimaryregistrant + public virtual global::System.Nullable _owningteam_value { get { - return this._era_isprimaryregistrant; + return this.__owningteam_value; } set { - this.Onera_isprimaryregistrantChanging(value); - this._era_isprimaryregistrant = value; - this.Onera_isprimaryregistrantChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_isprimaryregistrant; - partial void Onera_isprimaryregistrantChanging(global::System.Nullable value); - partial void Onera_isprimaryregistrantChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property era_firstname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_firstname + { + get + { + return this._era_firstname; + } + set + { + this.Onera_firstnameChanging(value); + this._era_firstname = value; + this.Onera_firstnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_firstname; + partial void Onera_firstnameChanging(string value); + partial void Onera_firstnameChanged(); /// /// There are no comments for Property era_lastname in the schema. /// @@ -289851,291 +289763,379 @@ public virtual string era_lastname partial void Onera_lastnameChanging(string value); partial void Onera_lastnameChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable overriddencreatedon { get { - return this._statuscode; + return this._overriddencreatedon; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property era_isprimaryregistrant in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable era_isprimaryregistrant { get { - return this.__owningbusinessunit_value; + return this._era_isprimaryregistrant; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.Onera_isprimaryregistrantChanging(value); + this._era_isprimaryregistrant = value; + this.Onera_isprimaryregistrantChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _era_isprimaryregistrant; + partial void Onera_isprimaryregistrantChanging(global::System.Nullable value); + partial void Onera_isprimaryregistrantChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property era_dateofbirth in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable era_dateofbirth { get { - return this._importsequencenumber; + return this._era_dateofbirth; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.Onera_dateofbirthChanging(value); + this._era_dateofbirth = value; + this.Onera_dateofbirthChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _era_dateofbirth; + partial void Onera_dateofbirthChanging(global::System.Nullable value); + partial void Onera_dateofbirthChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _ownerid_value { get { - return this._overriddencreatedon; + return this.__ownerid_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property era_registrantrestricted in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_registrantrestricted + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._era_registrantrestricted; + return this.__modifiedonbehalfby_value; } set { - this.Onera_registrantrestrictedChanging(value); - this._era_registrantrestricted = value; - this.Onera_registrantrestrictedChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_registrantrestricted; - partial void Onera_registrantrestrictedChanging(global::System.Nullable value); - partial void Onera_registrantrestrictedChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property era_gender in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_gender + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._era_gender; + return this._utcconversiontimezonecode; } set { - this.Onera_genderChanging(value); - this._era_gender = value; - this.Onera_genderChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_gender; - partial void Onera_genderChanging(global::System.Nullable value); - partial void Onera_genderChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property era_firstname in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_firstname + public virtual global::System.Nullable modifiedon { get { - return this._era_firstname; + return this._modifiedon; } set { - this.Onera_firstnameChanging(value); - this._era_firstname = value; - this.Onera_firstnameChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_firstname; - partial void Onera_firstnameChanging(string value); - partial void Onera_firstnameChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property era_telephonemobile in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string era_telephonemobile { get { - return this.__owningteam_value; + return this._era_telephonemobile; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onera_telephonemobileChanging(value); + this._era_telephonemobile = value; + this.Onera_telephonemobileChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _era_telephonemobile; + partial void Onera_telephonemobileChanging(string value); + partial void Onera_telephonemobileChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _era_evacuationfileid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _era_evacuationfileid_value { get { - return this.__createdonbehalfby_value; + return this.__era_evacuationfileid_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_era_evacuationfileid_valueChanging(value); + this.__era_evacuationfileid_value = value; + this.On_era_evacuationfileid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __era_evacuationfileid_value; + partial void On_era_evacuationfileid_valueChanging(global::System.Nullable value); + partial void On_era_evacuationfileid_valueChanged(); /// - /// There are no comments for Property era_dateofbirth in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_dateofbirth + public virtual global::System.Nullable statecode { get { - return this._era_dateofbirth; + return this._statecode; } set { - this.Onera_dateofbirthChanging(value); - this._era_dateofbirth = value; - this.Onera_dateofbirthChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_dateofbirth; - partial void Onera_dateofbirthChanging(global::System.Nullable value); - partial void Onera_dateofbirthChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property _era_evacuationfileid_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_evacuationfileid_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__era_evacuationfileid_value; + return this._timezoneruleversionnumber; } set { - this.On_era_evacuationfileid_valueChanging(value); - this.__era_evacuationfileid_value = value; - this.On_era_evacuationfileid_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_evacuationfileid_value; - partial void On_era_evacuationfileid_valueChanging(global::System.Nullable value); - partial void On_era_evacuationfileid_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_isunder19 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable era_isunder19 { get { - return this._statecode; + return this._era_isunder19; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_isunder19Changing(value); + this._era_isunder19 = value; + this.Onera_isunder19Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _era_isunder19; + partial void Onera_isunder19Changing(global::System.Nullable value); + partial void Onera_isunder19Changed(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _createdby_value { get { - return this._utcconversiontimezonecode; + return this.__createdby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property era_householdmemberid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_householdmemberid + { + get + { + return this._era_householdmemberid; + } + set + { + this.Onera_householdmemberidChanging(value); + this._era_householdmemberid = value; + this.Onera_householdmemberidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_householdmemberid; + partial void Onera_householdmemberidChanging(global::System.Nullable value); + partial void Onera_householdmemberidChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property era_gender in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_gender + { + get + { + return this._era_gender; + } + set + { + this.Onera_genderChanging(value); + this._era_gender = value; + this.Onera_genderChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_gender; + partial void Onera_genderChanging(global::System.Nullable value); + partial void Onera_genderChanged(); /// /// There are no comments for Property _era_registrant_value in the schema. /// @@ -290159,27 +290159,93 @@ public virtual string era_firstname partial void On_era_registrant_valueChanging(global::System.Nullable value); partial void On_era_registrant_valueChanged(); /// - /// There are no comments for Property era_initials in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_initials + public virtual global::System.Nullable versionnumber { get { - return this._era_initials; + return this._versionnumber; } set { - this.Onera_initialsChanging(value); - this._era_initials = value; - this.Onera_initialsChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_initials; - partial void Onera_initialsChanging(string value); - partial void Onera_initialsChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property era_emailaddress in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_emailaddress + { + get + { + return this._era_emailaddress; + } + set + { + this.Onera_emailaddressChanging(value); + this._era_emailaddress = value; + this.Onera_emailaddressChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_emailaddress; + partial void Onera_emailaddressChanging(string value); + partial void Onera_emailaddressChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -291338,27 +291404,27 @@ public static era_jurisdiction Createera_jurisdiction(global::EMBC.ESS.Utilities return era_jurisdiction; } /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable statecode { get { - return this.__owningbusinessunit_value; + return this._statecode; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -291404,27 +291470,27 @@ public virtual string era_jurisdictionname partial void Onera_jurisdictionnameChanging(string value); partial void Onera_jurisdictionnameChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _era_essteamid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _era_essteamid_value { get { - return this._statecode; + return this.__era_essteamid_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_era_essteamid_valueChanging(value); + this.__era_essteamid_value = value; + this.On_era_essteamid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __era_essteamid_value; + partial void On_era_essteamid_valueChanging(global::System.Nullable value); + partial void On_era_essteamid_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -291470,27 +291536,27 @@ public virtual string era_jurisdictionname partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._importsequencenumber; + return this.__owningbusinessunit_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -291536,71 +291602,115 @@ public virtual string era_jurisdictionname partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__owningteam_value; + return this._overriddencreatedon; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _modifiedby_value { get { - return this._utcconversiontimezonecode; + return this.__modifiedby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property era_jurisdictionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable era_jurisdictionid { get { - return this.__modifiedby_value; + return this._era_jurisdictionid; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.Onera_jurisdictionidChanging(value); + this._era_jurisdictionid = value; + this.Onera_jurisdictionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _era_jurisdictionid; + partial void Onera_jurisdictionidChanging(global::System.Nullable value); + partial void Onera_jurisdictionidChanged(); + /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property _era_regionaldistrict_value in the schema. /// @@ -291668,28 +291778,6 @@ public virtual string era_jurisdictionname partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _era_essteamid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_essteamid_value - { - get - { - return this.__era_essteamid_value; - } - set - { - this.On_era_essteamid_valueChanging(value); - this.__era_essteamid_value = value; - this.On_era_essteamid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_essteamid_value; - partial void On_era_essteamid_valueChanging(global::System.Nullable value); - partial void On_era_essteamid_valueChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -291712,49 +291800,27 @@ public virtual string era_jurisdictionname partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// - /// There are no comments for Property era_jurisdictionid in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_jurisdictionid + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._era_jurisdictionid; + return this._utcconversiontimezonecode; } set { - this.Onera_jurisdictionidChanging(value); - this._era_jurisdictionid = value; - this.Onera_jurisdictionidChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_jurisdictionid; - partial void Onera_jurisdictionidChanging(global::System.Nullable value); - partial void Onera_jurisdictionidChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -293222,71 +293288,93 @@ public static era_needassessment Createera_needassessment(global::EMBC.ESS.Utili partial void On_era_jurisdictionid_valueChanging(global::System.Nullable value); partial void On_era_jurisdictionid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property era_dietaryrequirement in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable era_dietaryrequirement { get { - return this.__createdonbehalfby_value; + return this._era_dietaryrequirement; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onera_dietaryrequirementChanging(value); + this._era_dietaryrequirement = value; + this.Onera_dietaryrequirementChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _era_dietaryrequirement; + partial void Onera_dietaryrequirementChanging(global::System.Nullable value); + partial void Onera_dietaryrequirementChanged(); /// - /// There are no comments for Property era_hasinquiryreferral in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_hasinquiryreferral + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._era_hasinquiryreferral; + return this._timezoneruleversionnumber; } set { - this.Onera_hasinquiryreferralChanging(value); - this._era_hasinquiryreferral = value; - this.Onera_hasinquiryreferralChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_hasinquiryreferral; - partial void Onera_hasinquiryreferralChanging(global::System.Nullable value); - partial void Onera_hasinquiryreferralChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable statuscode { get { - return this._timezoneruleversionnumber; + return this._statuscode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property era_externalreferralsdetails in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_externalreferralsdetails + { + get + { + return this._era_externalreferralsdetails; + } + set + { + this.Onera_externalreferralsdetailsChanging(value); + this._era_externalreferralsdetails = value; + this.Onera_externalreferralsdetailsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_externalreferralsdetails; + partial void Onera_externalreferralsdetailsChanging(string value); + partial void Onera_externalreferralsdetailsChanged(); /// /// There are no comments for Property era_postalcode in the schema. /// @@ -293310,28 +293398,6 @@ public virtual string era_postalcode partial void Onera_postalcodeChanging(string value); partial void Onera_postalcodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// /// There are no comments for Property era_dietaryrequirementdetails in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -293398,49 +293464,49 @@ public virtual string era_dietaryrequirementdetails partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property era_haschildcarereferral in the schema. + /// There are no comments for Property era_canevacueeprovidetransportation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_haschildcarereferral + public virtual global::System.Nullable era_canevacueeprovidetransportation { get { - return this._era_haschildcarereferral; + return this._era_canevacueeprovidetransportation; } set { - this.Onera_haschildcarereferralChanging(value); - this._era_haschildcarereferral = value; - this.Onera_haschildcarereferralChanged(); + this.Onera_canevacueeprovidetransportationChanging(value); + this._era_canevacueeprovidetransportation = value; + this.Onera_canevacueeprovidetransportationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_haschildcarereferral; - partial void Onera_haschildcarereferralChanging(global::System.Nullable value); - partial void Onera_haschildcarereferralChanged(); + private global::System.Nullable _era_canevacueeprovidetransportation; + partial void Onera_canevacueeprovidetransportationChanging(global::System.Nullable value); + partial void Onera_canevacueeprovidetransportationChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_haschildcarereferral in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable era_haschildcarereferral { get { - return this._statecode; + return this._era_haschildcarereferral; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_haschildcarereferralChanging(value); + this._era_haschildcarereferral = value; + this.Onera_haschildcarereferralChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _era_haschildcarereferral; + partial void Onera_haschildcarereferralChanging(global::System.Nullable value); + partial void Onera_haschildcarereferralChanged(); /// /// There are no comments for Property _era_tasknumber_value in the schema. /// @@ -293486,27 +293552,49 @@ public virtual string era_registrationlocation partial void Onera_registrationlocationChanging(string value); partial void Onera_registrationlocationChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property era_hasfirstaidreferral in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable era_hasfirstaidreferral { get { - return this._statuscode; + return this._era_hasfirstaidreferral; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onera_hasfirstaidreferralChanging(value); + this._era_hasfirstaidreferral = value; + this.Onera_hasfirstaidreferralChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _era_hasfirstaidreferral; + partial void Onera_hasfirstaidreferralChanging(global::System.Nullable value); + partial void Onera_hasfirstaidreferralChanged(); + /// + /// There are no comments for Property _era_evacuationfile_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_evacuationfile_value + { + get + { + return this.__era_evacuationfile_value; + } + set + { + this.On_era_evacuationfile_valueChanging(value); + this.__era_evacuationfile_value = value; + this.On_era_evacuationfile_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_evacuationfile_value; + partial void On_era_evacuationfile_valueChanging(global::System.Nullable value); + partial void On_era_evacuationfile_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -293552,27 +293640,49 @@ public virtual string era_registrationlocation partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _era_evacuationfile_value in the schema. + /// There are no comments for Property era_canevacueeprovidelodging in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_evacuationfile_value + public virtual global::System.Nullable era_canevacueeprovidelodging { get { - return this.__era_evacuationfile_value; + return this._era_canevacueeprovidelodging; } set { - this.On_era_evacuationfile_valueChanging(value); - this.__era_evacuationfile_value = value; - this.On_era_evacuationfile_valueChanged(); + this.Onera_canevacueeprovidelodgingChanging(value); + this._era_canevacueeprovidelodging = value; + this.Onera_canevacueeprovidelodgingChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_evacuationfile_value; - partial void On_era_evacuationfile_valueChanging(global::System.Nullable value); - partial void On_era_evacuationfile_valueChanged(); + private global::System.Nullable _era_canevacueeprovidelodging; + partial void Onera_canevacueeprovidelodgingChanging(global::System.Nullable value); + partial void Onera_canevacueeprovidelodgingChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -293684,49 +293794,27 @@ public virtual string era_addressline2 partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property era_canevacueeprovidelodging in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_canevacueeprovidelodging - { - get - { - return this._era_canevacueeprovidelodging; - } - set - { - this.Onera_canevacueeprovidelodgingChanging(value); - this._era_canevacueeprovidelodging = value; - this.Onera_canevacueeprovidelodgingChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_canevacueeprovidelodging; - partial void Onera_canevacueeprovidelodgingChanging(global::System.Nullable value); - partial void Onera_canevacueeprovidelodgingChanged(); - /// - /// There are no comments for Property era_hasfirstaidreferral in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_hasfirstaidreferral + public virtual global::System.Nullable _ownerid_value { get { - return this._era_hasfirstaidreferral; + return this.__ownerid_value; } set { - this.Onera_hasfirstaidreferralChanging(value); - this._era_hasfirstaidreferral = value; - this.Onera_hasfirstaidreferralChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_hasfirstaidreferral; - partial void Onera_hasfirstaidreferralChanging(global::System.Nullable value); - partial void Onera_hasfirstaidreferralChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property era_hashealthservicesreferral in the schema. /// @@ -293772,28 +293860,6 @@ public virtual string era_addressline2 partial void Onera_haspersonalservicesreferralChanging(global::System.Nullable value); partial void Onera_haspersonalservicesreferralChanged(); /// - /// There are no comments for Property era_canevacueeprovideclothing in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_canevacueeprovideclothing - { - get - { - return this._era_canevacueeprovideclothing; - } - set - { - this.Onera_canevacueeprovideclothingChanging(value); - this._era_canevacueeprovideclothing = value; - this.Onera_canevacueeprovideclothingChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_canevacueeprovideclothing; - partial void Onera_canevacueeprovideclothingChanging(global::System.Nullable value); - partial void Onera_canevacueeprovideclothingChanged(); - /// /// There are no comments for Property _era_eligibilitycheck_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -293926,27 +293992,27 @@ public virtual string era_addressline1 partial void Onera_addressline1Changing(string value); partial void Onera_addressline1Changed(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property era_needsassessmenttype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable era_needsassessmenttype { get { - return this.__ownerid_value; + return this._era_needsassessmenttype; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.Onera_needsassessmenttypeChanging(value); + this._era_needsassessmenttype = value; + this.Onera_needsassessmenttypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _era_needsassessmenttype; + partial void Onera_needsassessmenttypeChanging(global::System.Nullable value); + partial void Onera_needsassessmenttypeChanged(); /// /// There are no comments for Property era_canevacueeprovideincidentals in the schema. /// @@ -293970,27 +294036,49 @@ public virtual string era_addressline1 partial void Onera_canevacueeprovideincidentalsChanging(global::System.Nullable value); partial void Onera_canevacueeprovideincidentalsChanged(); /// - /// There are no comments for Property era_externalreferralsdetails in the schema. + /// There are no comments for Property era_hasinquiryreferral in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_externalreferralsdetails + public virtual global::System.Nullable era_hasinquiryreferral { get { - return this._era_externalreferralsdetails; + return this._era_hasinquiryreferral; } set { - this.Onera_externalreferralsdetailsChanging(value); - this._era_externalreferralsdetails = value; - this.Onera_externalreferralsdetailsChanged(); + this.Onera_hasinquiryreferralChanging(value); + this._era_hasinquiryreferral = value; + this.Onera_hasinquiryreferralChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_externalreferralsdetails; - partial void Onera_externalreferralsdetailsChanging(string value); - partial void Onera_externalreferralsdetailsChanged(); + private global::System.Nullable _era_hasinquiryreferral; + partial void Onera_hasinquiryreferralChanging(global::System.Nullable value); + partial void Onera_hasinquiryreferralChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property era_evacuationimpacttohousehold in the schema. /// @@ -294058,49 +294146,49 @@ public virtual string era_evacuationimpacttohousehold partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property era_needsassessmenttype in the schema. + /// There are no comments for Property era_householdrecoveryplan in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_needsassessmenttype + public virtual string era_householdrecoveryplan { get { - return this._era_needsassessmenttype; + return this._era_householdrecoveryplan; } set { - this.Onera_needsassessmenttypeChanging(value); - this._era_needsassessmenttype = value; - this.Onera_needsassessmenttypeChanged(); + this.Onera_householdrecoveryplanChanging(value); + this._era_householdrecoveryplan = value; + this.Onera_householdrecoveryplanChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_needsassessmenttype; - partial void Onera_needsassessmenttypeChanging(global::System.Nullable value); - partial void Onera_needsassessmenttypeChanged(); + private string _era_householdrecoveryplan; + partial void Onera_householdrecoveryplanChanging(string value); + partial void Onera_householdrecoveryplanChanged(); /// - /// There are no comments for Property era_householdrecoveryplan in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_householdrecoveryplan + public virtual global::System.Nullable _owninguser_value { get { - return this._era_householdrecoveryplan; + return this.__owninguser_value; } set { - this.Onera_householdrecoveryplanChanging(value); - this._era_householdrecoveryplan = value; - this.Onera_householdrecoveryplanChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_householdrecoveryplan; - partial void Onera_householdrecoveryplanChanging(string value); - partial void Onera_householdrecoveryplanChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property _era_reviewedbyid_value in the schema. /// @@ -294190,27 +294278,27 @@ public virtual string era_name partial void Onera_nameChanging(string value); partial void Onera_nameChanged(); /// - /// There are no comments for Property era_canevacueeprovidetransportation in the schema. + /// There are no comments for Property era_canevacueeprovideclothing in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_canevacueeprovidetransportation + public virtual global::System.Nullable era_canevacueeprovideclothing { get { - return this._era_canevacueeprovidetransportation; + return this._era_canevacueeprovideclothing; } set { - this.Onera_canevacueeprovidetransportationChanging(value); - this._era_canevacueeprovidetransportation = value; - this.Onera_canevacueeprovidetransportationChanged(); + this.Onera_canevacueeprovideclothingChanging(value); + this._era_canevacueeprovideclothing = value; + this.Onera_canevacueeprovideclothingChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_canevacueeprovidetransportation; - partial void Onera_canevacueeprovidetransportationChanging(global::System.Nullable value); - partial void Onera_canevacueeprovidetransportationChanged(); + private global::System.Nullable _era_canevacueeprovideclothing; + partial void Onera_canevacueeprovideclothingChanging(global::System.Nullable value); + partial void Onera_canevacueeprovideclothingChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -294234,28 +294322,6 @@ public virtual string era_name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property era_dietaryrequirement in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_dietaryrequirement - { - get - { - return this._era_dietaryrequirement; - } - set - { - this.Onera_dietaryrequirementChanging(value); - this._era_dietaryrequirement = value; - this.Onera_dietaryrequirementChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_dietaryrequirement; - partial void Onera_dietaryrequirementChanging(global::System.Nullable value); - partial void Onera_dietaryrequirementChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -295428,27 +295494,27 @@ public static era_portalaccessauditlogs Createera_portalaccessauditlogs(global:: partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _createdby_value { get { - return this._createdon; + return this.__createdby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -295494,6 +295560,28 @@ public static era_portalaccessauditlogs Createera_portalaccessauditlogs(global:: partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -295626,50 +295714,6 @@ public virtual string era_name partial void On_era_essfilenumber_valueChanging(global::System.Nullable value); partial void On_era_essfilenumber_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property _era_evacueeprofile_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -295758,27 +295802,27 @@ public virtual string era_name partial void Onera_datetimeaccessedChanging(global::System.Nullable value); partial void Onera_datetimeaccessedChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _modifiedby_value { get { - return this._modifiedon; + return this.__modifiedby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _era_responder_value in the schema. /// @@ -295846,6 +295890,28 @@ public virtual string era_name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -296885,6 +296951,28 @@ public static era_portalbanner Createera_portalbanner(global::EMBC.ESS.Utilities partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property era_enddisplaydate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -296907,6 +296995,50 @@ public static era_portalbanner Createera_portalbanner(global::EMBC.ESS.Utilities partial void Onera_enddisplaydateChanging(global::System.Nullable value); partial void Onera_enddisplaydateChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property era_startdisplaydate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -296951,93 +297083,49 @@ public static era_portalbanner Createera_portalbanner(global::EMBC.ESS.Utilities partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._timezoneruleversionnumber; + return this.__modifiedonbehalfby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__createdby_value; + return this._utcconversiontimezonecode; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -297215,28 +297303,6 @@ public virtual string era_content partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -298406,28 +298472,6 @@ public virtual string era_code partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -298472,6 +298516,28 @@ public virtual string era_code partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -298494,6 +298560,28 @@ public virtual string era_code partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -298560,28 +298648,6 @@ public virtual string era_code partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -299740,49 +299806,27 @@ public static era_referralprint Createera_referralprint(global::EMBC.ESS.Utiliti partial void On_era_essfileid_valueChanging(global::System.Nullable value); partial void On_era_essfileid_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable overriddencreatedon { get { - return this._timezoneruleversionnumber; + return this._overriddencreatedon; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -299828,71 +299872,49 @@ public virtual string era_reprintreason partial void Onera_reprintreasonChanging(string value); partial void Onera_reprintreasonChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property era_includedsummary in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_includedsummary + public virtual global::System.Nullable _createdby_value { get { - return this._era_includedsummary; + return this.__createdby_value; } set { - this.Onera_includedsummaryChanging(value); - this._era_includedsummary = value; - this.Onera_includedsummaryChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_includedsummary; - partial void Onera_includedsummaryChanging(global::System.Nullable value); - partial void Onera_includedsummaryChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__ownerid_value; + return this.__owningbusinessunit_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -299916,49 +299938,71 @@ public virtual string era_reprintreason partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual string era_name { get { - return this.__owningbusinessunit_value; + return this._era_name; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._overriddencreatedon; + return this._timezoneruleversionnumber; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -300004,27 +300048,27 @@ public virtual string era_reprintreason partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable statuscode { get { - return this._era_name; + return this._statuscode; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -300048,115 +300092,137 @@ public virtual string era_name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable modifiedon { get { - return this._statuscode; + return this._modifiedon; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property era_includedsummary in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable era_includedsummary { get { - return this._importsequencenumber; + return this._era_includedsummary; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.Onera_includedsummaryChanging(value); + this._era_includedsummary = value; + this.Onera_includedsummaryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _era_includedsummary; + partial void Onera_includedsummaryChanging(global::System.Nullable value); + partial void Onera_includedsummaryChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property era_type in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable era_type { get { - return this._modifiedon; + return this._era_type; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.Onera_typeChanging(value); + this._era_type = value; + this.Onera_typeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _era_type; + partial void Onera_typeChanging(global::System.Nullable value); + partial void Onera_typeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__modifiedonbehalfby_value; + return this.__ownerid_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property era_type in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_type + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._era_type; + return this._utcconversiontimezonecode; } set { - this.Onera_typeChanging(value); - this._era_type = value; - this.Onera_typeChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_type; - partial void Onera_typeChanging(global::System.Nullable value); - partial void Onera_typeChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -301118,27 +301184,27 @@ public static era_referral Createera_referral(global::EMBC.ESS.Utilities.Dynamic return era_referral; } /// - /// There are no comments for Property era_approvedtotalamount_base in the schema. + /// There are no comments for Property era_totalgst_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_approvedtotalamount_base + public virtual global::System.Nullable era_totalgst_base { get { - return this._era_approvedtotalamount_base; + return this._era_totalgst_base; } set { - this.Onera_approvedtotalamount_baseChanging(value); - this._era_approvedtotalamount_base = value; - this.Onera_approvedtotalamount_baseChanged(); + this.Onera_totalgst_baseChanging(value); + this._era_totalgst_base = value; + this.Onera_totalgst_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_approvedtotalamount_base; - partial void Onera_approvedtotalamount_baseChanging(global::System.Nullable value); - partial void Onera_approvedtotalamount_baseChanged(); + private global::System.Nullable _era_totalgst_base; + partial void Onera_totalgst_baseChanging(global::System.Nullable value); + partial void Onera_totalgst_baseChanged(); /// /// There are no comments for Property era_referralnumber in the schema. /// @@ -301206,28 +301272,6 @@ public virtual string era_tasknumber partial void Onera_tasknumberChanging(string value); partial void Onera_tasknumberChanged(); /// - /// There are no comments for Property era_approvedtotalamount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_approvedtotalamount - { - get - { - return this._era_approvedtotalamount; - } - set - { - this.Onera_approvedtotalamountChanging(value); - this._era_approvedtotalamount = value; - this.Onera_approvedtotalamountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_approvedtotalamount; - partial void Onera_approvedtotalamountChanging(global::System.Nullable value); - partial void Onera_approvedtotalamountChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -301272,28 +301316,6 @@ public virtual string era_tasknumber partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property era_invoicereference in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_invoicereference - { - get - { - return this._era_invoicereference; - } - set - { - this.Onera_invoicereferenceChanging(value); - this._era_invoicereference = value; - this.Onera_invoicereferenceChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_invoicereference; - partial void Onera_invoicereferenceChanging(string value); - partial void Onera_invoicereferenceChanged(); - /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -301360,6 +301382,28 @@ public virtual string era_invoicereference partial void Onera_referralidChanging(global::System.Nullable value); partial void Onera_referralidChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property era_totalgst in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -301404,49 +301448,49 @@ public virtual string era_submissionreference partial void Onera_submissionreferenceChanging(string value); partial void Onera_submissionreferenceChanged(); /// - /// There are no comments for Property era_totalamount in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalamount + public virtual global::System.Nullable importsequencenumber { get { - return this._era_totalamount; + return this._importsequencenumber; } set { - this.Onera_totalamountChanging(value); - this._era_totalamount = value; - this.Onera_totalamountChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalamount; - partial void Onera_totalamountChanging(global::System.Nullable value); - partial void Onera_totalamountChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable statecode { get { - return this._importsequencenumber; + return this._statecode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property era_totalamount_base in the schema. /// @@ -301492,28 +301536,6 @@ public virtual string era_submissionreference partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -301536,49 +301558,27 @@ public virtual string era_submissionreference partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property exchangerate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable exchangerate - { - get - { - return this._exchangerate; - } - set - { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); - /// - /// There are no comments for Property era_totalgst_base in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalgst_base + public virtual global::System.Nullable createdon { get { - return this._era_totalgst_base; + return this._createdon; } set { - this.Onera_totalgst_baseChanging(value); - this._era_totalgst_base = value; - this.Onera_totalgst_baseChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalgst_base; - partial void Onera_totalgst_baseChanging(global::System.Nullable value); - partial void Onera_totalgst_baseChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property era_partiallyapproved in the schema. /// @@ -301602,27 +301602,27 @@ public virtual string era_submissionreference partial void Onera_partiallyapprovedChanging(global::System.Nullable value); partial void Onera_partiallyapprovedChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property era_approvedtotalamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable era_approvedtotalamount_base { get { - return this.__ownerid_value; + return this._era_approvedtotalamount_base; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.Onera_approvedtotalamount_baseChanging(value); + this._era_approvedtotalamount_base = value; + this.Onera_approvedtotalamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _era_approvedtotalamount_base; + partial void Onera_approvedtotalamount_baseChanging(global::System.Nullable value); + partial void Onera_approvedtotalamount_baseChanged(); /// /// There are no comments for Property _era_relatedsupplierinvoice_value in the schema. /// @@ -301646,6 +301646,28 @@ public virtual string era_submissionreference partial void On_era_relatedsupplierinvoice_valueChanging(global::System.Nullable value); partial void On_era_relatedsupplierinvoice_valueChanged(); /// + /// There are no comments for Property era_approvedtotalamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_approvedtotalamount + { + get + { + return this._era_approvedtotalamount; + } + set + { + this.Onera_approvedtotalamountChanging(value); + this._era_approvedtotalamount = value; + this.Onera_approvedtotalamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_approvedtotalamount; + partial void Onera_approvedtotalamountChanging(global::System.Nullable value); + partial void Onera_approvedtotalamountChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -301668,6 +301690,50 @@ public virtual string era_submissionreference partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -301712,27 +301778,27 @@ public virtual string era_submissionreference partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property era_totalamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable era_totalamount { get { - return this.__createdonbehalfby_value; + return this._era_totalamount; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onera_totalamountChanging(value); + this._era_totalamount = value; + this.Onera_totalamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _era_totalamount; + partial void Onera_totalamountChanging(global::System.Nullable value); + partial void Onera_totalamountChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -301800,27 +301866,27 @@ public virtual string era_submissionreference partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_invoicereference in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string era_invoicereference { get { - return this._statecode; + return this._era_invoicereference; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_invoicereferenceChanging(value); + this._era_invoicereference = value; + this.Onera_invoicereferenceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _era_invoicereference; + partial void Onera_invoicereferenceChanging(string value); + partial void Onera_invoicereferenceChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -302671,6 +302737,28 @@ public static era_regionaldistrict Createera_regionaldistrict(global::EMBC.ESS.U return era_regionaldistrict; } /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -302715,6 +302803,28 @@ public static era_regionaldistrict Createera_regionaldistrict(global::EMBC.ESS.U partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -302803,50 +302913,6 @@ public static era_regionaldistrict Createera_regionaldistrict(global::EMBC.ESS.U partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -302869,28 +302935,6 @@ public static era_regionaldistrict Createera_regionaldistrict(global::EMBC.ESS.U partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -302935,49 +302979,49 @@ public static era_regionaldistrict Createera_regionaldistrict(global::EMBC.ESS.U partial void Onera_regionaldistrictidChanging(global::System.Nullable value); partial void Onera_regionaldistrictidChanged(); /// - /// There are no comments for Property _era_embcregion_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_embcregion_value + public virtual global::System.Nullable createdon { get { - return this.__era_embcregion_value; + return this._createdon; } set { - this.On_era_embcregion_valueChanging(value); - this.__era_embcregion_value = value; - this.On_era_embcregion_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_embcregion_value; - partial void On_era_embcregion_valueChanging(global::System.Nullable value); - partial void On_era_embcregion_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _era_embcregion_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _era_embcregion_value { get { - return this.__modifiedonbehalfby_value; + return this.__era_embcregion_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_era_embcregion_valueChanging(value); + this.__era_embcregion_value = value; + this.On_era_embcregion_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __era_embcregion_value; + partial void On_era_embcregion_valueChanging(global::System.Nullable value); + partial void On_era_embcregion_valueChanged(); /// /// There are no comments for Property era_districtname in the schema. /// @@ -303001,6 +303045,28 @@ public virtual string era_districtname partial void Onera_districtnameChanging(string value); partial void Onera_districtnameChanged(); /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -303878,6 +303944,28 @@ public static era_selfservesupportlimits Createera_selfservesupportlimits(global return era_selfservesupportlimits; } /// + /// There are no comments for Property _era_supporttype_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_supporttype_value + { + get + { + return this.__era_supporttype_value; + } + set + { + this.On_era_supporttype_valueChanging(value); + this.__era_supporttype_value = value; + this.On_era_supporttype_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_supporttype_value; + partial void On_era_supporttype_valueChanging(global::System.Nullable value); + partial void On_era_supporttype_valueChanged(); + /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -303922,6 +304010,28 @@ public static era_selfservesupportlimits Createera_selfservesupportlimits(global partial void Onera_dollarlimitChanging(global::System.Nullable value); partial void Onera_dollarlimitChanged(); /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// /// There are no comments for Property era_taskstartdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -303966,71 +304076,71 @@ public static era_selfservesupportlimits Createera_selfservesupportlimits(global partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable statuscode { get { - return this.__owningbusinessunit_value; + return this._statuscode; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property era_supportlimitenddatedefault in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable era_supportlimitenddatedefault { get { - return this.__owningteam_value; + return this._era_supportlimitenddatedefault; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onera_supportlimitenddatedefaultChanging(value); + this._era_supportlimitenddatedefault = value; + this.Onera_supportlimitenddatedefaultChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _era_supportlimitenddatedefault; + partial void Onera_supportlimitenddatedefaultChanging(global::System.Nullable value); + partial void Onera_supportlimitenddatedefaultChanged(); /// - /// There are no comments for Property era_supportlimitenddatedefault in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_supportlimitenddatedefault + public virtual global::System.Nullable _owningteam_value { get { - return this._era_supportlimitenddatedefault; + return this.__owningteam_value; } set { - this.Onera_supportlimitenddatedefaultChanging(value); - this._era_supportlimitenddatedefault = value; - this.Onera_supportlimitenddatedefaultChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_supportlimitenddatedefault; - partial void Onera_supportlimitenddatedefaultChanging(global::System.Nullable value); - partial void Onera_supportlimitenddatedefaultChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -304076,50 +304186,6 @@ public static era_selfservesupportlimits Createera_selfservesupportlimits(global partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _era_task_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_task_value - { - get - { - return this.__era_task_value; - } - set - { - this.On_era_task_valueChanging(value); - this.__era_task_value = value; - this.On_era_task_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_task_value; - partial void On_era_task_valueChanging(global::System.Nullable value); - partial void On_era_task_valueChanged(); - /// - /// There are no comments for Property era_supportlimitstartdate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_supportlimitstartdate - { - get - { - return this._era_supportlimitstartdate; - } - set - { - this.Onera_supportlimitstartdateChanging(value); - this._era_supportlimitstartdate = value; - this.Onera_supportlimitstartdateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_supportlimitstartdate; - partial void Onera_supportlimitstartdateChanging(global::System.Nullable value); - partial void Onera_supportlimitstartdateChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -304142,137 +304208,137 @@ public static era_selfservesupportlimits Createera_selfservesupportlimits(global partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property era_supportlimitstartdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable era_supportlimitstartdate { get { - return this.__modifiedonbehalfby_value; + return this._era_supportlimitstartdate; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onera_supportlimitstartdateChanging(value); + this._era_supportlimitstartdate = value; + this.Onera_supportlimitstartdateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _era_supportlimitstartdate; + partial void Onera_supportlimitstartdateChanging(global::System.Nullable value); + partial void Onera_supportlimitstartdateChanged(); /// - /// There are no comments for Property _era_supporttype_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_supporttype_value + public virtual global::System.Nullable createdon { get { - return this.__era_supporttype_value; + return this._createdon; } set { - this.On_era_supporttype_valueChanging(value); - this.__era_supporttype_value = value; - this.On_era_supporttype_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_supporttype_value; - partial void On_era_supporttype_valueChanging(global::System.Nullable value); - partial void On_era_supporttype_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable modifiedon { get { - return this._era_name; + return this._modifiedon; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string era_name { get { - return this._timezoneruleversionnumber; + return this._era_name; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _era_task_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _era_task_value { get { - return this._statuscode; + return this.__era_task_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_era_task_valueChanging(value); + this.__era_task_value = value; + this.On_era_task_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __era_task_value; + partial void On_era_task_valueChanging(global::System.Nullable value); + partial void On_era_task_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property era_dollarlimit_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable era_dollarlimit_base { get { - return this._modifiedon; + return this._era_dollarlimit_base; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.Onera_dollarlimit_baseChanging(value); + this._era_dollarlimit_base = value; + this.Onera_dollarlimit_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _era_dollarlimit_base; + partial void Onera_dollarlimit_baseChanging(global::System.Nullable value); + partial void Onera_dollarlimit_baseChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -304296,27 +304362,71 @@ public virtual string era_name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property era_dollarlimit_base in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_dollarlimit_base + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._era_dollarlimit_base; + return this.__modifiedonbehalfby_value; } set { - this.Onera_dollarlimit_baseChanging(value); - this._era_dollarlimit_base = value; - this.Onera_dollarlimit_baseChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_dollarlimit_base; - partial void Onera_dollarlimit_baseChanging(global::System.Nullable value); - partial void Onera_dollarlimit_baseChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property era_supportlimitenddate in the schema. /// @@ -304384,27 +304494,27 @@ public virtual string era_name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property era_taskenddate in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_taskenddate + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._era_taskenddate; + return this.__createdonbehalfby_value; } set { - this.Onera_taskenddateChanging(value); - this._era_taskenddate = value; - this.Onera_taskenddateChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_taskenddate; - partial void Onera_taskenddateChanging(global::System.Nullable value); - partial void Onera_taskenddateChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property era_supporttypeoption in the schema. /// @@ -304472,28 +304582,6 @@ public virtual string era_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property era_extensionavailable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -304516,49 +304604,27 @@ public virtual string era_name partial void Onera_extensionavailableChanging(global::System.Nullable value); partial void Onera_extensionavailableChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property era_taskenddate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable era_taskenddate { get { - return this.__owninguser_value; + return this._era_taskenddate; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.Onera_taskenddateChanging(value); + this._era_taskenddate = value; + this.Onera_taskenddateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _era_taskenddate; + partial void Onera_taskenddateChanging(global::System.Nullable value); + partial void Onera_taskenddateChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -305661,28 +305727,6 @@ public static era_suppliercontact Createera_suppliercontact(global::EMBC.ESS.Uti return era_suppliercontact; } /// - /// There are no comments for Property era_contacttype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_contacttype - { - get - { - return this._era_contacttype; - } - set - { - this.Onera_contacttypeChanging(value); - this._era_contacttype = value; - this.Onera_contacttypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_contacttype; - partial void Onera_contacttypeChanging(global::System.Nullable value); - partial void Onera_contacttypeChanged(); - /// /// There are no comments for Property _era_relatedsupplier_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -305705,6 +305749,50 @@ public static era_suppliercontact Createera_suppliercontact(global::EMBC.ESS.Uti partial void On_era_relatedsupplier_valueChanging(global::System.Nullable value); partial void On_era_relatedsupplier_valueChanged(); /// + /// There are no comments for Property era_contacttype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_contacttype + { + get + { + return this._era_contacttype; + } + set + { + this.Onera_contacttypeChanging(value); + this._era_contacttype = value; + this.Onera_contacttypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_contacttype; + partial void Onera_contacttypeChanging(global::System.Nullable value); + partial void Onera_contacttypeChanged(); + /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property era_firstname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -305749,71 +305837,71 @@ public virtual string emailaddress partial void OnemailaddressChanging(string value); partial void OnemailaddressChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._versionnumber; + return this._timezoneruleversionnumber; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable versionnumber { get { - return this._overriddencreatedon; + return this._versionnumber; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable statuscode { get { - return this._timezoneruleversionnumber; + return this._statuscode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -305859,27 +305947,71 @@ public virtual string era_fax partial void Onera_faxChanging(string value); partial void Onera_faxChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable statecode { get { - return this.__modifiedby_value; + return this._statecode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property era_workphone in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_workphone + { + get + { + return this._era_workphone; + } + set + { + this.Onera_workphoneChanging(value); + this._era_workphone = value; + this.Onera_workphoneChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_workphone; + partial void Onera_workphoneChanging(string value); + partial void Onera_workphoneChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -305991,27 +306123,27 @@ public virtual string era_preferredname partial void Onera_suppliercontactidChanging(global::System.Nullable value); partial void Onera_suppliercontactidChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__createdonbehalfby_value; + return this.__modifiedby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property era_homephone in the schema. /// @@ -306057,50 +306189,6 @@ public virtual string era_contactnumber partial void Onera_contactnumberChanging(string value); partial void Onera_contactnumberChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -306123,27 +306211,27 @@ public virtual string era_contactnumber partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property era_workphone in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_workphone + public virtual global::System.Nullable _organizationid_value { get { - return this._era_workphone; + return this.__organizationid_value; } set { - this.Onera_workphoneChanging(value); - this._era_workphone = value; - this.Onera_workphoneChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_workphone; - partial void Onera_workphoneChanging(string value); - partial void Onera_workphoneChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property era_lastname in the schema. /// @@ -306167,28 +306255,6 @@ public virtual string era_lastname partial void Onera_lastnameChanging(string value); partial void Onera_lastnameChanged(); /// - /// There are no comments for Property era_cellularphone in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_cellularphone - { - get - { - return this._era_cellularphone; - } - set - { - this.Onera_cellularphoneChanging(value); - this._era_cellularphone = value; - this.Onera_cellularphoneChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_cellularphone; - partial void Onera_cellularphoneChanging(string value); - partial void Onera_cellularphoneChanged(); - /// /// There are no comments for Property era_homeaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -306211,49 +306277,49 @@ public virtual string era_homeaddress partial void Onera_homeaddressChanging(string value); partial void Onera_homeaddressChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_cellularphone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string era_cellularphone { get { - return this._statecode; + return this._era_cellularphone; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_cellularphoneChanging(value); + this._era_cellularphone = value; + this.Onera_cellularphoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _era_cellularphone; + partial void Onera_cellularphoneChanging(string value); + partial void Onera_cellularphoneChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._statuscode; + return this.__createdonbehalfby_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -307872,49 +307938,27 @@ public static era_supplierinvoice Createera_supplierinvoice(global::EMBC.ESS.Uti partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property era_totalgst in the schema. + /// There are no comments for Property era_contactemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalgst + public virtual string era_contactemail { get { - return this._era_totalgst; + return this._era_contactemail; } set { - this.Onera_totalgstChanging(value); - this._era_totalgst = value; - this.Onera_totalgstChanged(); + this.Onera_contactemailChanging(value); + this._era_contactemail = value; + this.Onera_contactemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalgst; - partial void Onera_totalgstChanging(global::System.Nullable value); - partial void Onera_totalgstChanged(); + private string _era_contactemail; + partial void Onera_contactemailChanging(string value); + partial void Onera_contactemailChanged(); /// /// There are no comments for Property era_invoicenumber in the schema. /// @@ -308026,93 +308070,93 @@ public virtual string era_country partial void Onera_countryChanging(string value); partial void Onera_countryChanged(); /// - /// There are no comments for Property era_addressline2 in the schema. + /// There are no comments for Property era_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_addressline2 + public virtual string era_city { get { - return this._era_addressline2; + return this._era_city; } set { - this.Onera_addressline2Changing(value); - this._era_addressline2 = value; - this.Onera_addressline2Changed(); + this.Onera_cityChanging(value); + this._era_city = value; + this.Onera_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_addressline2; - partial void Onera_addressline2Changing(string value); - partial void Onera_addressline2Changed(); + private string _era_city; + partial void Onera_cityChanging(string value); + partial void Onera_cityChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property era_addressline2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual string era_addressline2 { get { - return this._createdon; + return this._era_addressline2; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.Onera_addressline2Changing(value); + this._era_addressline2 = value; + this.Onera_addressline2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private string _era_addressline2; + partial void Onera_addressline2Changing(string value); + partial void Onera_addressline2Changed(); /// - /// There are no comments for Property era_gstnumber in the schema. + /// There are no comments for Property era_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_gstnumber + public virtual string era_postalcode { get { - return this._era_gstnumber; + return this._era_postalcode; } set { - this.Onera_gstnumberChanging(value); - this._era_gstnumber = value; - this.Onera_gstnumberChanged(); + this.Onera_postalcodeChanging(value); + this._era_postalcode = value; + this.Onera_postalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_gstnumber; - partial void Onera_gstnumberChanging(string value); - partial void Onera_gstnumberChanged(); + private string _era_postalcode; + partial void Onera_postalcodeChanging(string value); + partial void Onera_postalcodeChanged(); /// - /// There are no comments for Property era_postalcode in the schema. + /// There are no comments for Property era_addressline1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_postalcode + public virtual string era_addressline1 { get { - return this._era_postalcode; + return this._era_addressline1; } set { - this.Onera_postalcodeChanging(value); - this._era_postalcode = value; - this.Onera_postalcodeChanged(); + this.Onera_addressline1Changing(value); + this._era_addressline1 = value; + this.Onera_addressline1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_postalcode; - partial void Onera_postalcodeChanging(string value); - partial void Onera_postalcodeChanged(); + private string _era_addressline1; + partial void Onera_addressline1Changing(string value); + partial void Onera_addressline1Changed(); /// /// There are no comments for Property era_supplierinvoiceid in the schema. /// @@ -308158,71 +308202,93 @@ public virtual string era_postalcode partial void On_era_sendpaymenttosupplier_valueChanging(global::System.Nullable value); partial void On_era_sendpaymenttosupplier_valueChanged(); /// - /// There are no comments for Property era_contactfax in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_contactfax + public virtual global::System.Nullable exchangerate { get { - return this._era_contactfax; + return this._exchangerate; } set { - this.Onera_contactfaxChanging(value); - this._era_contactfax = value; - this.Onera_contactfaxChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_contactfax; - partial void Onera_contactfaxChanging(string value); - partial void Onera_contactfaxChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// - /// There are no comments for Property era_totalinvoiceamount_base in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalinvoiceamount_base + public virtual global::System.Nullable statecode { get { - return this._era_totalinvoiceamount_base; + return this._statecode; } set { - this.Onera_totalinvoiceamount_baseChanging(value); - this._era_totalinvoiceamount_base = value; - this.Onera_totalinvoiceamount_baseChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalinvoiceamount_base; - partial void Onera_totalinvoiceamount_baseChanging(global::System.Nullable value); - partial void Onera_totalinvoiceamount_baseChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property era_storenumber in the schema. + /// There are no comments for Property _era_province_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_storenumber + public virtual global::System.Nullable _era_province_value { get { - return this._era_storenumber; + return this.__era_province_value; } set { - this.Onera_storenumberChanging(value); - this._era_storenumber = value; - this.Onera_storenumberChanged(); + this.On_era_province_valueChanging(value); + this.__era_province_value = value; + this.On_era_province_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_storenumber; - partial void Onera_storenumberChanging(string value); - partial void Onera_storenumberChanged(); + private global::System.Nullable __era_province_value; + partial void On_era_province_valueChanging(global::System.Nullable value); + partial void On_era_province_valueChanged(); + /// + /// There are no comments for Property era_invoicetype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_invoicetype + { + get + { + return this._era_invoicetype; + } + set + { + this.Onera_invoicetypeChanging(value); + this._era_invoicetype = value; + this.Onera_invoicetypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_invoicetype; + partial void Onera_invoicetypeChanging(global::System.Nullable value); + partial void Onera_invoicetypeChanged(); /// /// There are no comments for Property era_documentnumber in the schema. /// @@ -308246,49 +308312,93 @@ public virtual string era_documentnumber partial void Onera_documentnumberChanging(string value); partial void Onera_documentnumberChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property era_gstnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string era_gstnumber { get { - return this.__owninguser_value; + return this._era_gstnumber; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.Onera_gstnumberChanging(value); + this._era_gstnumber = value; + this.Onera_gstnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private string _era_gstnumber; + partial void Onera_gstnumberChanging(string value); + partial void Onera_gstnumberChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property era_totalinvoiceamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable era_totalinvoiceamount_base { get { - return this._exchangerate; + return this._era_totalinvoiceamount_base; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.Onera_totalinvoiceamount_baseChanging(value); + this._era_totalinvoiceamount_base = value; + this.Onera_totalinvoiceamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _era_totalinvoiceamount_base; + partial void Onera_totalinvoiceamount_baseChanging(global::System.Nullable value); + partial void Onera_totalinvoiceamount_baseChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property era_contactlastname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_contactlastname + { + get + { + return this._era_contactlastname; + } + set + { + this.Onera_contactlastnameChanging(value); + this._era_contactlastname = value; + this.Onera_contactlastnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_contactlastname; + partial void Onera_contactlastnameChanging(string value); + partial void Onera_contactlastnameChanged(); /// /// There are no comments for Property era_supplierlegalname in the schema. /// @@ -308378,27 +308488,49 @@ public virtual string era_contactnumber partial void On_era_esstask_valueChanging(global::System.Nullable value); partial void On_era_esstask_valueChanged(); /// - /// There are no comments for Property _era_relatedsupplier_value in the schema. + /// There are no comments for Property era_remitcountry in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_relatedsupplier_value + public virtual string era_remitcountry { get { - return this.__era_relatedsupplier_value; + return this._era_remitcountry; } set { - this.On_era_relatedsupplier_valueChanging(value); - this.__era_relatedsupplier_value = value; - this.On_era_relatedsupplier_valueChanged(); + this.Onera_remitcountryChanging(value); + this._era_remitcountry = value; + this.Onera_remitcountryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_relatedsupplier_value; - partial void On_era_relatedsupplier_valueChanging(global::System.Nullable value); - partial void On_era_relatedsupplier_valueChanged(); + private string _era_remitcountry; + partial void Onera_remitcountryChanging(string value); + partial void Onera_remitcountryChanged(); + /// + /// There are no comments for Property _era_relatedjurisdiction_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_relatedjurisdiction_value + { + get + { + return this.__era_relatedjurisdiction_value; + } + set + { + this.On_era_relatedjurisdiction_valueChanging(value); + this.__era_relatedjurisdiction_value = value; + this.On_era_relatedjurisdiction_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_relatedjurisdiction_value; + partial void On_era_relatedjurisdiction_valueChanging(global::System.Nullable value); + partial void On_era_relatedjurisdiction_valueChanged(); /// /// There are no comments for Property era_event in the schema. /// @@ -308444,27 +308576,49 @@ public virtual string era_event partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property era_remitaddress1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string era_remitaddress1 { get { - return this.__owningteam_value; + return this._era_remitaddress1; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onera_remitaddress1Changing(value); + this._era_remitaddress1 = value; + this.Onera_remitaddress1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _era_remitaddress1; + partial void Onera_remitaddress1Changing(string value); + partial void Onera_remitaddress1Changed(); + /// + /// There are no comments for Property era_remittancemessage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_remittancemessage + { + get + { + return this._era_remittancemessage; + } + set + { + this.Onera_remittancemessageChanging(value); + this._era_remittancemessage = value; + this.Onera_remittancemessageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_remittancemessage; + partial void Onera_remittancemessageChanging(string value); + partial void Onera_remittancemessageChanged(); /// /// There are no comments for Property era_remitpaymenttootherbusiness in the schema. /// @@ -308488,115 +308642,115 @@ public virtual string era_event partial void Onera_remitpaymenttootherbusinessChanging(global::System.Nullable value); partial void Onera_remitpaymenttootherbusinessChanged(); /// - /// There are no comments for Property era_totalgst_base in the schema. + /// There are no comments for Property era_totalgst in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_totalgst_base + public virtual global::System.Nullable era_totalgst { get { - return this._era_totalgst_base; + return this._era_totalgst; } set { - this.Onera_totalgst_baseChanging(value); - this._era_totalgst_base = value; - this.Onera_totalgst_baseChanged(); + this.Onera_totalgstChanging(value); + this._era_totalgst = value; + this.Onera_totalgstChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_totalgst_base; - partial void Onera_totalgst_baseChanging(global::System.Nullable value); - partial void Onera_totalgst_baseChanged(); + private global::System.Nullable _era_totalgst; + partial void Onera_totalgstChanging(global::System.Nullable value); + partial void Onera_totalgstChanged(); /// - /// There are no comments for Property _era_relatedjurisdiction_value in the schema. + /// There are no comments for Property era_totalgst_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_relatedjurisdiction_value + public virtual global::System.Nullable era_totalgst_base { get { - return this.__era_relatedjurisdiction_value; + return this._era_totalgst_base; } set { - this.On_era_relatedjurisdiction_valueChanging(value); - this.__era_relatedjurisdiction_value = value; - this.On_era_relatedjurisdiction_valueChanged(); + this.Onera_totalgst_baseChanging(value); + this._era_totalgst_base = value; + this.Onera_totalgst_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_relatedjurisdiction_value; - partial void On_era_relatedjurisdiction_valueChanging(global::System.Nullable value); - partial void On_era_relatedjurisdiction_valueChanged(); + private global::System.Nullable _era_totalgst_base; + partial void Onera_totalgst_baseChanging(global::System.Nullable value); + partial void Onera_totalgst_baseChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _modifiedby_value { get { - return this._versionnumber; + return this.__modifiedby_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _era_province_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _era_province_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__era_province_value; + return this._timezoneruleversionnumber; } set { - this.On_era_province_valueChanging(value); - this.__era_province_value = value; - this.On_era_province_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_province_value; - partial void On_era_province_valueChanging(global::System.Nullable value); - partial void On_era_province_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property era_supplierinvoicenumber in the schema. + /// There are no comments for Property era_storenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_supplierinvoicenumber + public virtual string era_storenumber { get { - return this._era_supplierinvoicenumber; + return this._era_storenumber; } set { - this.Onera_supplierinvoicenumberChanging(value); - this._era_supplierinvoicenumber = value; - this.Onera_supplierinvoicenumberChanged(); + this.Onera_storenumberChanging(value); + this._era_storenumber = value; + this.Onera_storenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_supplierinvoicenumber; - partial void Onera_supplierinvoicenumberChanging(string value); - partial void Onera_supplierinvoicenumberChanged(); + private string _era_storenumber; + partial void Onera_storenumberChanging(string value); + partial void Onera_storenumberChanged(); /// /// There are no comments for Property era_referralno in the schema. /// @@ -308620,28 +308774,6 @@ public virtual string era_referralno partial void Onera_referralnoChanging(string value); partial void Onera_referralnoChanged(); /// - /// There are no comments for Property era_invoicetype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_invoicetype - { - get - { - return this._era_invoicetype; - } - set - { - this.Onera_invoicetypeChanging(value); - this._era_invoicetype = value; - this.Onera_invoicetypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_invoicetype; - partial void Onera_invoicetypeChanging(global::System.Nullable value); - partial void Onera_invoicetypeChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -308686,27 +308818,27 @@ public virtual string era_remitaddress2 partial void Onera_remitaddress2Changing(string value); partial void Onera_remitaddress2Changed(); /// - /// There are no comments for Property era_remittancemessage in the schema. + /// There are no comments for Property era_contactfax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_remittancemessage + public virtual string era_contactfax { get { - return this._era_remittancemessage; + return this._era_contactfax; } set { - this.Onera_remittancemessageChanging(value); - this._era_remittancemessage = value; - this.Onera_remittancemessageChanged(); + this.Onera_contactfaxChanging(value); + this._era_contactfax = value; + this.Onera_contactfaxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_remittancemessage; - partial void Onera_remittancemessageChanging(string value); - partial void Onera_remittancemessageChanged(); + private string _era_contactfax; + partial void Onera_contactfaxChanging(string value); + partial void Onera_contactfaxChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -308796,49 +308928,71 @@ public virtual string era_remitprovincestate partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property era_remitaddress1 in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_remitaddress1 + public virtual global::System.Nullable createdon { get { - return this._era_remitaddress1; + return this._createdon; } set { - this.Onera_remitaddress1Changing(value); - this._era_remitaddress1 = value; - this.Onera_remitaddress1Changed(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_remitaddress1; - partial void Onera_remitaddress1Changing(string value); - partial void Onera_remitaddress1Changed(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property era_paymenterrormessage in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_paymenterrormessage + public virtual global::System.Nullable versionnumber { get { - return this._era_paymenterrormessage; + return this._versionnumber; } set { - this.Onera_paymenterrormessageChanging(value); - this._era_paymenterrormessage = value; - this.Onera_paymenterrormessageChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_paymenterrormessage; - partial void Onera_paymenterrormessageChanging(string value); - partial void Onera_paymenterrormessageChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property era_invoiceref in the schema. /// @@ -308862,6 +309016,28 @@ public virtual string era_invoiceref partial void Onera_invoicerefChanging(string value); partial void Onera_invoicerefChanged(); /// + /// There are no comments for Property _era_relatedsupplier_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_relatedsupplier_value + { + get + { + return this.__era_relatedsupplier_value; + } + set + { + this.On_era_relatedsupplier_valueChanging(value); + this.__era_relatedsupplier_value = value; + this.On_era_relatedsupplier_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_relatedsupplier_value; + partial void On_era_relatedsupplier_valueChanging(global::System.Nullable value); + partial void On_era_relatedsupplier_valueChanged(); + /// /// There are no comments for Property era_totalinvoiceamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -308906,93 +309082,49 @@ public virtual string era_invoiceref partial void On_era_remitsupplier_valueChanging(global::System.Nullable value); partial void On_era_remitsupplier_valueChanged(); /// - /// There are no comments for Property era_remitcountry in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_remitcountry - { - get - { - return this._era_remitcountry; - } - set - { - this.Onera_remitcountryChanging(value); - this._era_remitcountry = value; - this.Onera_remitcountryChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_remitcountry; - partial void Onera_remitcountryChanging(string value); - partial void Onera_remitcountryChanged(); - /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property era_city in the schema. + /// There are no comments for Property era_partiallyapproved in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_city + public virtual global::System.Nullable era_partiallyapproved { get { - return this._era_city; + return this._era_partiallyapproved; } set { - this.Onera_cityChanging(value); - this._era_city = value; - this.Onera_cityChanged(); + this.Onera_partiallyapprovedChanging(value); + this._era_partiallyapproved = value; + this.Onera_partiallyapprovedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_city; - partial void Onera_cityChanging(string value); - partial void Onera_cityChanged(); + private global::System.Nullable _era_partiallyapproved; + partial void Onera_partiallyapprovedChanging(global::System.Nullable value); + partial void Onera_partiallyapprovedChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_paymenterrormessage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string era_paymenterrormessage { get { - return this._statecode; + return this._era_paymenterrormessage; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_paymenterrormessageChanging(value); + this._era_paymenterrormessage = value; + this.Onera_paymenterrormessageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _era_paymenterrormessage; + partial void Onera_paymenterrormessageChanging(string value); + partial void Onera_paymenterrormessageChanged(); /// /// There are no comments for Property era_remitpostalcode in the schema. /// @@ -309038,28 +309170,6 @@ public virtual string era_remitpostalcode partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property era_contactemail in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_contactemail - { - get - { - return this._era_contactemail; - } - set - { - this.Onera_contactemailChanging(value); - this._era_contactemail = value; - this.Onera_contactemailChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_contactemail; - partial void Onera_contactemailChanging(string value); - partial void Onera_contactemailChanged(); - /// /// There are no comments for Property era_remitcity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -309104,27 +309214,27 @@ public virtual string era_remitcity partial void Onera_invoicedateChanging(global::System.Nullable value); partial void Onera_invoicedateChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property era_supplierinvoicenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string era_supplierinvoicenumber { get { - return this.__modifiedby_value; + return this._era_supplierinvoicenumber; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.Onera_supplierinvoicenumberChanging(value); + this._era_supplierinvoicenumber = value; + this.Onera_supplierinvoicenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _era_supplierinvoicenumber; + partial void Onera_supplierinvoicenumberChanging(string value); + partial void Onera_supplierinvoicenumberChanged(); /// /// There are no comments for Property era_tasknumber in the schema. /// @@ -309236,28 +309346,6 @@ public virtual string era_contactfirstname partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property era_addressline1 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_addressline1 - { - get - { - return this._era_addressline1; - } - set - { - this.Onera_addressline1Changing(value); - this._era_addressline1 = value; - this.Onera_addressline1Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_addressline1; - partial void Onera_addressline1Changing(string value); - partial void Onera_addressline1Changed(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -309302,49 +309390,27 @@ public virtual string era_addressline1 partial void Onera_approvedtotalamountChanging(global::System.Nullable value); partial void Onera_approvedtotalamountChanged(); /// - /// There are no comments for Property era_contactlastname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_contactlastname - { - get - { - return this._era_contactlastname; - } - set - { - this.Onera_contactlastnameChanging(value); - this._era_contactlastname = value; - this.Onera_contactlastnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_contactlastname; - partial void Onera_contactlastnameChanging(string value); - partial void Onera_contactlastnameChanged(); - /// - /// There are no comments for Property era_partiallyapproved in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_partiallyapproved + public virtual global::System.Nullable _owninguser_value { get { - return this._era_partiallyapproved; + return this.__owninguser_value; } set { - this.Onera_partiallyapprovedChanging(value); - this._era_partiallyapproved = value; - this.Onera_partiallyapprovedChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_partiallyapproved; - partial void Onera_partiallyapprovedChanging(global::System.Nullable value); - partial void Onera_partiallyapprovedChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -310816,93 +310882,49 @@ public static era_supplierpayments Createera_supplierpayments(global::EMBC.ESS.U partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property era_tasknumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_tasknumber - { - get - { - return this._era_tasknumber; - } - set - { - this.Onera_tasknumberChanging(value); - this._era_tasknumber = value; - this.Onera_tasknumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_tasknumber; - partial void Onera_tasknumberChanging(string value); - partial void Onera_tasknumberChanged(); - /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// - /// There are no comments for Property era_suppliersitenumber in the schema. + /// There are no comments for Property era_gldate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_suppliersitenumber + public virtual global::System.Nullable era_gldate { get { - return this._era_suppliersitenumber; + return this._era_gldate; } set { - this.Onera_suppliersitenumberChanging(value); - this._era_suppliersitenumber = value; - this.Onera_suppliersitenumberChanged(); + this.Onera_gldateChanging(value); + this._era_gldate = value; + this.Onera_gldateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_suppliersitenumber; - partial void Onera_suppliersitenumberChanging(string value); - partial void Onera_suppliersitenumberChanged(); + private global::System.Nullable _era_gldate; + partial void Onera_gldateChanging(global::System.Nullable value); + partial void Onera_gldateChanged(); /// - /// There are no comments for Property era_paymentchequenumber in the schema. + /// There are no comments for Property era_account in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_paymentchequenumber + public virtual string era_account { get { - return this._era_paymentchequenumber; + return this._era_account; } set { - this.Onera_paymentchequenumberChanging(value); - this._era_paymentchequenumber = value; - this.Onera_paymentchequenumberChanged(); + this.Onera_accountChanging(value); + this._era_account = value; + this.Onera_accountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_paymentchequenumber; - partial void Onera_paymentchequenumberChanging(string value); - partial void Onera_paymentchequenumberChanged(); + private string _era_account; + partial void Onera_accountChanging(string value); + partial void Onera_accountChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -310926,27 +310948,27 @@ public virtual string era_paymentchequenumber partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property era_invoicedate in the schema. + /// There are no comments for Property era_project in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_invoicedate + public virtual string era_project { get { - return this._era_invoicedate; + return this._era_project; } set { - this.Onera_invoicedateChanging(value); - this._era_invoicedate = value; - this.Onera_invoicedateChanged(); + this.Onera_projectChanging(value); + this._era_project = value; + this.Onera_projectChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_invoicedate; - partial void Onera_invoicedateChanging(global::System.Nullable value); - partial void Onera_invoicedateChanged(); + private string _era_project; + partial void Onera_projectChanging(string value); + partial void Onera_projectChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -310970,116 +310992,6 @@ public virtual string era_paymentchequenumber partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property era_casvalidationerror in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_casvalidationerror - { - get - { - return this._era_casvalidationerror; - } - set - { - this.Onera_casvalidationerrorChanging(value); - this._era_casvalidationerror = value; - this.Onera_casvalidationerrorChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_casvalidationerror; - partial void Onera_casvalidationerrorChanging(string value); - partial void Onera_casvalidationerrorChanged(); - /// - /// There are no comments for Property era_batchnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_batchnumber - { - get - { - return this._era_batchnumber; - } - set - { - this.Onera_batchnumberChanging(value); - this._era_batchnumber = value; - this.Onera_batchnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_batchnumber; - partial void Onera_batchnumberChanging(string value); - partial void Onera_batchnumberChanged(); - /// - /// There are no comments for Property era_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_name - { - get - { - return this._era_name; - } - set - { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); - /// - /// There are no comments for Property _era_relatedsupplier_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_relatedsupplier_value - { - get - { - return this.__era_relatedsupplier_value; - } - set - { - this.On_era_relatedsupplier_valueChanging(value); - this.__era_relatedsupplier_value = value; - this.On_era_relatedsupplier_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_relatedsupplier_value; - partial void On_era_relatedsupplier_valueChanging(global::System.Nullable value); - partial void On_era_relatedsupplier_valueChanged(); - /// - /// There are no comments for Property _era_esstask_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _era_esstask_value - { - get - { - return this.__era_esstask_value; - } - set - { - this.On_era_esstask_valueChanging(value); - this.__era_esstask_value = value; - this.On_era_esstask_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __era_esstask_value; - partial void On_era_esstask_valueChanging(global::System.Nullable value); - partial void On_era_esstask_valueChanged(); - /// /// There are no comments for Property era_suppliernumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -311102,49 +311014,181 @@ public virtual string era_suppliernumber partial void Onera_suppliernumberChanging(string value); partial void Onera_suppliernumberChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__ownerid_value; + return this.__owningbusinessunit_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property era_actualamount in the schema. + /// There are no comments for Property era_batchnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_actualamount + public virtual string era_batchnumber { get { - return this._era_actualamount; + return this._era_batchnumber; } set { - this.Onera_actualamountChanging(value); - this._era_actualamount = value; - this.Onera_actualamountChanged(); + this.Onera_batchnumberChanging(value); + this._era_batchnumber = value; + this.Onera_batchnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_actualamount; - partial void Onera_actualamountChanging(global::System.Nullable value); - partial void Onera_actualamountChanged(); + private string _era_batchnumber; + partial void Onera_batchnumberChanging(string value); + partial void Onera_batchnumberChanged(); + /// + /// There are no comments for Property era_actualamount_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_actualamount_base + { + get + { + return this._era_actualamount_base; + } + set + { + this.Onera_actualamount_baseChanging(value); + this._era_actualamount_base = value; + this.Onera_actualamount_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_actualamount_base; + partial void Onera_actualamount_baseChanging(global::System.Nullable value); + partial void Onera_actualamount_baseChanged(); + /// + /// There are no comments for Property era_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_name + { + get + { + return this._era_name; + } + set + { + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); + /// + /// There are no comments for Property _era_relatedsupplier_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_relatedsupplier_value + { + get + { + return this.__era_relatedsupplier_value; + } + set + { + this.On_era_relatedsupplier_valueChanging(value); + this.__era_relatedsupplier_value = value; + this.On_era_relatedsupplier_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_relatedsupplier_value; + partial void On_era_relatedsupplier_valueChanging(global::System.Nullable value); + partial void On_era_relatedsupplier_valueChanged(); + /// + /// There are no comments for Property _era_esstask_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _era_esstask_value + { + get + { + return this.__era_esstask_value; + } + set + { + this.On_era_esstask_valueChanging(value); + this.__era_esstask_value = value; + this.On_era_esstask_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __era_esstask_value; + partial void On_era_esstask_valueChanging(global::System.Nullable value); + partial void On_era_esstask_valueChanged(); + /// + /// There are no comments for Property era_tasknumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_tasknumber + { + get + { + return this._era_tasknumber; + } + set + { + this.Onera_tasknumberChanging(value); + this._era_tasknumber = value; + this.Onera_tasknumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_tasknumber; + partial void Onera_tasknumberChanging(string value); + partial void Onera_tasknumberChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property era_casvalidationstatus in the schema. /// @@ -311168,6 +311212,28 @@ public virtual string era_suppliernumber partial void Onera_casvalidationstatusChanging(global::System.Nullable value); partial void Onera_casvalidationstatusChanged(); /// + /// There are no comments for Property era_actualamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable era_actualamount + { + get + { + return this._era_actualamount; + } + set + { + this.Onera_actualamountChanging(value); + this._era_actualamount = value; + this.Onera_actualamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _era_actualamount; + partial void Onera_actualamountChanging(global::System.Nullable value); + partial void Onera_actualamountChanged(); + /// /// There are no comments for Property era_errordetails in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -311234,27 +311300,27 @@ public virtual string era_errordetails partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property era_gldate in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_gldate + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._era_gldate; + return this._utcconversiontimezonecode; } set { - this.Onera_gldateChanging(value); - this._era_gldate = value; - this.Onera_gldateChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_gldate; - partial void Onera_gldateChanging(global::System.Nullable value); - partial void Onera_gldateChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property era_supplierpaymentsid in the schema. /// @@ -311278,93 +311344,93 @@ public virtual string era_errordetails partial void Onera_supplierpaymentsidChanging(global::System.Nullable value); partial void Onera_supplierpaymentsidChanged(); /// - /// There are no comments for Property era_info1 in the schema. + /// There are no comments for Property era_readytocancelpayment in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_info1 + public virtual global::System.Nullable era_readytocancelpayment { get { - return this._era_info1; + return this._era_readytocancelpayment; } set { - this.Onera_info1Changing(value); - this._era_info1 = value; - this.Onera_info1Changed(); + this.Onera_readytocancelpaymentChanging(value); + this._era_readytocancelpayment = value; + this.Onera_readytocancelpaymentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_info1; - partial void Onera_info1Changing(string value); - partial void Onera_info1Changed(); + private global::System.Nullable _era_readytocancelpayment; + partial void Onera_readytocancelpaymentChanging(global::System.Nullable value); + partial void Onera_readytocancelpaymentChanged(); /// - /// There are no comments for Property era_readytocancelpayment in the schema. + /// There are no comments for Property era_info1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_readytocancelpayment + public virtual string era_info1 { get { - return this._era_readytocancelpayment; + return this._era_info1; } set { - this.Onera_readytocancelpaymentChanging(value); - this._era_readytocancelpayment = value; - this.Onera_readytocancelpaymentChanged(); + this.Onera_info1Changing(value); + this._era_info1 = value; + this.Onera_info1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_readytocancelpayment; - partial void Onera_readytocancelpaymentChanging(global::System.Nullable value); - partial void Onera_readytocancelpaymentChanged(); + private string _era_info1; + partial void Onera_info1Changing(string value); + partial void Onera_info1Changed(); /// - /// There are no comments for Property era_account in the schema. + /// There are no comments for Property era_invoicedate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_account + public virtual global::System.Nullable era_invoicedate { get { - return this._era_account; + return this._era_invoicedate; } set { - this.Onera_accountChanging(value); - this._era_account = value; - this.Onera_accountChanged(); + this.Onera_invoicedateChanging(value); + this._era_invoicedate = value; + this.Onera_invoicedateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_account; - partial void Onera_accountChanging(string value); - partial void Onera_accountChanged(); + private global::System.Nullable _era_invoicedate; + partial void Onera_invoicedateChanging(global::System.Nullable value); + partial void Onera_invoicedateChanged(); /// - /// There are no comments for Property era_actualamount_base in the schema. + /// There are no comments for Property era_paymentadvicecomments in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_actualamount_base + public virtual string era_paymentadvicecomments { get { - return this._era_actualamount_base; + return this._era_paymentadvicecomments; } set { - this.Onera_actualamount_baseChanging(value); - this._era_actualamount_base = value; - this.Onera_actualamount_baseChanged(); + this.Onera_paymentadvicecommentsChanging(value); + this._era_paymentadvicecomments = value; + this.Onera_paymentadvicecommentsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_actualamount_base; - partial void Onera_actualamount_baseChanging(global::System.Nullable value); - partial void Onera_actualamount_baseChanged(); + private string _era_paymentadvicecomments; + partial void Onera_paymentadvicecommentsChanging(string value); + partial void Onera_paymentadvicecommentsChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -311388,27 +311454,27 @@ public virtual string era_account partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property era_suppliersitenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual string era_suppliersitenumber { get { - return this.__owningbusinessunit_value; + return this._era_suppliersitenumber; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.Onera_suppliersitenumberChanging(value); + this._era_suppliersitenumber = value; + this.Onera_suppliersitenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private string _era_suppliersitenumber; + partial void Onera_suppliersitenumberChanging(string value); + partial void Onera_suppliersitenumberChanged(); /// /// There are no comments for Property _era_embcregion_value in the schema. /// @@ -311586,49 +311652,49 @@ public virtual string era_casresponse partial void Onera_paymentdateChanging(global::System.Nullable value); partial void Onera_paymentdateChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__createdby_value; + return this.__ownerid_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property era_paymentadvicecomments in the schema. + /// There are no comments for Property era_paymentchequenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_paymentadvicecomments + public virtual string era_paymentchequenumber { get { - return this._era_paymentadvicecomments; + return this._era_paymentchequenumber; } set { - this.Onera_paymentadvicecommentsChanging(value); - this._era_paymentadvicecomments = value; - this.Onera_paymentadvicecommentsChanged(); + this.Onera_paymentchequenumberChanging(value); + this._era_paymentchequenumber = value; + this.Onera_paymentchequenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_paymentadvicecomments; - partial void Onera_paymentadvicecommentsChanging(string value); - partial void Onera_paymentadvicecommentsChanged(); + private string _era_paymentchequenumber; + partial void Onera_paymentchequenumberChanging(string value); + partial void Onera_paymentchequenumberChanged(); /// /// There are no comments for Property era_documentnumber in the schema. /// @@ -311696,27 +311762,27 @@ public virtual string era_remittancemessage1 partial void Onera_remittancemessage1Changing(string value); partial void Onera_remittancemessage1Changed(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._utcconversiontimezonecode; + return this.__transactioncurrencyid_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property era_resp in the schema. /// @@ -311784,28 +311850,6 @@ public virtual string era_resp partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -311850,27 +311894,49 @@ public virtual string era_stob partial void Onera_stobChanging(string value); partial void Onera_stobChanged(); /// - /// There are no comments for Property era_project in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_project + public virtual global::System.Nullable _owningteam_value { get { - return this._era_project; + return this.__owningteam_value; } set { - this.Onera_projectChanging(value); - this._era_project = value; - this.Onera_projectChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_project; - partial void Onera_projectChanging(string value); - partial void Onera_projectChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property era_casvalidationerror in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_casvalidationerror + { + get + { + return this._era_casvalidationerror; + } + set + { + this.Onera_casvalidationerrorChanging(value); + this._era_casvalidationerror = value; + this.Onera_casvalidationerrorChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_casvalidationerror; + partial void Onera_casvalidationerrorChanging(string value); + partial void Onera_casvalidationerrorChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -313449,49 +313515,27 @@ public virtual string era_cassitenumber partial void Onera_cassitenumberChanging(string value); partial void Onera_cassitenumberChanged(); /// - /// There are no comments for Property era_preferredmethodofpayment in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable era_preferredmethodofpayment - { - get - { - return this._era_preferredmethodofpayment; - } - set - { - this.Onera_preferredmethodofpaymentChanging(value); - this._era_preferredmethodofpayment = value; - this.Onera_preferredmethodofpaymentChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_preferredmethodofpayment; - partial void Onera_preferredmethodofpaymentChanging(global::System.Nullable value); - partial void Onera_preferredmethodofpaymentChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._timezoneruleversionnumber; + return this.__modifiedonbehalfby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property era_postalcode in the schema. /// @@ -313515,28 +313559,6 @@ public virtual string era_postalcode partial void Onera_postalcodeChanging(string value); partial void Onera_postalcodeChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property era_businessnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -313559,28 +313581,6 @@ public virtual string era_businessnumber partial void Onera_businessnumberChanging(string value); partial void Onera_businessnumberChanged(); /// - /// There are no comments for Property era_addressline2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_addressline2 - { - get - { - return this._era_addressline2; - } - set - { - this.Onera_addressline2Changing(value); - this._era_addressline2 = value; - this.Onera_addressline2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_addressline2; - partial void Onera_addressline2Changing(string value); - partial void Onera_addressline2Changed(); - /// /// There are no comments for Property _era_primarycontact_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -313713,71 +313713,49 @@ public virtual string era_telephone partial void On_era_relatedcity_valueChanging(global::System.Nullable value); partial void On_era_relatedcity_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable statecode { get { - return this._overriddencreatedon; + return this._statecode; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._createdon; + return this._timezoneruleversionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -313823,27 +313801,27 @@ public virtual string era_addressline1 partial void Onera_addressline1Changing(string value); partial void Onera_addressline1Changed(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property era_preferredmethodofpayment in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable era_preferredmethodofpayment { get { - return this.__modifiedonbehalfby_value; + return this._era_preferredmethodofpayment; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onera_preferredmethodofpaymentChanging(value); + this._era_preferredmethodofpayment = value; + this.Onera_preferredmethodofpaymentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _era_preferredmethodofpayment; + partial void Onera_preferredmethodofpaymentChanging(global::System.Nullable value); + partial void Onera_preferredmethodofpaymentChanged(); /// /// There are no comments for Property _era_relatedprovincestate_value in the schema. /// @@ -313867,6 +313845,28 @@ public virtual string era_addressline1 partial void On_era_relatedprovincestate_valueChanging(global::System.Nullable value); partial void On_era_relatedprovincestate_valueChanged(); /// + /// There are no comments for Property era_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_name + { + get + { + return this._era_name; + } + set + { + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -313911,27 +313911,49 @@ public virtual string era_addressline1 partial void On_era_relatedcountry_valueChanging(global::System.Nullable value); partial void On_era_relatedcountry_valueChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual global::System.Nullable statuscode { get { - return this._era_name; + return this._statuscode; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property era_gstnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string era_gstnumber + { + get + { + return this._era_gstnumber; + } + set + { + this.Onera_gstnumberChanging(value); + this._era_gstnumber = value; + this.Onera_gstnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _era_gstnumber; + partial void Onera_gstnumberChanging(string value); + partial void Onera_gstnumberChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -313955,49 +313977,93 @@ public virtual string era_name partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property era_gstnumber in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_gstnumber + public virtual global::System.Nullable modifiedon { get { - return this._era_gstnumber; + return this._modifiedon; } set { - this.Onera_gstnumberChanging(value); - this._era_gstnumber = value; - this.Onera_gstnumberChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_gstnumber; - partial void Onera_gstnumberChanging(string value); - partial void Onera_gstnumberChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property era_addressline2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string era_addressline2 { get { - return this._statecode; + return this._era_addressline2; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onera_addressline2Changing(value); + this._era_addressline2 = value; + this.Onera_addressline2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _era_addressline2; + partial void Onera_addressline2Changing(string value); + partial void Onera_addressline2Changed(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -315412,6 +315478,28 @@ public static era_supportflag Createera_supportflag(global::EMBC.ESS.Utilities.D partial void Onera_supportflagidChanging(global::System.Nullable value); partial void Onera_supportflagidChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -315434,49 +315522,49 @@ public static era_supportflag Createera_supportflag(global::EMBC.ESS.Utilities.D partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property era_description in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_description + public virtual global::System.Nullable statecode { get { - return this._era_description; + return this._statecode; } set { - this.Onera_descriptionChanging(value); - this._era_description = value; - this.Onera_descriptionChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_description; - partial void Onera_descriptionChanging(string value); - partial void Onera_descriptionChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__owningteam_value; + return this._overriddencreatedon; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _era_evacueesupport_value in the schema. /// @@ -315500,6 +315588,28 @@ public virtual string era_description partial void On_era_evacueesupport_valueChanging(global::System.Nullable value); partial void On_era_evacueesupport_valueChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property _era_flagtype_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -315610,27 +315720,27 @@ public virtual string era_amountoverrider partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _owningteam_value { get { - return this._statecode; + return this.__owningteam_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -315698,28 +315808,6 @@ public virtual string era_amountoverrider partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -315764,27 +315852,27 @@ public virtual string era_amountoverrider partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable createdon { get { - return this.__createdby_value; + return this._createdon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -315808,28 +315896,6 @@ public virtual string era_amountoverrider partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -315874,49 +315940,49 @@ public virtual string era_amountoverrider partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property era_name in the schema. + /// There are no comments for Property era_description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_name + public virtual string era_description { get { - return this._era_name; + return this._era_description; } set { - this.Onera_nameChanging(value); - this._era_name = value; - this.Onera_nameChanged(); + this.Onera_descriptionChanging(value); + this._era_description = value; + this.Onera_descriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_name; - partial void Onera_nameChanging(string value); - partial void Onera_nameChanged(); + private string _era_description; + partial void Onera_descriptionChanging(string value); + partial void Onera_descriptionChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property era_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string era_name { get { - return this._overriddencreatedon; + return this._era_name; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onera_nameChanging(value); + this._era_name = value; + this.Onera_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _era_name; + partial void Onera_nameChanging(string value); + partial void Onera_nameChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -319819,27 +319885,27 @@ public static era_support Createera_support(global::EMBC.ESS.Utilities.Dynamics. partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property era_extensionavailable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable era_extensionavailable { get { - return this.__createdby_value; + return this._era_extensionavailable; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Onera_extensionavailableChanging(value); + this._era_extensionavailable = value; + this.Onera_extensionavailableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _era_extensionavailable; + partial void Onera_extensionavailableChanging(global::System.Nullable value); + partial void Onera_extensionavailableChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -320017,49 +320083,27 @@ public static era_support Createera_support(global::EMBC.ESS.Utilities.Dynamics. partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable statuscode { get { - return this._utcconversiontimezonecode; + return this._statuscode; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -320105,27 +320149,27 @@ public static era_support Createera_support(global::EMBC.ESS.Utilities.Dynamics. partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property era_extensionavailable in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable era_extensionavailable + public virtual global::System.Nullable _createdby_value { get { - return this._era_extensionavailable; + return this.__createdby_value; } set { - this.Onera_extensionavailableChanging(value); - this._era_extensionavailable = value; - this.Onera_extensionavailableChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _era_extensionavailable; - partial void Onera_extensionavailableChanging(global::System.Nullable value); - partial void Onera_extensionavailableChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -320325,6 +320369,28 @@ public virtual string era_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property era_supportid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -320347,27 +320413,27 @@ public virtual string era_name partial void Onera_supportidChanging(global::System.Nullable value); partial void Onera_supportidChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._statuscode; + return this._utcconversiontimezonecode; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -321353,49 +321419,49 @@ public virtual string era_value partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__modifiedonbehalfby_value; + return this._utcconversiontimezonecode; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._utcconversiontimezonecode; + return this._timezoneruleversionnumber; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -321419,27 +321485,27 @@ public virtual string era_value partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property era_securevalue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string era_securevalue { get { - return this._importsequencenumber; + return this._era_securevalue; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.Onera_securevalueChanging(value); + this._era_securevalue = value; + this.Onera_securevalueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _era_securevalue; + partial void Onera_securevalueChanging(string value); + partial void Onera_securevalueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -321485,49 +321551,27 @@ public virtual string era_value partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _createdby_value { get { - return this._overriddencreatedon; + return this.__createdby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property era_group in the schema. /// @@ -321573,28 +321617,6 @@ public virtual string era_group partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property era_key in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -321617,49 +321639,49 @@ public virtual string era_key partial void Onera_keyChanging(string value); partial void Onera_keyChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__createdby_value; + return this._importsequencenumber; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property era_securevalue in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string era_securevalue + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._era_securevalue; + return this.__createdonbehalfby_value; } set { - this.Onera_securevalueChanging(value); - this._era_securevalue = value; - this.Onera_securevalueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_securevalue; - partial void Onera_securevalueChanging(string value); - partial void Onera_securevalueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -321705,27 +321727,71 @@ public virtual string era_securevalue partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__createdonbehalfby_value; + return this.__modifiedonbehalfby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property era_systemconfigid in the schema. /// @@ -322811,28 +322877,6 @@ public static era_task Createera_task(global::EMBC.ESS.Utilities.Dynamics.Micros partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property era_eventsummary in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string era_eventsummary - { - get - { - return this._era_eventsummary; - } - set - { - this.Onera_eventsummaryChanging(value); - this._era_eventsummary = value; - this.Onera_eventsummaryChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _era_eventsummary; - partial void Onera_eventsummaryChanging(string value); - partial void Onera_eventsummaryChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -323339,27 +323383,27 @@ public virtual string era_name partial void Onera_taskstartdateChanging(global::System.Nullable value); partial void Onera_taskstartdateChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property era_eventsummary in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual string era_eventsummary { get { - return this.__owningbusinessunit_value; + return this._era_eventsummary; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.Onera_eventsummaryChanging(value); + this._era_eventsummary = value; + this.Onera_eventsummaryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private string _era_eventsummary; + partial void Onera_eventsummaryChanging(string value); + partial void Onera_eventsummaryChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -323493,6 +323537,28 @@ public virtual string era_taskdetails partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -325269,71 +325335,71 @@ public static expiredprocess Createexpiredprocess(global::EMBC.ESS.Utilities.Dyn partial void On_processid_valueChanging(global::System.Nullable value); partial void On_processid_valueChanged(); /// - /// There are no comments for Property duration in the schema. + /// There are no comments for Property _activestageid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable duration + public virtual global::System.Nullable _activestageid_value { get { - return this._duration; + return this.__activestageid_value; } set { - this.OndurationChanging(value); - this._duration = value; - this.OndurationChanged(); + this.On_activestageid_valueChanging(value); + this.__activestageid_value = value; + this.On_activestageid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _duration; - partial void OndurationChanging(global::System.Nullable value); - partial void OndurationChanged(); + private global::System.Nullable __activestageid_value; + partial void On_activestageid_valueChanging(global::System.Nullable value); + partial void On_activestageid_valueChanged(); /// - /// There are no comments for Property traversedpath in the schema. + /// There are no comments for Property duration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string traversedpath + public virtual global::System.Nullable duration { get { - return this._traversedpath; + return this._duration; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); + this.OndurationChanging(value); + this._duration = value; + this.OndurationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private global::System.Nullable _duration; + partial void OndurationChanging(global::System.Nullable value); + partial void OndurationChanged(); /// - /// There are no comments for Property _knowledgearticleid_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _knowledgearticleid_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__knowledgearticleid_value; + return this._overriddencreatedon; } set { - this.On_knowledgearticleid_valueChanging(value); - this.__knowledgearticleid_value = value; - this.On_knowledgearticleid_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __knowledgearticleid_value; - partial void On_knowledgearticleid_valueChanging(global::System.Nullable value); - partial void On_knowledgearticleid_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -325357,137 +325423,137 @@ public virtual string traversedpath partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _activestageid_value in the schema. + /// There are no comments for Property _knowledgearticleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _activestageid_value + public virtual global::System.Nullable _knowledgearticleid_value { get { - return this.__activestageid_value; + return this.__knowledgearticleid_value; } set { - this.On_activestageid_valueChanging(value); - this.__activestageid_value = value; - this.On_activestageid_valueChanged(); + this.On_knowledgearticleid_valueChanging(value); + this.__knowledgearticleid_value = value; + this.On_knowledgearticleid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __activestageid_value; - partial void On_activestageid_valueChanging(global::System.Nullable value); - partial void On_activestageid_valueChanged(); + private global::System.Nullable __knowledgearticleid_value; + partial void On_knowledgearticleid_valueChanging(global::System.Nullable value); + partial void On_knowledgearticleid_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string name { get { - return this.__modifiedby_value; + return this._name; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual string traversedpath { get { - return this._name; + return this._traversedpath; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property activestagestartedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable activestagestartedon { get { - return this.__createdonbehalfby_value; + return this._activestagestartedon; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnactivestagestartedonChanging(value); + this._activestagestartedon = value; + this.OnactivestagestartedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _activestagestartedon; + partial void OnactivestagestartedonChanging(global::System.Nullable value); + partial void OnactivestagestartedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__modifiedonbehalfby_value; + return this.__createdonbehalfby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property businessprocessflowinstanceid in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable businessprocessflowinstanceid + public virtual global::System.Nullable _modifiedby_value { get { - return this._businessprocessflowinstanceid; + return this.__modifiedby_value; } set { - this.OnbusinessprocessflowinstanceidChanging(value); - this._businessprocessflowinstanceid = value; - this.OnbusinessprocessflowinstanceidChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _businessprocessflowinstanceid; - partial void OnbusinessprocessflowinstanceidChanging(global::System.Nullable value); - partial void OnbusinessprocessflowinstanceidChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -325555,6 +325621,28 @@ public virtual string name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property businessprocessflowinstanceid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable businessprocessflowinstanceid + { + get + { + return this._businessprocessflowinstanceid; + } + set + { + this.OnbusinessprocessflowinstanceidChanging(value); + this._businessprocessflowinstanceid = value; + this.OnbusinessprocessflowinstanceidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _businessprocessflowinstanceid; + partial void OnbusinessprocessflowinstanceidChanging(global::System.Nullable value); + partial void OnbusinessprocessflowinstanceidChanged(); + /// /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -325577,27 +325665,27 @@ public virtual string name partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property activestagestartedon in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable activestagestartedon + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._activestagestartedon; + return this.__modifiedonbehalfby_value; } set { - this.OnactivestagestartedonChanging(value); - this._activestagestartedon = value; - this.OnactivestagestartedonChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _activestagestartedon; - partial void OnactivestagestartedonChanging(global::System.Nullable value); - partial void OnactivestagestartedonChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -325665,28 +325753,6 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property ExpiredProcess_SyncErrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -326569,28 +326635,6 @@ public virtual string solutionfilename partial void OnsolutionfilenameChanging(string value); partial void OnsolutionfilenameChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property solutionfile in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -326613,28 +326657,6 @@ public virtual byte[] solutionfile partial void OnsolutionfileChanging(byte[] value); partial void OnsolutionfileChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -326767,6 +326789,28 @@ public virtual string name partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -326789,6 +326833,28 @@ public virtual string name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property solutionfile_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string solutionfile_name + { + get + { + return this._solutionfile_name; + } + set + { + this.Onsolutionfile_nameChanging(value); + this._solutionfile_name = value; + this.Onsolutionfile_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _solutionfile_name; + partial void Onsolutionfile_nameChanging(string value); + partial void Onsolutionfile_nameChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -326855,27 +326921,27 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property solutionfile_name in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string solutionfile_name + public virtual global::System.Nullable _ownerid_value { get { - return this._solutionfile_name; + return this.__ownerid_value; } set { - this.Onsolutionfile_nameChanging(value); - this._solutionfile_name = value; - this.Onsolutionfile_nameChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _solutionfile_name; - partial void Onsolutionfile_nameChanging(string value); - partial void Onsolutionfile_nameChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _asyncoperationid_value in the schema. /// @@ -330496,181 +330562,27 @@ public static fax Createfax(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynami return fax; } /// - /// There are no comments for Property tsid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string tsid - { - get - { - return this._tsid; - } - set - { - this.OntsidChanging(value); - this._tsid = value; - this.OntsidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _tsid; - partial void OntsidChanging(string value); - partial void OntsidChanged(); - /// - /// There are no comments for Property numberofpages in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable numberofpages - { - get - { - return this._numberofpages; - } - set - { - this.OnnumberofpagesChanging(value); - this._numberofpages = value; - this.OnnumberofpagesChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _numberofpages; - partial void OnnumberofpagesChanging(global::System.Nullable value); - partial void OnnumberofpagesChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// - /// There are no comments for Property subcategory in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string subcategory - { - get - { - return this._subcategory; - } - set - { - this.OnsubcategoryChanging(value); - this._subcategory = value; - this.OnsubcategoryChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _subcategory; - partial void OnsubcategoryChanging(string value); - partial void OnsubcategoryChanged(); - /// - /// There are no comments for Property subscriptionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable subscriptionid - { - get - { - return this._subscriptionid; - } - set - { - this.OnsubscriptionidChanging(value); - this._subscriptionid = value; - this.OnsubscriptionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _subscriptionid; - partial void OnsubscriptionidChanging(global::System.Nullable value); - partial void OnsubscriptionidChanged(); - /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property directioncode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable directioncode - { - get - { - return this._directioncode; - } - set - { - this.OndirectioncodeChanging(value); - this._directioncode = value; - this.OndirectioncodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _directioncode; - partial void OndirectioncodeChanging(global::System.Nullable value); - partial void OndirectioncodeChanged(); - /// - /// There are no comments for Property faxnumber in the schema. + /// There are no comments for Property billingcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string faxnumber + public virtual string billingcode { get { - return this._faxnumber; + return this._billingcode; } set { - this.OnfaxnumberChanging(value); - this._faxnumber = value; - this.OnfaxnumberChanged(); + this.OnbillingcodeChanging(value); + this._billingcode = value; + this.OnbillingcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _faxnumber; - partial void OnfaxnumberChanging(string value); - partial void OnfaxnumberChanged(); + private string _billingcode; + partial void OnbillingcodeChanging(string value); + partial void OnbillingcodeChanged(); /// /// There are no comments for Property coverpagename in the schema. /// @@ -330694,27 +330606,115 @@ public virtual string coverpagename partial void OncoverpagenameChanging(string value); partial void OncoverpagenameChanged(); /// - /// There are no comments for Property billingcode in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string billingcode + public virtual global::System.Nullable importsequencenumber { get { - return this._billingcode; + return this._importsequencenumber; } set { - this.OnbillingcodeChanging(value); - this._billingcode = value; - this.OnbillingcodeChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _billingcode; - partial void OnbillingcodeChanging(string value); - partial void OnbillingcodeChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property subcategory in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string subcategory + { + get + { + return this._subcategory; + } + set + { + this.OnsubcategoryChanging(value); + this._subcategory = value; + this.OnsubcategoryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _subcategory; + partial void OnsubcategoryChanging(string value); + partial void OnsubcategoryChanged(); + /// + /// There are no comments for Property subscriptionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable subscriptionid + { + get + { + return this._subscriptionid; + } + set + { + this.OnsubscriptionidChanging(value); + this._subscriptionid = value; + this.OnsubscriptionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _subscriptionid; + partial void OnsubscriptionidChanging(global::System.Nullable value); + partial void OnsubscriptionidChanged(); + /// + /// There are no comments for Property faxnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string faxnumber + { + get + { + return this._faxnumber; + } + set + { + this.OnfaxnumberChanging(value); + this._faxnumber = value; + this.OnfaxnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _faxnumber; + partial void OnfaxnumberChanging(string value); + partial void OnfaxnumberChanged(); + /// + /// There are no comments for Property directioncode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable directioncode + { + get + { + return this._directioncode; + } + set + { + this.OndirectioncodeChanging(value); + this._directioncode = value; + this.OndirectioncodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _directioncode; + partial void OndirectioncodeChanging(global::System.Nullable value); + partial void OndirectioncodeChanged(); /// /// There are no comments for Property category in the schema. /// @@ -330738,6 +330738,72 @@ public virtual string category partial void OncategoryChanging(string value); partial void OncategoryChanged(); /// + /// There are no comments for Property tsid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string tsid + { + get + { + return this._tsid; + } + set + { + this.OntsidChanging(value); + this._tsid = value; + this.OntsidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _tsid; + partial void OntsidChanging(string value); + partial void OntsidChanged(); + /// + /// There are no comments for Property numberofpages in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable numberofpages + { + get + { + return this._numberofpages; + } + set + { + this.OnnumberofpagesChanging(value); + this._numberofpages = value; + this.OnnumberofpagesChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _numberofpages; + partial void OnnumberofpagesChanging(global::System.Nullable value); + partial void OnnumberofpagesChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property regardingobjectid_knowledgebaserecord_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -333809,50 +333875,6 @@ public static fieldpermission Createfieldpermission(global::EMBC.ESS.Utilities.D partial void OnfieldpermissionidChanging(global::System.Nullable value); partial void OnfieldpermissionidChanged(); /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// /// There are no comments for Property canupdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -333919,27 +333941,27 @@ public static fieldpermission Createfieldpermission(global::EMBC.ESS.Utilities.D partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property entityname in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityname + public virtual global::System.Nullable componentstate { get { - return this._entityname; + return this._componentstate; } set { - this.OnentitynameChanging(value); - this._entityname = value; - this.OnentitynameChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityname; - partial void OnentitynameChanging(string value); - partial void OnentitynameChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property canread in the schema. /// @@ -334029,6 +334051,28 @@ public virtual string entityname partial void On_fieldsecurityprofileid_valueChanging(global::System.Nullable value); partial void On_fieldsecurityprofileid_valueChanged(); /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -334095,6 +334139,28 @@ public virtual string attributelogicalname partial void OnattributelogicalnameChanging(string value); partial void OnattributelogicalnameChanged(); /// + /// There are no comments for Property entityname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string entityname + { + get + { + return this._entityname; + } + set + { + this.OnentitynameChanging(value); + this._entityname = value; + this.OnentitynameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _entityname; + partial void OnentitynameChanging(string value); + partial void OnentitynameChanged(); + /// /// There are no comments for Property FieldPermission_SyncErrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -335703,49 +335769,49 @@ public virtual string filename partial void OnfileattachmentidChanging(global::System.Nullable value); partial void OnfileattachmentidChanged(); /// - /// There are no comments for Property _objectid_value in the schema. + /// There are no comments for Property mimetype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _objectid_value + public virtual string mimetype { get { - return this.__objectid_value; + return this._mimetype; } set { - this.On_objectid_valueChanging(value); - this.__objectid_value = value; - this.On_objectid_valueChanged(); + this.OnmimetypeChanging(value); + this._mimetype = value; + this.OnmimetypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __objectid_value; - partial void On_objectid_valueChanging(global::System.Nullable value); - partial void On_objectid_valueChanged(); + private string _mimetype; + partial void OnmimetypeChanging(string value); + partial void OnmimetypeChanged(); /// - /// There are no comments for Property mimetype in the schema. + /// There are no comments for Property _objectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string mimetype + public virtual global::System.Nullable _objectid_value { get { - return this._mimetype; + return this.__objectid_value; } set { - this.OnmimetypeChanging(value); - this._mimetype = value; - this.OnmimetypeChanged(); + this.On_objectid_valueChanging(value); + this.__objectid_value = value; + this.On_objectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _mimetype; - partial void OnmimetypeChanging(string value); - partial void OnmimetypeChanged(); + private global::System.Nullable __objectid_value; + partial void On_objectid_valueChanging(global::System.Nullable value); + partial void On_objectid_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -338198,6 +338264,28 @@ public virtual byte[] outputs partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -338374,27 +338462,27 @@ public virtual string context partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property flowsessionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable flowsessionid { get { - return this._name; + return this._flowsessionid; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnflowsessionidChanging(value); + this._flowsessionid = value; + this.OnflowsessionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _flowsessionid; + partial void OnflowsessionidChanging(global::System.Nullable value); + partial void OnflowsessionidChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -338462,28 +338550,6 @@ public virtual string outputs_name partial void On_regardingobjectid_valueChanging(global::System.Nullable value); partial void On_regardingobjectid_valueChanged(); /// - /// There are no comments for Property flowsessionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable flowsessionid - { - get - { - return this._flowsessionid; - } - set - { - this.OnflowsessionidChanging(value); - this._flowsessionid = value; - this.OnflowsessionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _flowsessionid; - partial void OnflowsessionidChanging(global::System.Nullable value); - partial void OnflowsessionidChanged(); - /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -338506,27 +338572,27 @@ public virtual string outputs_name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property processversion in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string processversion + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._processversion; + return this._timezoneruleversionnumber; } set { - this.OnprocessversionChanging(value); - this._processversion = value; - this.OnprocessversionChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _processversion; - partial void OnprocessversionChanging(string value); - partial void OnprocessversionChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -338572,49 +338638,27 @@ public virtual string processversion partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property errormessage in the schema. + /// There are no comments for Property processversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string errormessage + public virtual string processversion { get { - return this._errormessage; + return this._processversion; } set { - this.OnerrormessageChanging(value); - this._errormessage = value; - this.OnerrormessageChanged(); + this.OnprocessversionChanging(value); + this._processversion = value; + this.OnprocessversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _errormessage; - partial void OnerrormessageChanging(string value); - partial void OnerrormessageChanged(); + private string _processversion; + partial void OnprocessversionChanging(string value); + partial void OnprocessversionChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -338682,49 +338726,49 @@ public virtual string errormessage partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property errormessage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string errormessage { get { - return this.__createdby_value; + return this._errormessage; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnerrormessageChanging(value); + this._errormessage = value; + this.OnerrormessageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _errormessage; + partial void OnerrormessageChanging(string value); + partial void OnerrormessageChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _createdby_value { get { - return this._timezoneruleversionnumber; + return this.__createdby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property additionalcontext in the schema. /// @@ -338814,6 +338858,28 @@ public virtual string errorcode partial void OnerrorcodeChanging(string value); partial void OnerrorcodeChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -339729,6 +339795,50 @@ public static goalrollupquery Creategoalrollupquery(global::EMBC.ESS.Utilities.D partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -339773,71 +339883,71 @@ public static goalrollupquery Creategoalrollupquery(global::EMBC.ESS.Utilities.D partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__createdby_value; + return this.__createdonbehalfby_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _createdby_value { get { - return this._timezoneruleversionnumber; + return this.__createdby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__owningbusinessunit_value; + return this.__ownerid_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -339861,27 +339971,27 @@ public static goalrollupquery Creategoalrollupquery(global::EMBC.ESS.Utilities.D partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__createdonbehalfby_value; + return this.__owningbusinessunit_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property queryentitytype in the schema. /// @@ -339905,72 +340015,6 @@ public virtual string queryentitytype partial void OnqueryentitytypeChanging(string value); partial void OnqueryentitytypeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -339993,71 +340037,71 @@ public virtual string queryentitytype partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property fetchxml in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string fetchxml { get { - return this._importsequencenumber; + return this._fetchxml; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnfetchxmlChanging(value); + this._fetchxml = value; + this.OnfetchxmlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _fetchxml; + partial void OnfetchxmlChanging(string value); + partial void OnfetchxmlChanged(); /// - /// There are no comments for Property fetchxml in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string fetchxml + public virtual global::System.Nullable _modifiedby_value { get { - return this._fetchxml; + return this.__modifiedby_value; } set { - this.OnfetchxmlChanging(value); - this._fetchxml = value; - this.OnfetchxmlChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _fetchxml; - partial void OnfetchxmlChanging(string value); - partial void OnfetchxmlChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable importsequencenumber { get { - return this._name; + return this._importsequencenumber; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property goalrollupqueryid in the schema. /// @@ -340125,6 +340169,28 @@ public virtual string name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -340147,27 +340213,27 @@ public virtual string name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__ownerid_value; + return this._timezoneruleversionnumber; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property owningteam in the schema. /// @@ -341753,27 +341819,27 @@ public virtual string stretchtargetstring partial void OninprogressintegerChanging(global::System.Nullable value); partial void OninprogressintegerChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property rolluponlyfromchildgoals in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual global::System.Nullable rolluponlyfromchildgoals { get { - return this._entityimage_url; + return this._rolluponlyfromchildgoals; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.OnrolluponlyfromchildgoalsChanging(value); + this._rolluponlyfromchildgoals = value; + this.OnrolluponlyfromchildgoalsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private global::System.Nullable _rolluponlyfromchildgoals; + partial void OnrolluponlyfromchildgoalsChanging(global::System.Nullable value); + partial void OnrolluponlyfromchildgoalsChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -341797,6 +341863,50 @@ public virtual string entityimage_url partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property lastrolledupdate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable lastrolledupdate + { + get + { + return this._lastrolledupdate; + } + set + { + this.OnlastrolledupdateChanging(value); + this._lastrolledupdate = value; + this.OnlastrolledupdateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _lastrolledupdate; + partial void OnlastrolledupdateChanging(global::System.Nullable value); + partial void OnlastrolledupdateChanged(); + /// + /// There are no comments for Property targetmoney_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable targetmoney_base + { + get + { + return this._targetmoney_base; + } + set + { + this.Ontargetmoney_baseChanging(value); + this._targetmoney_base = value; + this.Ontargetmoney_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _targetmoney_base; + partial void Ontargetmoney_baseChanging(global::System.Nullable value); + partial void Ontargetmoney_baseChanged(); + /// /// There are no comments for Property _rollupqueryactualintegerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -341819,27 +341929,27 @@ public virtual string entityimage_url partial void On_rollupqueryactualintegerid_valueChanging(global::System.Nullable value); partial void On_rollupqueryactualintegerid_valueChanged(); /// - /// There are no comments for Property fiscalperiod in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable fiscalperiod + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._fiscalperiod; + return this._utcconversiontimezonecode; } set { - this.OnfiscalperiodChanging(value); - this._fiscalperiod = value; - this.OnfiscalperiodChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _fiscalperiod; - partial void OnfiscalperiodChanging(global::System.Nullable value); - partial void OnfiscalperiodChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -341863,28 +341973,6 @@ public virtual string entityimage_url partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property isoverridden in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isoverridden - { - get - { - return this._isoverridden; - } - set - { - this.OnisoverriddenChanging(value); - this._isoverridden = value; - this.OnisoverriddenChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isoverridden; - partial void OnisoverriddenChanging(global::System.Nullable value); - partial void OnisoverriddenChanged(); - /// /// There are no comments for Property title in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -341929,49 +342017,49 @@ public virtual string title partial void OngoalenddateChanging(global::System.Nullable value); partial void OngoalenddateChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property _rollupqueryactualdecimalid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable _rollupqueryactualdecimalid_value { get { - return this.__owningteam_value; + return this.__rollupqueryactualdecimalid_value; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.On_rollupqueryactualdecimalid_valueChanging(value); + this.__rollupqueryactualdecimalid_value = value; + this.On_rollupqueryactualdecimalid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable __rollupqueryactualdecimalid_value; + partial void On_rollupqueryactualdecimalid_valueChanging(global::System.Nullable value); + partial void On_rollupqueryactualdecimalid_valueChanged(); /// - /// There are no comments for Property _rollupqueryactualdecimalid_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _rollupqueryactualdecimalid_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__rollupqueryactualdecimalid_value; + return this.__owningteam_value; } set { - this.On_rollupqueryactualdecimalid_valueChanging(value); - this.__rollupqueryactualdecimalid_value = value; - this.On_rollupqueryactualdecimalid_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __rollupqueryactualdecimalid_value; - partial void On_rollupqueryactualdecimalid_valueChanging(global::System.Nullable value); - partial void On_rollupqueryactualdecimalid_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property _rollupqueryactualmoneyid_value in the schema. /// @@ -342193,93 +342281,93 @@ public virtual string title partial void OnisamountChanging(global::System.Nullable value); partial void OnisamountChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._modifiedon; + return this.__modifiedonbehalfby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property entityimage in the schema. + /// There are no comments for Property actualinteger in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] entityimage + public virtual global::System.Nullable actualinteger { get { - return this._entityimage; + return this._actualinteger; } set { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); + this.OnactualintegerChanging(value); + this._actualinteger = value; + this.OnactualintegerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); + private global::System.Nullable _actualinteger; + partial void OnactualintegerChanging(global::System.Nullable value); + partial void OnactualintegerChanged(); /// - /// There are no comments for Property actualinteger in the schema. + /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable actualinteger + public virtual byte[] entityimage { get { - return this._actualinteger; + return this._entityimage; } set { - this.OnactualintegerChanging(value); - this._actualinteger = value; - this.OnactualintegerChanged(); + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualinteger; - partial void OnactualintegerChanging(global::System.Nullable value); - partial void OnactualintegerChanged(); + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); /// - /// There are no comments for Property customrollupfieldmoney in the schema. + /// There are no comments for Property actualmoney in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable customrollupfieldmoney + public virtual global::System.Nullable actualmoney { get { - return this._customrollupfieldmoney; + return this._actualmoney; } set { - this.OncustomrollupfieldmoneyChanging(value); - this._customrollupfieldmoney = value; - this.OncustomrollupfieldmoneyChanged(); + this.OnactualmoneyChanging(value); + this._actualmoney = value; + this.OnactualmoneyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _customrollupfieldmoney; - partial void OncustomrollupfieldmoneyChanging(global::System.Nullable value); - partial void OncustomrollupfieldmoneyChanged(); + private global::System.Nullable _actualmoney; + partial void OnactualmoneyChanging(global::System.Nullable value); + partial void OnactualmoneyChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -342435,28 +342523,6 @@ public virtual string actualstring partial void OnstretchtargetintegerChanging(global::System.Nullable value); partial void OnstretchtargetintegerChanged(); /// - /// There are no comments for Property lastrolledupdate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable lastrolledupdate - { - get - { - return this._lastrolledupdate; - } - set - { - this.OnlastrolledupdateChanging(value); - this._lastrolledupdate = value; - this.OnlastrolledupdateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastrolledupdate; - partial void OnlastrolledupdateChanging(global::System.Nullable value); - partial void OnlastrolledupdateChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -342501,27 +342567,27 @@ public virtual string actualstring partial void Oncomputedtargetasoftodaymoney_baseChanging(global::System.Nullable value); partial void Oncomputedtargetasoftodaymoney_baseChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property customrollupfieldmoney in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable customrollupfieldmoney { get { - return this.__modifiedonbehalfby_value; + return this._customrollupfieldmoney; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OncustomrollupfieldmoneyChanging(value); + this._customrollupfieldmoney = value; + this.OncustomrollupfieldmoneyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _customrollupfieldmoney; + partial void OncustomrollupfieldmoneyChanging(global::System.Nullable value); + partial void OncustomrollupfieldmoneyChanged(); /// /// There are no comments for Property targetinteger in the schema. /// @@ -342545,28 +342611,6 @@ public virtual string actualstring partial void OntargetintegerChanging(global::System.Nullable value); partial void OntargetintegerChanged(); /// - /// There are no comments for Property actualmoney in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable actualmoney - { - get - { - return this._actualmoney; - } - set - { - this.OnactualmoneyChanging(value); - this._actualmoney = value; - this.OnactualmoneyChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualmoney; - partial void OnactualmoneyChanging(global::System.Nullable value); - partial void OnactualmoneyChanged(); - /// /// There are no comments for Property inprogressstring in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -342655,27 +342699,27 @@ public virtual string targetstring partial void OntargetstringChanging(string value); partial void OntargetstringChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property fiscalperiod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable fiscalperiod { get { - return this._timezoneruleversionnumber; + return this._fiscalperiod; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnfiscalperiodChanging(value); + this._fiscalperiod = value; + this.OnfiscalperiodChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _fiscalperiod; + partial void OnfiscalperiodChanging(global::System.Nullable value); + partial void OnfiscalperiodChanged(); /// /// There are no comments for Property isoverride in the schema. /// @@ -342897,6 +342941,28 @@ public virtual string targetstring partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property treeid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -342941,49 +343007,27 @@ public virtual string targetstring partial void On_goalwitherrorid_valueChanging(global::System.Nullable value); partial void On_goalwitherrorid_valueChanged(); /// - /// There are no comments for Property actualmoney_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable actualmoney_base - { - get - { - return this._actualmoney_base; - } - set - { - this.Onactualmoney_baseChanging(value); - this._actualmoney_base = value; - this.Onactualmoney_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualmoney_base; - partial void Onactualmoney_baseChanging(global::System.Nullable value); - partial void Onactualmoney_baseChanged(); - /// - /// There are no comments for Property rolluponlyfromchildgoals in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable rolluponlyfromchildgoals + public virtual string entityimage_url { get { - return this._rolluponlyfromchildgoals; + return this._entityimage_url; } set { - this.OnrolluponlyfromchildgoalsChanging(value); - this._rolluponlyfromchildgoals = value; - this.OnrolluponlyfromchildgoalsChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _rolluponlyfromchildgoals; - partial void OnrolluponlyfromchildgoalsChanging(global::System.Nullable value); - partial void OnrolluponlyfromchildgoalsChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// /// There are no comments for Property isfiscalperiodgoal in the schema. /// @@ -343095,27 +343139,27 @@ public virtual string customrollupfieldstring partial void On_rollupquerycustomdecimalid_valueChanging(global::System.Nullable value); partial void On_rollupquerycustomdecimalid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property actualmoney_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable actualmoney_base { get { - return this._utcconversiontimezonecode; + return this._actualmoney_base; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onactualmoney_baseChanging(value); + this._actualmoney_base = value; + this.Onactualmoney_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _actualmoney_base; + partial void Onactualmoney_baseChanging(global::System.Nullable value); + partial void Onactualmoney_baseChanged(); /// /// There are no comments for Property stretchtargetmoney_base in the schema. /// @@ -343249,6 +343293,28 @@ public virtual string customrollupfieldstring partial void OnfiscalyearChanging(global::System.Nullable value); partial void OnfiscalyearChanged(); /// + /// There are no comments for Property isoverridden in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isoverridden + { + get + { + return this._isoverridden; + } + set + { + this.OnisoverriddenChanging(value); + this._isoverridden = value; + this.OnisoverriddenChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isoverridden; + partial void OnisoverriddenChanging(global::System.Nullable value); + partial void OnisoverriddenChanged(); + /// /// There are no comments for Property stretchtargetdecimal in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -343271,27 +343337,27 @@ public virtual string customrollupfieldstring partial void OnstretchtargetdecimalChanging(global::System.Nullable value); partial void OnstretchtargetdecimalChanged(); /// - /// There are no comments for Property targetmoney_base in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable targetmoney_base + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._targetmoney_base; + return this._timezoneruleversionnumber; } set { - this.Ontargetmoney_baseChanging(value); - this._targetmoney_base = value; - this.Ontargetmoney_baseChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _targetmoney_base; - partial void Ontargetmoney_baseChanging(global::System.Nullable value); - partial void Ontargetmoney_baseChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property inprogressmoney in the schema. /// @@ -344544,6 +344610,28 @@ public static importdata Createimportdata(global::EMBC.ESS.Utilities.Dynamics.Mi return importdata; } /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property haserror in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -344610,6 +344698,204 @@ public static importdata Createimportdata(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnlinenumberChanging(global::System.Nullable value); partial void OnlinenumberChanged(); /// + /// There are no comments for Property errortype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable errortype + { + get + { + return this._errortype; + } + set + { + this.OnerrortypeChanging(value); + this._errortype = value; + this.OnerrortypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _errortype; + partial void OnerrortypeChanging(global::System.Nullable value); + partial void OnerrortypeChanged(); + /// + /// There are no comments for Property recordid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable recordid + { + get + { + return this._recordid; + } + set + { + this.OnrecordidChanging(value); + this._recordid = value; + this.OnrecordidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _recordid; + partial void OnrecordidChanging(global::System.Nullable value); + partial void OnrecordidChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -344632,203 +344918,71 @@ public static importdata Createimportdata(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// - /// There are no comments for Property _importfileid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _importfileid_value - { - get - { - return this.__importfileid_value; - } - set - { - this.On_importfileid_valueChanging(value); - this.__importfileid_value = value; - this.On_importfileid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __importfileid_value; - partial void On_importfileid_valueChanging(global::System.Nullable value); - partial void On_importfileid_valueChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// - /// There are no comments for Property errortype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable errortype - { - get - { - return this._errortype; - } - set - { - this.OnerrortypeChanging(value); - this._errortype = value; - this.OnerrortypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _errortype; - partial void OnerrortypeChanging(global::System.Nullable value); - partial void OnerrortypeChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable _createdby_value { get { - return this.__owningteam_value; + return this.__createdby_value; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property data in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string data { get { - return this.__modifiedby_value; + return this._data; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OndataChanging(value); + this._data = value; + this.OndataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _data; + partial void OndataChanging(string value); + partial void OndataChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property importdataid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable importdataid { get { - return this.__owningbusinessunit_value; + return this._importdataid; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnimportdataidChanging(value); + this._importdataid = value; + this.OnimportdataidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _importdataid; + partial void OnimportdataidChanging(global::System.Nullable value); + partial void OnimportdataidChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -344852,115 +345006,27 @@ public static importdata Createimportdata(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property recordid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable recordid - { - get - { - return this._recordid; - } - set - { - this.OnrecordidChanging(value); - this._recordid = value; - this.OnrecordidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _recordid; - partial void OnrecordidChanging(global::System.Nullable value); - partial void OnrecordidChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property data in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string data - { - get - { - return this._data; - } - set - { - this.OndataChanging(value); - this._data = value; - this.OndataChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _data; - partial void OndataChanging(string value); - partial void OndataChanged(); - /// - /// There are no comments for Property importdataid in the schema. + /// There are no comments for Property _importfileid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importdataid + public virtual global::System.Nullable _importfileid_value { get { - return this._importdataid; + return this.__importfileid_value; } set { - this.OnimportdataidChanging(value); - this._importdataid = value; - this.OnimportdataidChanged(); + this.On_importfileid_valueChanging(value); + this.__importfileid_value = value; + this.On_importfileid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importdataid; - partial void OnimportdataidChanging(global::System.Nullable value); - partial void OnimportdataidChanged(); + private global::System.Nullable __importfileid_value; + partial void On_importfileid_valueChanging(global::System.Nullable value); + partial void On_importfileid_valueChanged(); /// /// There are no comments for Property owninguser in the schema. /// @@ -345457,27 +345523,27 @@ public static importentitymapping Createimportentitymapping(global::EMBC.ESS.Uti partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._introducedversion; + return this.__createdonbehalfby_value; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property processcode in the schema. /// @@ -345501,28 +345567,6 @@ public virtual string introducedversion partial void OnprocesscodeChanging(global::System.Nullable value); partial void OnprocesscodeChanged(); /// - /// There are no comments for Property importentitymappingid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importentitymappingid - { - get - { - return this._importentitymappingid; - } - set - { - this.OnimportentitymappingidChanging(value); - this._importentitymappingid = value; - this.OnimportentitymappingidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importentitymappingid; - partial void OnimportentitymappingidChanging(global::System.Nullable value); - partial void OnimportentitymappingidChanged(); - /// /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -345589,6 +345633,28 @@ public virtual string introducedversion partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property importentitymappingid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importentitymappingid + { + get + { + return this._importentitymappingid; + } + set + { + this.OnimportentitymappingidChanging(value); + this._importentitymappingid = value; + this.OnimportentitymappingidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importentitymappingid; + partial void OnimportentitymappingidChanging(global::System.Nullable value); + partial void OnimportentitymappingidChanged(); + /// /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -345677,28 +345743,6 @@ public virtual string introducedversion partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property targetentityname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -345721,49 +345765,49 @@ public virtual string targetentityname partial void OntargetentitynameChanging(string value); partial void OntargetentitynameChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property sourceentityname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string sourceentityname { get { - return this.__createdonbehalfby_value; + return this._sourceentityname; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnsourceentitynameChanging(value); + this._sourceentityname = value; + this.OnsourceentitynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _sourceentityname; + partial void OnsourceentitynameChanging(string value); + partial void OnsourceentitynameChanged(); /// - /// There are no comments for Property sourceentityname in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string sourceentityname + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._sourceentityname; + return this.__modifiedonbehalfby_value; } set { - this.OnsourceentitynameChanging(value); - this._sourceentityname = value; - this.OnsourceentitynameChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sourceentityname; - partial void OnsourceentitynameChanging(string value); - partial void OnsourceentitynameChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -345787,6 +345831,28 @@ public virtual string sourceentityname partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -346452,49 +346518,49 @@ public static importfile Createimportfile(global::EMBC.ESS.Utilities.Dynamics.Mi partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _importmapid_value in the schema. + /// There are no comments for Property completedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _importmapid_value + public virtual global::System.Nullable completedon { get { - return this.__importmapid_value; + return this._completedon; } set { - this.On_importmapid_valueChanging(value); - this.__importmapid_value = value; - this.On_importmapid_valueChanged(); + this.OncompletedonChanging(value); + this._completedon = value; + this.OncompletedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __importmapid_value; - partial void On_importmapid_valueChanging(global::System.Nullable value); - partial void On_importmapid_valueChanged(); + private global::System.Nullable _completedon; + partial void OncompletedonChanging(global::System.Nullable value); + partial void OncompletedonChanged(); /// - /// There are no comments for Property partialfailurecount in the schema. + /// There are no comments for Property _importmapid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable partialfailurecount + public virtual global::System.Nullable _importmapid_value { get { - return this._partialfailurecount; + return this.__importmapid_value; } set { - this.OnpartialfailurecountChanging(value); - this._partialfailurecount = value; - this.OnpartialfailurecountChanged(); + this.On_importmapid_valueChanging(value); + this.__importmapid_value = value; + this.On_importmapid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _partialfailurecount; - partial void OnpartialfailurecountChanging(global::System.Nullable value); - partial void OnpartialfailurecountChanged(); + private global::System.Nullable __importmapid_value; + partial void On_importmapid_valueChanging(global::System.Nullable value); + partial void On_importmapid_valueChanged(); /// /// There are no comments for Property usesystemmap in the schema. /// @@ -346540,115 +346606,71 @@ public static importfile Createimportfile(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnsuccesscountChanging(global::System.Nullable value); partial void OnsuccesscountChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property headerrow in the schema. + /// There are no comments for Property _importid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string headerrow + public virtual global::System.Nullable _importid_value { get { - return this._headerrow; + return this.__importid_value; } set { - this.OnheaderrowChanging(value); - this._headerrow = value; - this.OnheaderrowChanged(); + this.On_importid_valueChanging(value); + this.__importid_value = value; + this.On_importid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _headerrow; - partial void OnheaderrowChanging(string value); - partial void OnheaderrowChanged(); + private global::System.Nullable __importid_value; + partial void On_importid_valueChanging(global::System.Nullable value); + partial void On_importid_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._name; + return this._utcconversiontimezonecode; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property targetentityname in the schema. + /// There are no comments for Property additionalheaderrow in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string targetentityname + public virtual string additionalheaderrow { get { - return this._targetentityname; + return this._additionalheaderrow; } set { - this.OntargetentitynameChanging(value); - this._targetentityname = value; - this.OntargetentitynameChanged(); + this.OnadditionalheaderrowChanging(value); + this._additionalheaderrow = value; + this.OnadditionalheaderrowChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _targetentityname; - partial void OntargetentitynameChanging(string value); - partial void OntargetentitynameChanged(); + private string _additionalheaderrow; + partial void OnadditionalheaderrowChanging(string value); + partial void OnadditionalheaderrowChanged(); /// /// There are no comments for Property importfileid in the schema. /// @@ -346694,115 +346716,115 @@ public virtual string targetentityname partial void On_recordsownerid_valueChanging(global::System.Nullable value); partial void On_recordsownerid_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property parsedtablecolumnsnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable parsedtablecolumnsnumber { get { - return this.__owningteam_value; + return this._parsedtablecolumnsnumber; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnparsedtablecolumnsnumberChanging(value); + this._parsedtablecolumnsnumber = value; + this.OnparsedtablecolumnsnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _parsedtablecolumnsnumber; + partial void OnparsedtablecolumnsnumberChanging(global::System.Nullable value); + partial void OnparsedtablecolumnsnumberChanged(); /// - /// There are no comments for Property relatedentitycolumns in the schema. + /// There are no comments for Property enableduplicatedetection in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string relatedentitycolumns + public virtual global::System.Nullable enableduplicatedetection { get { - return this._relatedentitycolumns; + return this._enableduplicatedetection; } set { - this.OnrelatedentitycolumnsChanging(value); - this._relatedentitycolumns = value; - this.OnrelatedentitycolumnsChanged(); + this.OnenableduplicatedetectionChanging(value); + this._enableduplicatedetection = value; + this.OnenableduplicatedetectionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _relatedentitycolumns; - partial void OnrelatedentitycolumnsChanging(string value); - partial void OnrelatedentitycolumnsChanged(); + private global::System.Nullable _enableduplicatedetection; + partial void OnenableduplicatedetectionChanging(global::System.Nullable value); + partial void OnenableduplicatedetectionChanged(); /// - /// There are no comments for Property additionalheaderrow in the schema. + /// There are no comments for Property upsertmodecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string additionalheaderrow + public virtual global::System.Nullable upsertmodecode { get { - return this._additionalheaderrow; + return this._upsertmodecode; } set { - this.OnadditionalheaderrowChanging(value); - this._additionalheaderrow = value; - this.OnadditionalheaderrowChanged(); + this.OnupsertmodecodeChanging(value); + this._upsertmodecode = value; + this.OnupsertmodecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _additionalheaderrow; - partial void OnadditionalheaderrowChanging(string value); - partial void OnadditionalheaderrowChanged(); + private global::System.Nullable _upsertmodecode; + partial void OnupsertmodecodeChanging(global::System.Nullable value); + partial void OnupsertmodecodeChanged(); /// - /// There are no comments for Property parsedtablecolumnsnumber in the schema. + /// There are no comments for Property relatedentitycolumns in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable parsedtablecolumnsnumber + public virtual string relatedentitycolumns { get { - return this._parsedtablecolumnsnumber; + return this._relatedentitycolumns; } set { - this.OnparsedtablecolumnsnumberChanging(value); - this._parsedtablecolumnsnumber = value; - this.OnparsedtablecolumnsnumberChanged(); + this.OnrelatedentitycolumnsChanging(value); + this._relatedentitycolumns = value; + this.OnrelatedentitycolumnsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _parsedtablecolumnsnumber; - partial void OnparsedtablecolumnsnumberChanging(global::System.Nullable value); - partial void OnparsedtablecolumnsnumberChanged(); + private string _relatedentitycolumns; + partial void OnrelatedentitycolumnsChanging(string value); + partial void OnrelatedentitycolumnsChanged(); /// - /// There are no comments for Property upsertmodecode in the schema. + /// There are no comments for Property headerrow in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable upsertmodecode + public virtual string headerrow { get { - return this._upsertmodecode; + return this._headerrow; } set { - this.OnupsertmodecodeChanging(value); - this._upsertmodecode = value; - this.OnupsertmodecodeChanged(); + this.OnheaderrowChanging(value); + this._headerrow = value; + this.OnheaderrowChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _upsertmodecode; - partial void OnupsertmodecodeChanging(global::System.Nullable value); - partial void OnupsertmodecodeChanged(); + private string _headerrow; + partial void OnheaderrowChanging(string value); + partial void OnheaderrowChanged(); /// /// There are no comments for Property entitykeyid in the schema. /// @@ -346848,28 +346870,6 @@ public virtual string additionalheaderrow partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property failurecount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -346980,6 +346980,28 @@ public virtual string parsedtablename partial void OnisfirstrowheaderChanging(global::System.Nullable value); partial void OnisfirstrowheaderChanged(); /// + /// There are no comments for Property targetentityname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string targetentityname + { + get + { + return this._targetentityname; + } + set + { + this.OntargetentitynameChanging(value); + this._targetentityname = value; + this.OntargetentitynameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _targetentityname; + partial void OntargetentitynameChanging(string value); + partial void OntargetentitynameChanged(); + /// /// There are no comments for Property datadelimitercode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -347024,28 +347046,6 @@ public virtual string parsedtablename partial void OnprocesscodeChanging(global::System.Nullable value); partial void OnprocesscodeChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property fielddelimitercode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -347178,6 +347178,28 @@ public virtual string content partial void OntotalcountChanging(global::System.Nullable value); partial void OntotalcountChanged(); /// + /// There are no comments for Property parsedtablecolumnprefix in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string parsedtablecolumnprefix + { + get + { + return this._parsedtablecolumnprefix; + } + set + { + this.OnparsedtablecolumnprefixChanging(value); + this._parsedtablecolumnprefix = value; + this.OnparsedtablecolumnprefixChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _parsedtablecolumnprefix; + partial void OnparsedtablecolumnprefixChanging(string value); + partial void OnparsedtablecolumnprefixChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -347222,93 +347244,49 @@ public virtual string sourceentityname partial void OnsourceentitynameChanging(string value); partial void OnsourceentitynameChanged(); /// - /// There are no comments for Property parsedtablecolumnprefix in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string parsedtablecolumnprefix - { - get - { - return this._parsedtablecolumnprefix; - } - set - { - this.OnparsedtablecolumnprefixChanging(value); - this._parsedtablecolumnprefix = value; - this.OnparsedtablecolumnprefixChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _parsedtablecolumnprefix; - partial void OnparsedtablecolumnprefixChanging(string value); - partial void OnparsedtablecolumnprefixChanged(); - /// - /// There are no comments for Property enableduplicatedetection in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable enableduplicatedetection - { - get - { - return this._enableduplicatedetection; - } - set - { - this.OnenableduplicatedetectionChanging(value); - this._enableduplicatedetection = value; - this.OnenableduplicatedetectionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _enableduplicatedetection; - partial void OnenableduplicatedetectionChanging(global::System.Nullable value); - partial void OnenableduplicatedetectionChanged(); - /// - /// There are no comments for Property completedon in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable completedon + public virtual global::System.Nullable _ownerid_value { get { - return this._completedon; + return this.__ownerid_value; } set { - this.OncompletedonChanging(value); - this._completedon = value; - this.OncompletedonChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _completedon; - partial void OncompletedonChanging(global::System.Nullable value); - partial void OncompletedonChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property processingstatus in the schema. + /// There are no comments for Property partialfailurecount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processingstatus + public virtual global::System.Nullable partialfailurecount { get { - return this._processingstatus; + return this._partialfailurecount; } set { - this.OnprocessingstatusChanging(value); - this._processingstatus = value; - this.OnprocessingstatusChanged(); + this.OnpartialfailurecountChanging(value); + this._partialfailurecount = value; + this.OnpartialfailurecountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processingstatus; - partial void OnprocessingstatusChanging(global::System.Nullable value); - partial void OnprocessingstatusChanged(); + private global::System.Nullable _partialfailurecount; + partial void OnpartialfailurecountChanging(global::System.Nullable value); + partial void OnpartialfailurecountChanged(); /// /// There are no comments for Property filetypecode in the schema. /// @@ -347332,27 +347310,93 @@ public virtual string parsedtablecolumnprefix partial void OnfiletypecodeChanging(global::System.Nullable value); partial void OnfiletypecodeChanged(); /// - /// There are no comments for Property _importid_value in the schema. + /// There are no comments for Property processingstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _importid_value + public virtual global::System.Nullable processingstatus { get { - return this.__importid_value; + return this._processingstatus; } set { - this.On_importid_valueChanging(value); - this.__importid_value = value; - this.On_importid_valueChanged(); + this.OnprocessingstatusChanging(value); + this._processingstatus = value; + this.OnprocessingstatusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __importid_value; - partial void On_importid_valueChanging(global::System.Nullable value); - partial void On_importid_valueChanged(); + private global::System.Nullable _processingstatus; + partial void OnprocessingstatusChanging(global::System.Nullable value); + partial void OnprocessingstatusChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -347376,27 +347420,27 @@ public virtual string parsedtablecolumnprefix partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable modifiedon { get { - return this._utcconversiontimezonecode; + return this._modifiedon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property source in the schema. /// @@ -347420,6 +347464,28 @@ public virtual string source partial void OnsourceChanging(string value); partial void OnsourceChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property size in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -348006,49 +348072,71 @@ public static importjob Createimportjob(global::EMBC.ESS.Utilities.Dynamics.Micr return importjob; } /// - /// There are no comments for Property importjobid in the schema. + /// There are no comments for Property startedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importjobid + public virtual global::System.Nullable startedon { get { - return this._importjobid; + return this._startedon; } set { - this.OnimportjobidChanging(value); - this._importjobid = value; - this.OnimportjobidChanged(); + this.OnstartedonChanging(value); + this._startedon = value; + this.OnstartedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importjobid; - partial void OnimportjobidChanging(global::System.Nullable value); - partial void OnimportjobidChanged(); + private global::System.Nullable _startedon; + partial void OnstartedonChanging(global::System.Nullable value); + partial void OnstartedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property completedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable completedon { get { - return this.__createdby_value; + return this._completedon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OncompletedonChanging(value); + this._completedon = value; + this.OncompletedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _completedon; + partial void OncompletedonChanging(global::System.Nullable value); + partial void OncompletedonChanged(); + /// + /// There are no comments for Property importjobid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importjobid + { + get + { + return this._importjobid; + } + set + { + this.OnimportjobidChanging(value); + this._importjobid = value; + this.OnimportjobidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importjobid; + partial void OnimportjobidChanging(global::System.Nullable value); + partial void OnimportjobidChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -348094,93 +348182,93 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._modifiedon; + return this._utcconversiontimezonecode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property importcontext in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string importcontext + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._importcontext; + return this._timezoneruleversionnumber; } set { - this.OnimportcontextChanging(value); - this._importcontext = value; - this.OnimportcontextChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _importcontext; - partial void OnimportcontextChanging(string value); - partial void OnimportcontextChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property completedon in the schema. + /// There are no comments for Property importcontext in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable completedon + public virtual string importcontext { get { - return this._completedon; + return this._importcontext; } set { - this.OncompletedonChanging(value); - this._completedon = value; - this.OncompletedonChanged(); + this.OnimportcontextChanging(value); + this._importcontext = value; + this.OnimportcontextChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _completedon; - partial void OncompletedonChanging(global::System.Nullable value); - partial void OncompletedonChanged(); + private string _importcontext; + partial void OnimportcontextChanging(string value); + partial void OnimportcontextChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__createdonbehalfby_value; + return this.__organizationid_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -348226,6 +348314,72 @@ public virtual string importcontext partial void OnprogressChanging(global::System.Nullable value); partial void OnprogressChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property operationcontext in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -348248,72 +348402,6 @@ public virtual string operationcontext partial void OnoperationcontextChanging(string value); partial void OnoperationcontextChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property data in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -348380,49 +348468,27 @@ public virtual string solutionname partial void OnsolutionnameChanging(string value); partial void OnsolutionnameChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property startedon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable startedon + public virtual global::System.Nullable _createdby_value { get { - return this._startedon; + return this.__createdby_value; } set { - this.OnstartedonChanging(value); - this._startedon = value; - this.OnstartedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _startedon; - partial void OnstartedonChanging(global::System.Nullable value); - partial void OnstartedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property organizationid in the schema. /// @@ -348991,28 +349057,6 @@ public static importlog Createimportlog(global::EMBC.ESS.Utilities.Dynamics.Micr partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property columnvalue in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string columnvalue - { - get - { - return this._columnvalue; - } - set - { - this.OncolumnvalueChanging(value); - this._columnvalue = value; - this.OncolumnvalueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _columnvalue; - partial void OncolumnvalueChanging(string value); - partial void OncolumnvalueChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -349079,138 +349123,6 @@ public virtual string columnvalue partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property headercolumn in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string headercolumn - { - get - { - return this._headercolumn; - } - set - { - this.OnheadercolumnChanging(value); - this._headercolumn = value; - this.OnheadercolumnChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _headercolumn; - partial void OnheadercolumnChanging(string value); - partial void OnheadercolumnChanged(); - /// - /// There are no comments for Property errordescription in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string errordescription - { - get - { - return this._errordescription; - } - set - { - this.OnerrordescriptionChanging(value); - this._errordescription = value; - this.OnerrordescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _errordescription; - partial void OnerrordescriptionChanging(string value); - partial void OnerrordescriptionChanged(); - /// - /// There are no comments for Property sequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable sequencenumber - { - get - { - return this._sequencenumber; - } - set - { - this.OnsequencenumberChanging(value); - this._sequencenumber = value; - this.OnsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sequencenumber; - partial void OnsequencenumberChanging(global::System.Nullable value); - partial void OnsequencenumberChanged(); - /// - /// There are no comments for Property _importfileid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _importfileid_value - { - get - { - return this.__importfileid_value; - } - set - { - this.On_importfileid_valueChanging(value); - this.__importfileid_value = value; - this.On_importfileid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __importfileid_value; - partial void On_importfileid_valueChanging(global::System.Nullable value); - partial void On_importfileid_valueChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property additionalinfo in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -349233,6 +349145,116 @@ public virtual string additionalinfo partial void OnadditionalinfoChanging(string value); partial void OnadditionalinfoChanged(); /// + /// There are no comments for Property headercolumn in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string headercolumn + { + get + { + return this._headercolumn; + } + set + { + this.OnheadercolumnChanging(value); + this._headercolumn = value; + this.OnheadercolumnChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _headercolumn; + partial void OnheadercolumnChanging(string value); + partial void OnheadercolumnChanged(); + /// + /// There are no comments for Property errordescription in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string errordescription + { + get + { + return this._errordescription; + } + set + { + this.OnerrordescriptionChanging(value); + this._errordescription = value; + this.OnerrordescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _errordescription; + partial void OnerrordescriptionChanging(string value); + partial void OnerrordescriptionChanged(); + /// + /// There are no comments for Property sequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sequencenumber + { + get + { + return this._sequencenumber; + } + set + { + this.OnsequencenumberChanging(value); + this._sequencenumber = value; + this.OnsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sequencenumber; + partial void OnsequencenumberChanging(global::System.Nullable value); + partial void OnsequencenumberChanged(); + /// + /// There are no comments for Property _importfileid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _importfileid_value + { + get + { + return this.__importfileid_value; + } + set + { + this.On_importfileid_valueChanging(value); + this.__importfileid_value = value; + this.On_importfileid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __importfileid_value; + partial void On_importfileid_valueChanging(global::System.Nullable value); + partial void On_importfileid_valueChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -349299,49 +349321,71 @@ public virtual string additionalinfo partial void OnimportlogidChanging(global::System.Nullable value); partial void OnimportlogidChanged(); /// - /// There are no comments for Property errornumber in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable errornumber + public virtual global::System.Nullable modifiedon { get { - return this._errornumber; + return this._modifiedon; } set { - this.OnerrornumberChanging(value); - this._errornumber = value; - this.OnerrornumberChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _errornumber; - partial void OnerrornumberChanging(global::System.Nullable value); - partial void OnerrornumberChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property columnvalue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string columnvalue { get { - return this._modifiedon; + return this._columnvalue; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OncolumnvalueChanging(value); + this._columnvalue = value; + this.OncolumnvalueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private string _columnvalue; + partial void OncolumnvalueChanging(string value); + partial void OncolumnvalueChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property logphasecode in the schema. /// @@ -349387,6 +349431,28 @@ public virtual string additionalinfo partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property errornumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable errornumber + { + get + { + return this._errornumber; + } + set + { + this.OnerrornumberChanging(value); + this._errornumber = value; + this.OnerrornumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _errornumber; + partial void OnerrornumberChanging(global::System.Nullable value); + partial void OnerrornumberChanged(); + /// /// There are no comments for Property _importdataid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -350667,28 +350733,6 @@ public virtual string sourceuseridentifierforsourcecrmuserlink partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// /// There are no comments for Property importmaptype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -350777,6 +350821,28 @@ public virtual string sourceuseridentifierforsourcecrmuserlink partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -351545,49 +351611,27 @@ public static import Createimport(global::EMBC.ESS.Utilities.Dynamics.Microsoft. partial void OnsendnotificationChanging(global::System.Nullable value); partial void OnsendnotificationChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable statuscode { get { - return this._modifiedon; + return this._statuscode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -351611,6 +351655,28 @@ public static import Createimport(global::EMBC.ESS.Utilities.Dynamics.Microsoft. partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property emailaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -351721,28 +351787,6 @@ public virtual string emailaddress partial void OnsequenceChanging(global::System.Nullable value); partial void OnsequenceChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -351765,27 +351809,27 @@ public virtual string emailaddress partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._name; + return this.__createdonbehalfby_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -351919,6 +351963,28 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -357992,28 +358058,6 @@ public static incident Createincident(global::EMBC.ESS.Utilities.Dynamics.Micros partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); partial void On_createdbyexternalparty_valueChanged(); /// - /// There are no comments for Property entityimage_timestamp in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable entityimage_timestamp - { - get - { - return this._entityimage_timestamp; - } - set - { - this.Onentityimage_timestampChanging(value); - this._entityimage_timestamp = value; - this.Onentityimage_timestampChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimage_timestamp; - partial void Onentityimage_timestampChanging(global::System.Nullable value); - partial void Onentityimage_timestampChanged(); - /// /// There are no comments for Property _existingcase_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -358058,28 +358102,6 @@ public virtual string entityimage_url partial void Onentityimage_urlChanging(string value); partial void Onentityimage_urlChanged(); /// - /// There are no comments for Property decremententitlementterm in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable decremententitlementterm - { - get - { - return this._decremententitlementterm; - } - set - { - this.OndecremententitlementtermChanging(value); - this._decremententitlementterm = value; - this.OndecremententitlementtermChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _decremententitlementterm; - partial void OndecremententitlementtermChanging(global::System.Nullable value); - partial void OndecremententitlementtermChanged(); - /// /// There are no comments for Property _slaid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -358102,72 +358124,6 @@ public virtual string entityimage_url partial void On_slaid_valueChanging(global::System.Nullable value); partial void On_slaid_valueChanged(); /// - /// There are no comments for Property escalatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable escalatedon - { - get - { - return this._escalatedon; - } - set - { - this.OnescalatedonChanging(value); - this._escalatedon = value; - this.OnescalatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _escalatedon; - partial void OnescalatedonChanging(global::System.Nullable value); - partial void OnescalatedonChanged(); - /// - /// There are no comments for Property _primarycontactid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _primarycontactid_value - { - get - { - return this.__primarycontactid_value; - } - set - { - this.On_primarycontactid_valueChanging(value); - this.__primarycontactid_value = value; - this.On_primarycontactid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __primarycontactid_value; - partial void On_primarycontactid_valueChanging(global::System.Nullable value); - partial void On_primarycontactid_valueChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property ticketnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -358212,27 +358168,27 @@ public virtual string ticketnumber partial void OnmessagetypecodeChanging(global::System.Nullable value); partial void OnmessagetypecodeChanged(); /// - /// There are no comments for Property _resolvebykpiid_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _resolvebykpiid_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__resolvebykpiid_value; + return this.__modifiedonbehalfby_value; } set { - this.On_resolvebykpiid_valueChanging(value); - this.__resolvebykpiid_value = value; - this.On_resolvebykpiid_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __resolvebykpiid_value; - partial void On_resolvebykpiid_valueChanging(global::System.Nullable value); - partial void On_resolvebykpiid_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _entitlementid_value in the schema. /// @@ -358278,27 +358234,27 @@ public virtual string ticketnumber partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property firstresponseslastatus in the schema. + /// There are no comments for Property _subjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable firstresponseslastatus + public virtual global::System.Nullable _subjectid_value { get { - return this._firstresponseslastatus; + return this.__subjectid_value; } set { - this.OnfirstresponseslastatusChanging(value); - this._firstresponseslastatus = value; - this.OnfirstresponseslastatusChanged(); + this.On_subjectid_valueChanging(value); + this.__subjectid_value = value; + this.On_subjectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _firstresponseslastatus; - partial void OnfirstresponseslastatusChanging(global::System.Nullable value); - partial void OnfirstresponseslastatusChanged(); + private global::System.Nullable __subjectid_value; + partial void On_subjectid_valueChanging(global::System.Nullable value); + partial void On_subjectid_valueChanged(); /// /// There are no comments for Property isdecrementing in the schema. /// @@ -358344,6 +358300,28 @@ public virtual string ticketnumber partial void OnresolvebyslastatusChanging(global::System.Nullable value); partial void OnresolvebyslastatusChanged(); /// + /// There are no comments for Property servicestage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable servicestage + { + get + { + return this._servicestage; + } + set + { + this.OnservicestageChanging(value); + this._servicestage = value; + this.OnservicestageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _servicestage; + partial void OnservicestageChanging(global::System.Nullable value); + partial void OnservicestageChanged(); + /// /// There are no comments for Property resolveby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -358388,28 +358366,6 @@ public virtual string ticketnumber partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property blockedprofile in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable blockedprofile - { - get - { - return this._blockedprofile; - } - set - { - this.OnblockedprofileChanging(value); - this._blockedprofile = value; - this.OnblockedprofileChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _blockedprofile; - partial void OnblockedprofileChanging(global::System.Nullable value); - partial void OnblockedprofileChanged(); - /// /// There are no comments for Property numberofchildincidents in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -358432,27 +358388,27 @@ public virtual string ticketnumber partial void OnnumberofchildincidentsChanging(global::System.Nullable value); partial void OnnumberofchildincidentsChanged(); /// - /// There are no comments for Property incidentid in the schema. + /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable incidentid + public virtual global::System.Nullable processid { get { - return this._incidentid; + return this._processid; } set { - this.OnincidentidChanging(value); - this._incidentid = value; - this.OnincidentidChanged(); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _incidentid; - partial void OnincidentidChanging(global::System.Nullable value); - partial void OnincidentidChanged(); + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); /// /// There are no comments for Property activitiescomplete in the schema. /// @@ -358498,49 +358454,49 @@ public virtual string ticketnumber partial void OnisescalatedChanging(global::System.Nullable value); partial void OnisescalatedChanged(); /// - /// There are no comments for Property customercontacted in the schema. + /// There are no comments for Property incidentstagecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable customercontacted + public virtual global::System.Nullable incidentstagecode { get { - return this._customercontacted; + return this._incidentstagecode; } set { - this.OncustomercontactedChanging(value); - this._customercontacted = value; - this.OncustomercontactedChanged(); + this.OnincidentstagecodeChanging(value); + this._incidentstagecode = value; + this.OnincidentstagecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _customercontacted; - partial void OncustomercontactedChanging(global::System.Nullable value); - partial void OncustomercontactedChanged(); + private global::System.Nullable _incidentstagecode; + partial void OnincidentstagecodeChanging(global::System.Nullable value); + partial void OnincidentstagecodeChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable _owningteam_value { get { - return this._description; + return this.__owningteam_value; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -358564,71 +358520,71 @@ public virtual string description partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property servicestage in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable servicestage + public virtual global::System.Nullable exchangerate { get { - return this._servicestage; + return this._exchangerate; } set { - this.OnservicestageChanging(value); - this._servicestage = value; - this.OnservicestageChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _servicestage; - partial void OnservicestageChanging(global::System.Nullable value); - partial void OnservicestageChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._statuscode; + return this._utcconversiontimezonecode; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _productid_value in the schema. + /// There are no comments for Property sentimentvalue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _productid_value + public virtual global::System.Nullable sentimentvalue { get { - return this.__productid_value; + return this._sentimentvalue; } set { - this.On_productid_valueChanging(value); - this.__productid_value = value; - this.On_productid_valueChanged(); + this.OnsentimentvalueChanging(value); + this._sentimentvalue = value; + this.OnsentimentvalueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __productid_value; - partial void On_productid_valueChanging(global::System.Nullable value); - partial void On_productid_valueChanged(); + private global::System.Nullable _sentimentvalue; + partial void OnsentimentvalueChanging(global::System.Nullable value); + partial void OnsentimentvalueChanged(); /// /// There are no comments for Property firstresponsesent in the schema. /// @@ -358652,27 +358608,27 @@ public virtual string description partial void OnfirstresponsesentChanging(global::System.Nullable value); partial void OnfirstresponsesentChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property emailaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string emailaddress { get { - return this.__owningteam_value; + return this._emailaddress; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnemailaddressChanging(value); + this._emailaddress = value; + this.OnemailaddressChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _emailaddress; + partial void OnemailaddressChanging(string value); + partial void OnemailaddressChanged(); /// /// There are no comments for Property onholdtime in the schema. /// @@ -358696,27 +358652,49 @@ public virtual string description partial void OnonholdtimeChanging(global::System.Nullable value); partial void OnonholdtimeChanged(); /// - /// There are no comments for Property processid in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processid + public virtual global::System.Nullable statecode { get { - return this._processid; + return this._statecode; } set { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property blockedprofile in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable blockedprofile + { + get + { + return this._blockedprofile; + } + set + { + this.OnblockedprofileChanging(value); + this._blockedprofile = value; + this.OnblockedprofileChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _blockedprofile; + partial void OnblockedprofileChanging(global::System.Nullable value); + partial void OnblockedprofileChanged(); /// /// There are no comments for Property responseby in the schema. /// @@ -358762,28 +358740,6 @@ public virtual string description partial void OncustomersatisfactioncodeChanging(global::System.Nullable value); partial void OncustomersatisfactioncodeChanged(); /// - /// There are no comments for Property _contractid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _contractid_value - { - get - { - return this.__contractid_value; - } - set - { - this.On_contractid_valueChanging(value); - this.__contractid_value = value; - this.On_contractid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __contractid_value; - partial void On_contractid_valueChanging(global::System.Nullable value); - partial void On_contractid_valueChanged(); - /// /// There are no comments for Property _parentcaseid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -358806,28 +358762,6 @@ public virtual string description partial void On_parentcaseid_valueChanging(global::System.Nullable value); partial void On_parentcaseid_valueChanged(); /// - /// There are no comments for Property _accountid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _accountid_value - { - get - { - return this.__accountid_value; - } - set - { - this.On_accountid_valueChanging(value); - this.__accountid_value = value; - this.On_accountid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __accountid_value; - partial void On_accountid_valueChanging(global::System.Nullable value); - partial void On_accountid_valueChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -358872,27 +358806,27 @@ public virtual string description partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property actualserviceunits in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable actualserviceunits + public virtual global::System.Nullable versionnumber { get { - return this._actualserviceunits; + return this._versionnumber; } set { - this.OnactualserviceunitsChanging(value); - this._actualserviceunits = value; - this.OnactualserviceunitsChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualserviceunits; - partial void OnactualserviceunitsChanging(global::System.Nullable value); - partial void OnactualserviceunitsChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _slainvokedid_value in the schema. /// @@ -358938,6 +358872,28 @@ public virtual string description partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property _productid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _productid_value + { + get + { + return this.__productid_value; + } + set + { + this.On_productid_valueChanging(value); + this.__productid_value = value; + this.On_productid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __productid_value; + partial void On_productid_valueChanging(global::System.Nullable value); + partial void On_productid_valueChanged(); + /// /// There are no comments for Property _customerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -358982,49 +358938,27 @@ public virtual string description partial void On_socialprofileid_valueChanging(global::System.Nullable value); partial void On_socialprofileid_valueChanged(); /// - /// There are no comments for Property caseorigincode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable caseorigincode - { - get - { - return this._caseorigincode; - } - set - { - this.OncaseorigincodeChanging(value); - this._caseorigincode = value; - this.OncaseorigincodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _caseorigincode; - partial void OncaseorigincodeChanging(global::System.Nullable value); - partial void OncaseorigincodeChanged(); - /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _modifiedbyexternalparty_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _modifiedbyexternalparty_value { get { - return this._createdon; + return this.__modifiedbyexternalparty_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_modifiedbyexternalparty_valueChanging(value); + this.__modifiedbyexternalparty_value = value; + this.On_modifiedbyexternalparty_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __modifiedbyexternalparty_value; + partial void On_modifiedbyexternalparty_valueChanging(global::System.Nullable value); + partial void On_modifiedbyexternalparty_valueChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -359070,49 +359004,49 @@ public virtual string description partial void OncontractservicelevelcodeChanging(global::System.Nullable value); partial void OncontractservicelevelcodeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property lastonholdtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable lastonholdtime { get { - return this.__owningbusinessunit_value; + return this._lastonholdtime; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnlastonholdtimeChanging(value); + this._lastonholdtime = value; + this.OnlastonholdtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _lastonholdtime; + partial void OnlastonholdtimeChanging(global::System.Nullable value); + partial void OnlastonholdtimeChanged(); /// - /// There are no comments for Property entityimageid in the schema. + /// There are no comments for Property customercontacted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimageid + public virtual global::System.Nullable customercontacted { get { - return this._entityimageid; + return this._customercontacted; } set { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); + this.OncustomercontactedChanging(value); + this._customercontacted = value; + this.OncustomercontactedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); + private global::System.Nullable _customercontacted; + partial void OncustomercontactedChanging(global::System.Nullable value); + partial void OncustomercontactedChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -359180,181 +359114,203 @@ public virtual string productserialnumber partial void OnproductserialnumberChanging(string value); partial void OnproductserialnumberChanged(); /// - /// There are no comments for Property stageid in the schema. + /// There are no comments for Property entityimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable stageid + public virtual global::System.Nullable entityimageid { get { - return this._stageid; + return this._entityimageid; } set { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stageid; - partial void OnstageidChanging(global::System.Nullable value); - partial void OnstageidChanged(); + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); /// - /// There are no comments for Property _subjectid_value in the schema. + /// There are no comments for Property decremententitlementterm in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _subjectid_value + public virtual global::System.Nullable decremententitlementterm { get { - return this.__subjectid_value; + return this._decremententitlementterm; } set { - this.On_subjectid_valueChanging(value); - this.__subjectid_value = value; - this.On_subjectid_valueChanged(); + this.OndecremententitlementtermChanging(value); + this._decremententitlementterm = value; + this.OndecremententitlementtermChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __subjectid_value; - partial void On_subjectid_valueChanging(global::System.Nullable value); - partial void On_subjectid_valueChanged(); + private global::System.Nullable _decremententitlementterm; + partial void OndecremententitlementtermChanging(global::System.Nullable value); + partial void OndecremententitlementtermChanged(); /// - /// There are no comments for Property _contactid_value in the schema. + /// There are no comments for Property firstresponseslastatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _contactid_value + public virtual global::System.Nullable firstresponseslastatus { get { - return this.__contactid_value; + return this._firstresponseslastatus; } set { - this.On_contactid_valueChanging(value); - this.__contactid_value = value; - this.On_contactid_valueChanged(); + this.OnfirstresponseslastatusChanging(value); + this._firstresponseslastatus = value; + this.OnfirstresponseslastatusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __contactid_value; - partial void On_contactid_valueChanging(global::System.Nullable value); - partial void On_contactid_valueChanged(); + private global::System.Nullable _firstresponseslastatus; + partial void OnfirstresponseslastatusChanging(global::System.Nullable value); + partial void OnfirstresponseslastatusChanged(); /// - /// There are no comments for Property routecase in the schema. + /// There are no comments for Property influencescore in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable routecase + public virtual global::System.Nullable influencescore { get { - return this._routecase; + return this._influencescore; } set { - this.OnroutecaseChanging(value); - this._routecase = value; - this.OnroutecaseChanged(); + this.OninfluencescoreChanging(value); + this._influencescore = value; + this.OninfluencescoreChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _routecase; - partial void OnroutecaseChanging(global::System.Nullable value); - partial void OnroutecaseChanged(); + private global::System.Nullable _influencescore; + partial void OninfluencescoreChanging(global::System.Nullable value); + partial void OninfluencescoreChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property severitycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable severitycode { get { - return this._exchangerate; + return this._severitycode; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.OnseveritycodeChanging(value); + this._severitycode = value; + this.OnseveritycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _severitycode; + partial void OnseveritycodeChanging(global::System.Nullable value); + partial void OnseveritycodeChanged(); /// - /// There are no comments for Property lastonholdtime in the schema. + /// There are no comments for Property caseorigincode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lastonholdtime + public virtual global::System.Nullable caseorigincode { get { - return this._lastonholdtime; + return this._caseorigincode; } set { - this.OnlastonholdtimeChanging(value); - this._lastonholdtime = value; - this.OnlastonholdtimeChanged(); + this.OncaseorigincodeChanging(value); + this._caseorigincode = value; + this.OncaseorigincodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastonholdtime; - partial void OnlastonholdtimeChanging(global::System.Nullable value); - partial void OnlastonholdtimeChanged(); + private global::System.Nullable _caseorigincode; + partial void OncaseorigincodeChanging(global::System.Nullable value); + partial void OncaseorigincodeChanged(); /// - /// There are no comments for Property influencescore in the schema. + /// There are no comments for Property _contractid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable influencescore + public virtual global::System.Nullable _contractid_value { get { - return this._influencescore; + return this.__contractid_value; } set { - this.OninfluencescoreChanging(value); - this._influencescore = value; - this.OninfluencescoreChanged(); + this.On_contractid_valueChanging(value); + this.__contractid_value = value; + this.On_contractid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _influencescore; - partial void OninfluencescoreChanging(global::System.Nullable value); - partial void OninfluencescoreChanged(); + private global::System.Nullable __contractid_value; + partial void On_contractid_valueChanging(global::System.Nullable value); + partial void On_contractid_valueChanged(); /// - /// There are no comments for Property severitycode in the schema. + /// There are no comments for Property _firstresponsebykpiid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable severitycode + public virtual global::System.Nullable _firstresponsebykpiid_value { get { - return this._severitycode; + return this.__firstresponsebykpiid_value; } set { - this.OnseveritycodeChanging(value); - this._severitycode = value; - this.OnseveritycodeChanged(); + this.On_firstresponsebykpiid_valueChanging(value); + this.__firstresponsebykpiid_value = value; + this.On_firstresponsebykpiid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _severitycode; - partial void OnseveritycodeChanging(global::System.Nullable value); - partial void OnseveritycodeChanged(); + private global::System.Nullable __firstresponsebykpiid_value; + partial void On_firstresponsebykpiid_valueChanging(global::System.Nullable value); + partial void On_firstresponsebykpiid_valueChanged(); + /// + /// There are no comments for Property _kbarticleid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _kbarticleid_value + { + get + { + return this.__kbarticleid_value; + } + set + { + this.On_kbarticleid_valueChanging(value); + this.__kbarticleid_value = value; + this.On_kbarticleid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __kbarticleid_value; + partial void On_kbarticleid_valueChanging(global::System.Nullable value); + partial void On_kbarticleid_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -359378,93 +359334,93 @@ public virtual string productserialnumber partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _modifiedbyexternalparty_value in the schema. + /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedbyexternalparty_value + public virtual global::System.Nullable entityimage_timestamp { get { - return this.__modifiedbyexternalparty_value; + return this._entityimage_timestamp; } set { - this.On_modifiedbyexternalparty_valueChanging(value); - this.__modifiedbyexternalparty_value = value; - this.On_modifiedbyexternalparty_valueChanged(); + this.Onentityimage_timestampChanging(value); + this._entityimage_timestamp = value; + this.Onentityimage_timestampChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedbyexternalparty_value; - partial void On_modifiedbyexternalparty_valueChanging(global::System.Nullable value); - partial void On_modifiedbyexternalparty_valueChanged(); + private global::System.Nullable _entityimage_timestamp; + partial void Onentityimage_timestampChanging(global::System.Nullable value); + partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property _firstresponsebykpiid_value in the schema. + /// There are no comments for Property billedserviceunits in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _firstresponsebykpiid_value + public virtual global::System.Nullable billedserviceunits { get { - return this.__firstresponsebykpiid_value; + return this._billedserviceunits; } set { - this.On_firstresponsebykpiid_valueChanging(value); - this.__firstresponsebykpiid_value = value; - this.On_firstresponsebykpiid_valueChanged(); + this.OnbilledserviceunitsChanging(value); + this._billedserviceunits = value; + this.OnbilledserviceunitsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __firstresponsebykpiid_value; - partial void On_firstresponsebykpiid_valueChanging(global::System.Nullable value); - partial void On_firstresponsebykpiid_valueChanged(); + private global::System.Nullable _billedserviceunits; + partial void OnbilledserviceunitsChanging(global::System.Nullable value); + partial void OnbilledserviceunitsChanged(); /// - /// There are no comments for Property _kbarticleid_value in the schema. + /// There are no comments for Property _resolvebykpiid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _kbarticleid_value + public virtual global::System.Nullable _resolvebykpiid_value { get { - return this.__kbarticleid_value; + return this.__resolvebykpiid_value; } set { - this.On_kbarticleid_valueChanging(value); - this.__kbarticleid_value = value; - this.On_kbarticleid_valueChanged(); + this.On_resolvebykpiid_valueChanging(value); + this.__resolvebykpiid_value = value; + this.On_resolvebykpiid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __kbarticleid_value; - partial void On_kbarticleid_valueChanging(global::System.Nullable value); - partial void On_kbarticleid_valueChanged(); + private global::System.Nullable __resolvebykpiid_value; + partial void On_resolvebykpiid_valueChanging(global::System.Nullable value); + partial void On_resolvebykpiid_valueChanged(); /// - /// There are no comments for Property billedserviceunits in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable billedserviceunits + public virtual global::System.Nullable statuscode { get { - return this._billedserviceunits; + return this._statuscode; } set { - this.OnbilledserviceunitsChanging(value); - this._billedserviceunits = value; - this.OnbilledserviceunitsChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _billedserviceunits; - partial void OnbilledserviceunitsChanging(global::System.Nullable value); - partial void OnbilledserviceunitsChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property followupby in the schema. /// @@ -359488,6 +359444,50 @@ public virtual string productserialnumber partial void OnfollowupbyChanging(global::System.Nullable value); partial void OnfollowupbyChanged(); /// + /// There are no comments for Property stageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable stageid + { + get + { + return this._stageid; + } + set + { + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _stageid; + partial void OnstageidChanging(global::System.Nullable value); + partial void OnstageidChanged(); + /// + /// There are no comments for Property escalatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable escalatedon + { + get + { + return this._escalatedon; + } + set + { + this.OnescalatedonChanging(value); + this._escalatedon = value; + this.OnescalatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _escalatedon; + partial void OnescalatedonChanging(global::System.Nullable value); + partial void OnescalatedonChanged(); + /// /// There are no comments for Property title in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -359510,6 +359510,28 @@ public virtual string title partial void OntitleChanging(string value); partial void OntitleChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property casetypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -359532,27 +359554,49 @@ public virtual string title partial void OncasetypecodeChanging(global::System.Nullable value); partial void OncasetypecodeChanged(); /// - /// There are no comments for Property entityimage in the schema. + /// There are no comments for Property routecase in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] entityimage + public virtual global::System.Nullable routecase { get { - return this._entityimage; + return this._routecase; } set { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); + this.OnroutecaseChanging(value); + this._routecase = value; + this.OnroutecaseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); + private global::System.Nullable _routecase; + partial void OnroutecaseChanging(global::System.Nullable value); + partial void OnroutecaseChanged(); + /// + /// There are no comments for Property prioritycode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable prioritycode + { + get + { + return this._prioritycode; + } + set + { + this.OnprioritycodeChanging(value); + this._prioritycode = value; + this.OnprioritycodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _prioritycode; + partial void OnprioritycodeChanging(global::System.Nullable value); + partial void OnprioritycodeChanged(); /// /// There are no comments for Property merged in the schema. /// @@ -359620,225 +359664,247 @@ public virtual byte[] entityimage partial void OnfollowuptaskcreatedChanging(global::System.Nullable value); partial void OnfollowuptaskcreatedChanged(); /// - /// There are no comments for Property emailaddress in the schema. + /// There are no comments for Property incidentid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailaddress + public virtual global::System.Nullable incidentid { get { - return this._emailaddress; + return this._incidentid; } set { - this.OnemailaddressChanging(value); - this._emailaddress = value; - this.OnemailaddressChanged(); + this.OnincidentidChanging(value); + this._incidentid = value; + this.OnincidentidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress; - partial void OnemailaddressChanging(string value); - partial void OnemailaddressChanged(); + private global::System.Nullable _incidentid; + partial void OnincidentidChanging(global::System.Nullable value); + partial void OnincidentidChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _accountid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _accountid_value { get { - return this._timezoneruleversionnumber; + return this.__accountid_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_accountid_valueChanging(value); + this.__accountid_value = value; + this.On_accountid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __accountid_value; + partial void On_accountid_valueChanging(global::System.Nullable value); + partial void On_accountid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string traversedpath { get { - return this._utcconversiontimezonecode; + return this._traversedpath; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// - /// There are no comments for Property traversedpath in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string traversedpath + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._traversedpath; + return this._timezoneruleversionnumber; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property prioritycode in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable prioritycode + public virtual global::System.Nullable createdon { get { - return this._prioritycode; + return this._createdon; } set { - this.OnprioritycodeChanging(value); - this._prioritycode = value; - this.OnprioritycodeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _prioritycode; - partial void OnprioritycodeChanging(global::System.Nullable value); - partial void OnprioritycodeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property actualserviceunits in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable actualserviceunits { get { - return this._versionnumber; + return this._actualserviceunits; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnactualserviceunitsChanging(value); + this._actualserviceunits = value; + this.OnactualserviceunitsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _actualserviceunits; + partial void OnactualserviceunitsChanging(global::System.Nullable value); + partial void OnactualserviceunitsChanged(); /// - /// There are no comments for Property sentimentvalue in the schema. + /// There are no comments for Property checkemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sentimentvalue + public virtual global::System.Nullable checkemail { get { - return this._sentimentvalue; + return this._checkemail; } set { - this.OnsentimentvalueChanging(value); - this._sentimentvalue = value; - this.OnsentimentvalueChanged(); + this.OncheckemailChanging(value); + this._checkemail = value; + this.OncheckemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sentimentvalue; - partial void OnsentimentvalueChanging(global::System.Nullable value); - partial void OnsentimentvalueChanged(); + private global::System.Nullable _checkemail; + partial void OncheckemailChanging(global::System.Nullable value); + partial void OncheckemailChanged(); /// - /// There are no comments for Property incidentstagecode in the schema. + /// There are no comments for Property _contactid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable incidentstagecode + public virtual global::System.Nullable _contactid_value { get { - return this._incidentstagecode; + return this.__contactid_value; } set { - this.OnincidentstagecodeChanging(value); - this._incidentstagecode = value; - this.OnincidentstagecodeChanged(); + this.On_contactid_valueChanging(value); + this.__contactid_value = value; + this.On_contactid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _incidentstagecode; - partial void OnincidentstagecodeChanging(global::System.Nullable value); - partial void OnincidentstagecodeChanged(); + private global::System.Nullable __contactid_value; + partial void On_contactid_valueChanging(global::System.Nullable value); + partial void On_contactid_valueChanged(); /// - /// There are no comments for Property checkemail in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable checkemail + public virtual string description { get { - return this._checkemail; + return this._description; } set { - this.OncheckemailChanging(value); - this._checkemail = value; - this.OncheckemailChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _checkemail; - partial void OncheckemailChanging(global::System.Nullable value); - partial void OncheckemailChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _primarycontactid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _primarycontactid_value { get { - return this._statecode; + return this.__primarycontactid_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_primarycontactid_valueChanging(value); + this.__primarycontactid_value = value; + this.On_primarycontactid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __primarycontactid_value; + partial void On_primarycontactid_valueChanging(global::System.Nullable value); + partial void On_primarycontactid_valueChanged(); + /// + /// There are no comments for Property entityimage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual byte[] entityimage + { + get + { + return this._entityimage; + } + set + { + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); /// /// There are no comments for Property incident_abs_scheduledprocessexecutions in the schema. /// @@ -361900,49 +361966,49 @@ public static interactionforemail Createinteractionforemail(global::EMBC.ESS.Uti partial void OnemailactivityidChanging(global::System.Nullable value); partial void OnemailactivityidChanged(); /// - /// There are no comments for Property emailinteractiontime in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable emailinteractiontime + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._emailinteractiontime; + return this.__owningbusinessunit_value; } set { - this.OnemailinteractiontimeChanging(value); - this._emailinteractiontime = value; - this.OnemailinteractiontimeChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _emailinteractiontime; - partial void OnemailinteractiontimeChanging(global::System.Nullable value); - partial void OnemailinteractiontimeChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__owningbusinessunit_value; + return this._timezoneruleversionnumber; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property interactionreplyid in the schema. /// @@ -361988,6 +362054,28 @@ public virtual string interactionreplyid partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// + /// There are no comments for Property interactionpartyid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable interactionpartyid + { + get + { + return this._interactionpartyid; + } + set + { + this.OninteractionpartyidChanging(value); + this._interactionpartyid = value; + this.OninteractionpartyidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _interactionpartyid; + partial void OninteractionpartyidChanging(global::System.Nullable value); + partial void OninteractionpartyidChanged(); + /// /// There are no comments for Property interactionforemailid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -362054,49 +362142,49 @@ public virtual string interactionreplyid partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property interactionlocation in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string interactionlocation + public virtual global::System.Nullable _owninguser_value { get { - return this._interactionlocation; + return this.__owninguser_value; } set { - this.OninteractionlocationChanging(value); - this._interactionlocation = value; - this.OninteractionlocationChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _interactionlocation; - partial void OninteractionlocationChanging(string value); - partial void OninteractionlocationChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property interactionlocation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string interactionlocation { get { - return this.__owninguser_value; + return this._interactionlocation; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OninteractionlocationChanging(value); + this._interactionlocation = value; + this.OninteractionlocationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private string _interactionlocation; + partial void OninteractionlocationChanging(string value); + partial void OninteractionlocationChanged(); /// /// There are no comments for Property interactionuseragent in the schema. /// @@ -362274,27 +362362,27 @@ public virtual string name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property interactedcomponenttext in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string interactedcomponenttext { get { - return this._timezoneruleversionnumber; + return this._interactedcomponenttext; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OninteractedcomponenttextChanging(value); + this._interactedcomponenttext = value; + this.OninteractedcomponenttextChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _interactedcomponenttext; + partial void OninteractedcomponenttextChanging(string value); + partial void OninteractedcomponenttextChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -362384,27 +362472,27 @@ public virtual string interactionrepliedby partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property interactionpartyid in the schema. + /// There are no comments for Property emailinteractiontime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable interactionpartyid + public virtual global::System.Nullable emailinteractiontime { get { - return this._interactionpartyid; + return this._emailinteractiontime; } set { - this.OninteractionpartyidChanging(value); - this._interactionpartyid = value; - this.OninteractionpartyidChanged(); + this.OnemailinteractiontimeChanging(value); + this._emailinteractiontime = value; + this.OnemailinteractiontimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _interactionpartyid; - partial void OninteractionpartyidChanging(global::System.Nullable value); - partial void OninteractionpartyidChanged(); + private global::System.Nullable _emailinteractiontime; + partial void OnemailinteractiontimeChanging(global::System.Nullable value); + partial void OnemailinteractiontimeChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -362428,28 +362516,6 @@ public virtual string interactionrepliedby partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property interactedcomponenttext in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string interactedcomponenttext - { - get - { - return this._interactedcomponenttext; - } - set - { - this.OninteractedcomponenttextChanging(value); - this._interactedcomponenttext = value; - this.OninteractedcomponenttextChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _interactedcomponenttext; - partial void OninteractedcomponenttextChanging(string value); - partial void OninteractedcomponenttextChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -363892,49 +363958,49 @@ public static invoicedetail Createinvoicedetail(global::EMBC.ESS.Utilities.Dynam return invoicedetail; } /// - /// There are no comments for Property shipto_name in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_name + public virtual global::System.Nullable versionnumber { get { - return this._shipto_name; + return this._versionnumber; } set { - this.Onshipto_nameChanging(value); - this._shipto_name = value; - this.Onshipto_nameChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_name; - partial void Onshipto_nameChanging(string value); - partial void Onshipto_nameChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property lineitemnumber in the schema. + /// There are no comments for Property shipto_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lineitemnumber + public virtual string shipto_name { get { - return this._lineitemnumber; + return this._shipto_name; } set { - this.OnlineitemnumberChanging(value); - this._lineitemnumber = value; - this.OnlineitemnumberChanged(); + this.Onshipto_nameChanging(value); + this._shipto_name = value; + this.Onshipto_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lineitemnumber; - partial void OnlineitemnumberChanging(global::System.Nullable value); - partial void OnlineitemnumberChanged(); + private string _shipto_name; + partial void Onshipto_nameChanging(string value); + partial void Onshipto_nameChanged(); /// /// There are no comments for Property shipto_stateorprovince in the schema. /// @@ -363958,49 +364024,27 @@ public virtual string shipto_stateorprovince partial void Onshipto_stateorprovinceChanging(string value); partial void Onshipto_stateorprovinceChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property parentbundleid in the schema. + /// There are no comments for Property tax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable parentbundleid + public virtual global::System.Nullable tax { get { - return this._parentbundleid; + return this._tax; } set { - this.OnparentbundleidChanging(value); - this._parentbundleid = value; - this.OnparentbundleidChanged(); + this.OntaxChanging(value); + this._tax = value; + this.OntaxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _parentbundleid; - partial void OnparentbundleidChanging(global::System.Nullable value); - partial void OnparentbundleidChanged(); + private global::System.Nullable _tax; + partial void OntaxChanging(global::System.Nullable value); + partial void OntaxChanged(); /// /// There are no comments for Property isproductoverridden in the schema. /// @@ -364024,49 +364068,27 @@ public virtual string shipto_stateorprovince partial void OnisproductoverriddenChanging(global::System.Nullable value); partial void OnisproductoverriddenChanged(); /// - /// There are no comments for Property tax in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable tax - { - get - { - return this._tax; - } - set - { - this.OntaxChanging(value); - this._tax = value; - this.OntaxChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _tax; - partial void OntaxChanging(global::System.Nullable value); - partial void OntaxChanged(); - /// - /// There are no comments for Property productassociationid in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable productassociationid + public virtual global::System.Nullable overriddencreatedon { get { - return this._productassociationid; + return this._overriddencreatedon; } set { - this.OnproductassociationidChanging(value); - this._productassociationid = value; - this.OnproductassociationidChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _productassociationid; - partial void OnproductassociationidChanging(global::System.Nullable value); - partial void OnproductassociationidChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property skippricecalculation in the schema. /// @@ -364134,71 +364156,71 @@ public virtual string shipto_stateorprovince partial void Onmanualdiscountamount_baseChanging(global::System.Nullable value); partial void Onmanualdiscountamount_baseChanged(); /// - /// There are no comments for Property quantity in the schema. + /// There are no comments for Property sequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable quantity + public virtual global::System.Nullable sequencenumber { get { - return this._quantity; + return this._sequencenumber; } set { - this.OnquantityChanging(value); - this._quantity = value; - this.OnquantityChanged(); + this.OnsequencenumberChanging(value); + this._sequencenumber = value; + this.OnsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quantity; - partial void OnquantityChanging(global::System.Nullable value); - partial void OnquantityChanged(); + private global::System.Nullable _sequencenumber; + partial void OnsequencenumberChanging(global::System.Nullable value); + partial void OnsequencenumberChanged(); /// - /// There are no comments for Property actualdeliveryon in the schema. + /// There are no comments for Property quantity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable actualdeliveryon + public virtual global::System.Nullable quantity { get { - return this._actualdeliveryon; + return this._quantity; } set { - this.OnactualdeliveryonChanging(value); - this._actualdeliveryon = value; - this.OnactualdeliveryonChanged(); + this.OnquantityChanging(value); + this._quantity = value; + this.OnquantityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualdeliveryon; - partial void OnactualdeliveryonChanging(global::System.Nullable value); - partial void OnactualdeliveryonChanged(); + private global::System.Nullable _quantity; + partial void OnquantityChanging(global::System.Nullable value); + partial void OnquantityChanged(); /// - /// There are no comments for Property shipto_line1 in the schema. + /// There are no comments for Property shipto_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_line1 + public virtual string shipto_fax { get { - return this._shipto_line1; + return this._shipto_fax; } set { - this.Onshipto_line1Changing(value); - this._shipto_line1 = value; - this.Onshipto_line1Changed(); + this.Onshipto_faxChanging(value); + this._shipto_fax = value; + this.Onshipto_faxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_line1; - partial void Onshipto_line1Changing(string value); - partial void Onshipto_line1Changed(); + private string _shipto_fax; + partial void Onshipto_faxChanging(string value); + partial void Onshipto_faxChanged(); /// /// There are no comments for Property _parentbundleidref_value in the schema. /// @@ -364288,6 +364310,28 @@ public virtual string shipto_telephone partial void OnvolumediscountamountChanging(global::System.Nullable value); partial void OnvolumediscountamountChanged(); /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// /// There are no comments for Property shipto_country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -364310,71 +364354,93 @@ public virtual string shipto_country partial void Onshipto_countryChanging(string value); partial void Onshipto_countryChanged(); /// - /// There are no comments for Property invoicedetailid in the schema. + /// There are no comments for Property _salesrepid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable invoicedetailid + public virtual global::System.Nullable _salesrepid_value { get { - return this._invoicedetailid; + return this.__salesrepid_value; } set { - this.OninvoicedetailidChanging(value); - this._invoicedetailid = value; - this.OninvoicedetailidChanged(); + this.On_salesrepid_valueChanging(value); + this.__salesrepid_value = value; + this.On_salesrepid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _invoicedetailid; - partial void OninvoicedetailidChanging(global::System.Nullable value); - partial void OninvoicedetailidChanged(); + private global::System.Nullable __salesrepid_value; + partial void On_salesrepid_valueChanging(global::System.Nullable value); + partial void On_salesrepid_valueChanged(); /// - /// There are no comments for Property productnumber in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string productnumber + public virtual global::System.Nullable _owningteam_value { get { - return this._productnumber; + return this.__owningteam_value; } set { - this.OnproductnumberChanging(value); - this._productnumber = value; - this.OnproductnumberChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _productnumber; - partial void OnproductnumberChanging(string value); - partial void OnproductnumberChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property extendedamount_base in the schema. + /// There are no comments for Property invoicedetailid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable extendedamount_base + public virtual global::System.Nullable invoicedetailid { get { - return this._extendedamount_base; + return this._invoicedetailid; } set { - this.Onextendedamount_baseChanging(value); - this._extendedamount_base = value; - this.Onextendedamount_baseChanged(); + this.OninvoicedetailidChanging(value); + this._invoicedetailid = value; + this.OninvoicedetailidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _extendedamount_base; - partial void Onextendedamount_baseChanging(global::System.Nullable value); - partial void Onextendedamount_baseChanged(); + private global::System.Nullable _invoicedetailid; + partial void OninvoicedetailidChanging(global::System.Nullable value); + partial void OninvoicedetailidChanged(); + /// + /// There are no comments for Property quantityshipped in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable quantityshipped + { + get + { + return this._quantityshipped; + } + set + { + this.OnquantityshippedChanging(value); + this._quantityshipped = value; + this.OnquantityshippedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _quantityshipped; + partial void OnquantityshippedChanging(global::System.Nullable value); + partial void OnquantityshippedChanged(); /// /// There are no comments for Property baseamount in the schema. /// @@ -364398,6 +364464,28 @@ public virtual string productnumber partial void OnbaseamountChanging(global::System.Nullable value); partial void OnbaseamountChanged(); /// + /// There are no comments for Property quantitybackordered in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable quantitybackordered + { + get + { + return this._quantitybackordered; + } + set + { + this.OnquantitybackorderedChanging(value); + this._quantitybackordered = value; + this.OnquantitybackorderedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _quantitybackordered; + partial void OnquantitybackorderedChanging(global::System.Nullable value); + partial void OnquantitybackorderedChanged(); + /// /// There are no comments for Property productdescription in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -364486,28 +364574,6 @@ public virtual string productdescription partial void OnproducttypecodeChanging(global::System.Nullable value); partial void OnproducttypecodeChanged(); /// - /// There are no comments for Property quantityshipped in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable quantityshipped - { - get - { - return this._quantityshipped; - } - set - { - this.OnquantityshippedChanging(value); - this._quantityshipped = value; - this.OnquantityshippedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quantityshipped; - partial void OnquantityshippedChanging(global::System.Nullable value); - partial void OnquantityshippedChanged(); - /// /// There are no comments for Property shipto_line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -364552,27 +364618,27 @@ public virtual string shipto_line3 partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property invoicedetailname in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string invoicedetailname + public virtual global::System.Nullable _ownerid_value { get { - return this._invoicedetailname; + return this.__ownerid_value; } set { - this.OninvoicedetailnameChanging(value); - this._invoicedetailname = value; - this.OninvoicedetailnameChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _invoicedetailname; - partial void OninvoicedetailnameChanging(string value); - partial void OninvoicedetailnameChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property shipto_freighttermscode in the schema. /// @@ -364618,28 +364684,6 @@ public virtual string invoicedetailname partial void OnextendedamountChanging(global::System.Nullable value); partial void OnextendedamountChanged(); /// - /// There are no comments for Property propertyconfigurationstatus in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable propertyconfigurationstatus - { - get - { - return this._propertyconfigurationstatus; - } - set - { - this.OnpropertyconfigurationstatusChanging(value); - this._propertyconfigurationstatus = value; - this.OnpropertyconfigurationstatusChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _propertyconfigurationstatus; - partial void OnpropertyconfigurationstatusChanging(global::System.Nullable value); - partial void OnpropertyconfigurationstatusChanged(); - /// /// There are no comments for Property priceperunit in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -364662,181 +364706,181 @@ public virtual string invoicedetailname partial void OnpriceperunitChanging(global::System.Nullable value); partial void OnpriceperunitChanged(); /// - /// There are no comments for Property priceperunit_base in the schema. + /// There are no comments for Property tax_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable priceperunit_base + public virtual global::System.Nullable tax_base { get { - return this._priceperunit_base; + return this._tax_base; } set { - this.Onpriceperunit_baseChanging(value); - this._priceperunit_base = value; - this.Onpriceperunit_baseChanged(); + this.Ontax_baseChanging(value); + this._tax_base = value; + this.Ontax_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _priceperunit_base; - partial void Onpriceperunit_baseChanging(global::System.Nullable value); - partial void Onpriceperunit_baseChanged(); + private global::System.Nullable _tax_base; + partial void Ontax_baseChanging(global::System.Nullable value); + partial void Ontax_baseChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property priceperunit_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable priceperunit_base { get { - return this._versionnumber; + return this._priceperunit_base; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.Onpriceperunit_baseChanging(value); + this._priceperunit_base = value; + this.Onpriceperunit_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _priceperunit_base; + partial void Onpriceperunit_baseChanging(global::System.Nullable value); + partial void Onpriceperunit_baseChanged(); /// - /// There are no comments for Property shipto_fax in the schema. + /// There are no comments for Property actualdeliveryon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_fax + public virtual global::System.Nullable actualdeliveryon { get { - return this._shipto_fax; + return this._actualdeliveryon; } set { - this.Onshipto_faxChanging(value); - this._shipto_fax = value; - this.Onshipto_faxChanged(); + this.OnactualdeliveryonChanging(value); + this._actualdeliveryon = value; + this.OnactualdeliveryonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_fax; - partial void Onshipto_faxChanging(string value); - partial void Onshipto_faxChanged(); + private global::System.Nullable _actualdeliveryon; + partial void OnactualdeliveryonChanging(global::System.Nullable value); + partial void OnactualdeliveryonChanged(); /// - /// There are no comments for Property shipto_city in the schema. + /// There are no comments for Property invoicedetailname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_city + public virtual string invoicedetailname { get { - return this._shipto_city; + return this._invoicedetailname; } set { - this.Onshipto_cityChanging(value); - this._shipto_city = value; - this.Onshipto_cityChanged(); + this.OninvoicedetailnameChanging(value); + this._invoicedetailname = value; + this.OninvoicedetailnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_city; - partial void Onshipto_cityChanging(string value); - partial void Onshipto_cityChanged(); + private string _invoicedetailname; + partial void OninvoicedetailnameChanging(string value); + partial void OninvoicedetailnameChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable modifiedon { get { - return this.__modifiedby_value; + return this._modifiedon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _uomid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _uomid_value { get { - return this._modifiedon; + return this.__uomid_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_uomid_valueChanging(value); + this.__uomid_value = value; + this.On_uomid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __uomid_value; + partial void On_uomid_valueChanging(global::System.Nullable value); + partial void On_uomid_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property parentbundleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable parentbundleid { get { - return this.__owningteam_value; + return this._parentbundleid; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnparentbundleidChanging(value); + this._parentbundleid = value; + this.OnparentbundleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _parentbundleid; + partial void OnparentbundleidChanging(global::System.Nullable value); + partial void OnparentbundleidChanged(); /// - /// There are no comments for Property _uomid_value in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _uomid_value + public virtual string description { get { - return this.__uomid_value; + return this._description; } set { - this.On_uomid_valueChanging(value); - this.__uomid_value = value; - this.On_uomid_valueChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __uomid_value; - partial void On_uomid_valueChanging(global::System.Nullable value); - partial void On_uomid_valueChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -364904,49 +364948,27 @@ public virtual string shipto_city partial void Onbaseamount_baseChanging(global::System.Nullable value); partial void Onbaseamount_baseChanged(); /// - /// There are no comments for Property quantitybackordered in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable quantitybackordered - { - get - { - return this._quantitybackordered; - } - set - { - this.OnquantitybackorderedChanging(value); - this._quantitybackordered = value; - this.OnquantitybackorderedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quantitybackordered; - partial void OnquantitybackorderedChanging(global::System.Nullable value); - partial void OnquantitybackorderedChanged(); - /// - /// There are no comments for Property tax_base in the schema. + /// There are no comments for Property productassociationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable tax_base + public virtual global::System.Nullable productassociationid { get { - return this._tax_base; + return this._productassociationid; } set { - this.Ontax_baseChanging(value); - this._tax_base = value; - this.Ontax_baseChanged(); + this.OnproductassociationidChanging(value); + this._productassociationid = value; + this.OnproductassociationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _tax_base; - partial void Ontax_baseChanging(global::System.Nullable value); - partial void Ontax_baseChanged(); + private global::System.Nullable _productassociationid; + partial void OnproductassociationidChanging(global::System.Nullable value); + partial void OnproductassociationidChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -364992,27 +365014,49 @@ public virtual string shipto_city partial void On_productid_valueChanging(global::System.Nullable value); partial void On_productid_valueChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property volumediscountamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable volumediscountamount_base { get { - return this._description; + return this._volumediscountamount_base; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.Onvolumediscountamount_baseChanging(value); + this._volumediscountamount_base = value; + this.Onvolumediscountamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _volumediscountamount_base; + partial void Onvolumediscountamount_baseChanging(global::System.Nullable value); + partial void Onvolumediscountamount_baseChanged(); + /// + /// There are no comments for Property shipto_line1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string shipto_line1 + { + get + { + return this._shipto_line1; + } + set + { + this.Onshipto_line1Changing(value); + this._shipto_line1 = value; + this.Onshipto_line1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _shipto_line1; + partial void Onshipto_line1Changing(string value); + partial void Onshipto_line1Changed(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -365036,49 +365080,49 @@ public virtual string description partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property _salesrepid_value in the schema. + /// There are no comments for Property lineitemnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _salesrepid_value + public virtual global::System.Nullable lineitemnumber { get { - return this.__salesrepid_value; + return this._lineitemnumber; } set { - this.On_salesrepid_valueChanging(value); - this.__salesrepid_value = value; - this.On_salesrepid_valueChanged(); + this.OnlineitemnumberChanging(value); + this._lineitemnumber = value; + this.OnlineitemnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __salesrepid_value; - partial void On_salesrepid_valueChanging(global::System.Nullable value); - partial void On_salesrepid_valueChanged(); + private global::System.Nullable _lineitemnumber; + partial void OnlineitemnumberChanging(global::System.Nullable value); + partial void OnlineitemnumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property propertyconfigurationstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable propertyconfigurationstatus { get { - return this._utcconversiontimezonecode; + return this._propertyconfigurationstatus; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnpropertyconfigurationstatusChanging(value); + this._propertyconfigurationstatus = value; + this.OnpropertyconfigurationstatusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _propertyconfigurationstatus; + partial void OnpropertyconfigurationstatusChanging(global::System.Nullable value); + partial void OnpropertyconfigurationstatusChanged(); /// /// There are no comments for Property shipto_line2 in the schema. /// @@ -365102,71 +365146,71 @@ public virtual string shipto_line2 partial void Onshipto_line2Changing(string value); partial void Onshipto_line2Changed(); /// - /// There are no comments for Property sequencenumber in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sequencenumber + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._sequencenumber; + return this.__owningbusinessunit_value; } set { - this.OnsequencenumberChanging(value); - this._sequencenumber = value; - this.OnsequencenumberChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sequencenumber; - partial void OnsequencenumberChanging(global::System.Nullable value); - partial void OnsequencenumberChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property shippingtrackingnumber in the schema. + /// There are no comments for Property willcall in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shippingtrackingnumber + public virtual global::System.Nullable willcall { get { - return this._shippingtrackingnumber; + return this._willcall; } set { - this.OnshippingtrackingnumberChanging(value); - this._shippingtrackingnumber = value; - this.OnshippingtrackingnumberChanged(); + this.OnwillcallChanging(value); + this._willcall = value; + this.OnwillcallChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shippingtrackingnumber; - partial void OnshippingtrackingnumberChanging(string value); - partial void OnshippingtrackingnumberChanged(); + private global::System.Nullable _willcall; + partial void OnwillcallChanging(global::System.Nullable value); + partial void OnwillcallChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property shipto_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string shipto_city { get { - return this.__owninguser_value; + return this._shipto_city; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.Onshipto_cityChanging(value); + this._shipto_city = value; + this.Onshipto_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private string _shipto_city; + partial void Onshipto_cityChanging(string value); + partial void Onshipto_cityChanged(); /// /// There are no comments for Property manualdiscountamount in the schema. /// @@ -365212,49 +365256,49 @@ public virtual string shippingtrackingnumber partial void OnispriceoverriddenChanging(global::System.Nullable value); partial void OnispriceoverriddenChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _modifiedby_value { get { - return this._overriddencreatedon; + return this.__modifiedby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property volumediscountamount_base in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable volumediscountamount_base + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._volumediscountamount_base; + return this._timezoneruleversionnumber; } set { - this.Onvolumediscountamount_baseChanging(value); - this._volumediscountamount_base = value; - this.Onvolumediscountamount_baseChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _volumediscountamount_base; - partial void Onvolumediscountamount_baseChanging(global::System.Nullable value); - partial void Onvolumediscountamount_baseChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -365322,27 +365366,49 @@ public virtual string shippingtrackingnumber partial void OnpricingerrorcodeChanging(global::System.Nullable value); partial void OnpricingerrorcodeChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property extendedamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable extendedamount_base { get { - return this.__ownerid_value; + return this._extendedamount_base; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.Onextendedamount_baseChanging(value); + this._extendedamount_base = value; + this.Onextendedamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _extendedamount_base; + partial void Onextendedamount_baseChanging(global::System.Nullable value); + partial void Onextendedamount_baseChanged(); + /// + /// There are no comments for Property shippingtrackingnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string shippingtrackingnumber + { + get + { + return this._shippingtrackingnumber; + } + set + { + this.OnshippingtrackingnumberChanging(value); + this._shippingtrackingnumber = value; + this.OnshippingtrackingnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _shippingtrackingnumber; + partial void OnshippingtrackingnumberChanging(string value); + partial void OnshippingtrackingnumberChanged(); /// /// There are no comments for Property invoicestatecode in the schema. /// @@ -365366,27 +365432,27 @@ public virtual string shippingtrackingnumber partial void OninvoicestatecodeChanging(global::System.Nullable value); partial void OninvoicestatecodeChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._timezoneruleversionnumber; + return this._utcconversiontimezonecode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property quantitycancelled in the schema. /// @@ -365410,27 +365476,27 @@ public virtual string shippingtrackingnumber partial void OnquantitycancelledChanging(global::System.Nullable value); partial void OnquantitycancelledChanged(); /// - /// There are no comments for Property willcall in the schema. + /// There are no comments for Property productnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable willcall + public virtual string productnumber { get { - return this._willcall; + return this._productnumber; } set { - this.OnwillcallChanging(value); - this._willcall = value; - this.OnwillcallChanged(); + this.OnproductnumberChanging(value); + this._productnumber = value; + this.OnproductnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _willcall; - partial void OnwillcallChanging(global::System.Nullable value); - partial void OnwillcallChanged(); + private string _productnumber; + partial void OnproductnumberChanging(string value); + partial void OnproductnumberChanged(); /// /// There are no comments for Property productname in the schema. /// @@ -367071,28 +367137,6 @@ public static invoice Createinvoice(global::EMBC.ESS.Utilities.Dynamics.Microsof return invoice; } /// - /// There are no comments for Property skippricecalculation in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable skippricecalculation - { - get - { - return this._skippricecalculation; - } - set - { - this.OnskippricecalculationChanging(value); - this._skippricecalculation = value; - this.OnskippricecalculationChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _skippricecalculation; - partial void OnskippricecalculationChanging(global::System.Nullable value); - partial void OnskippricecalculationChanged(); - /// /// There are no comments for Property _contactid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -367269,27 +367313,27 @@ public static invoice Createinvoice(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void OnprioritycodeChanging(global::System.Nullable value); partial void OnprioritycodeChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__ownerid_value; + return this.__owningteam_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property pricingerrorcode in the schema. /// @@ -367357,27 +367401,27 @@ public static invoice Createinvoice(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property freightamount_base in the schema. + /// There are no comments for Property skippricecalculation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable freightamount_base + public virtual global::System.Nullable skippricecalculation { get { - return this._freightamount_base; + return this._skippricecalculation; } set { - this.Onfreightamount_baseChanging(value); - this._freightamount_base = value; - this.Onfreightamount_baseChanged(); + this.OnskippricecalculationChanging(value); + this._skippricecalculation = value; + this.OnskippricecalculationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _freightamount_base; - partial void Onfreightamount_baseChanging(global::System.Nullable value); - partial void Onfreightamount_baseChanged(); + private global::System.Nullable _skippricecalculation; + partial void OnskippricecalculationChanging(global::System.Nullable value); + partial void OnskippricecalculationChanged(); /// /// There are no comments for Property billto_line3 in the schema. /// @@ -367423,28 +367467,6 @@ public virtual string billto_line3 partial void OnfreightamountChanging(global::System.Nullable value); partial void OnfreightamountChanged(); /// - /// There are no comments for Property billto_line2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string billto_line2 - { - get - { - return this._billto_line2; - } - set - { - this.Onbillto_line2Changing(value); - this._billto_line2 = value; - this.Onbillto_line2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _billto_line2; - partial void Onbillto_line2Changing(string value); - partial void Onbillto_line2Changed(); - /// /// There are no comments for Property shipto_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -367599,49 +367621,27 @@ public virtual string description partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property billto_postalcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string billto_postalcode - { - get - { - return this._billto_postalcode; - } - set - { - this.Onbillto_postalcodeChanging(value); - this._billto_postalcode = value; - this.Onbillto_postalcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _billto_postalcode; - partial void Onbillto_postalcodeChanging(string value); - partial void Onbillto_postalcodeChanged(); - /// - /// There are no comments for Property totalamount in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable totalamount + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._totalamount; + return this.__modifiedonbehalfby_value; } set { - this.OntotalamountChanging(value); - this._totalamount = value; - this.OntotalamountChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totalamount; - partial void OntotalamountChanging(global::System.Nullable value); - partial void OntotalamountChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property shipto_stateorprovince in the schema. /// @@ -367731,28 +367731,6 @@ public virtual string shipto_line1 partial void Ontotalamount_baseChanging(global::System.Nullable value); partial void Ontotalamount_baseChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property totalamountlessfreight_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -367819,6 +367797,28 @@ public virtual string billto_name partial void On_opportunityid_valueChanging(global::System.Nullable value); partial void On_opportunityid_valueChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -367885,27 +367885,27 @@ public virtual string name partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property billto_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string billto_line2 { get { - return this.__createdonbehalfby_value; + return this._billto_line2; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onbillto_line2Changing(value); + this._billto_line2 = value; + this.Onbillto_line2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _billto_line2; + partial void Onbillto_line2Changing(string value); + partial void Onbillto_line2Changed(); /// /// There are no comments for Property shipto_composite in the schema. /// @@ -367973,28 +367973,6 @@ public virtual string billto_telephone partial void Ontotallineitemdiscountamount_baseChanging(global::System.Nullable value); partial void Ontotallineitemdiscountamount_baseChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -368105,27 +368083,27 @@ public virtual string shipto_country partial void OntotalamountlessfreightChanging(global::System.Nullable value); partial void OntotalamountlessfreightChanged(); /// - /// There are no comments for Property entityimageid in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimageid + public virtual global::System.Nullable _ownerid_value { get { - return this._entityimageid; + return this.__ownerid_value; } set { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property shippingmethodcode in the schema. /// @@ -368193,28 +368171,6 @@ public virtual string emailaddress partial void OnemailaddressChanging(string value); partial void OnemailaddressChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// /// There are no comments for Property _salesorderid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -368413,28 +368369,6 @@ public virtual string shipto_line3 partial void OntotaldiscountamountChanging(global::System.Nullable value); partial void OntotaldiscountamountChanged(); /// - /// There are no comments for Property shipto_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string shipto_name - { - get - { - return this._shipto_name; - } - set - { - this.Onshipto_nameChanging(value); - this._shipto_name = value; - this.Onshipto_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_name; - partial void Onshipto_nameChanging(string value); - partial void Onshipto_nameChanged(); - /// /// There are no comments for Property shipto_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -368501,6 +368435,28 @@ public virtual string shipto_telephone partial void OnpaymenttermscodeChanging(global::System.Nullable value); partial void OnpaymenttermscodeChanged(); /// + /// There are no comments for Property totalamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable totalamount + { + get + { + return this._totalamount; + } + set + { + this.OntotalamountChanging(value); + this._totalamount = value; + this.OntotalamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _totalamount; + partial void OntotalamountChanging(global::System.Nullable value); + partial void OntotalamountChanged(); + /// /// There are no comments for Property _customerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -368567,6 +368523,50 @@ public virtual string shipto_telephone partial void On_slainvokedid_valueChanging(global::System.Nullable value); partial void On_slainvokedid_valueChanged(); /// + /// There are no comments for Property shipto_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string shipto_name + { + get + { + return this._shipto_name; + } + set + { + this.Onshipto_nameChanging(value); + this._shipto_name = value; + this.Onshipto_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _shipto_name; + partial void Onshipto_nameChanging(string value); + partial void Onshipto_nameChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property totallineitemamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -368721,6 +368721,28 @@ public virtual string billto_country partial void Onbillto_countryChanging(string value); partial void Onbillto_countryChanged(); /// + /// There are no comments for Property freightamount_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable freightamount_base + { + get + { + return this._freightamount_base; + } + set + { + this.Onfreightamount_baseChanging(value); + this._freightamount_base = value; + this.Onfreightamount_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _freightamount_base; + partial void Onfreightamount_baseChanging(global::System.Nullable value); + partial void Onfreightamount_baseChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -368853,6 +368875,28 @@ public virtual string billto_stateorprovince partial void Onbillto_stateorprovinceChanging(string value); partial void Onbillto_stateorprovinceChanged(); /// + /// There are no comments for Property billto_postalcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string billto_postalcode + { + get + { + return this._billto_postalcode; + } + set + { + this.Onbillto_postalcodeChanging(value); + this._billto_postalcode = value; + this.Onbillto_postalcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _billto_postalcode; + partial void Onbillto_postalcodeChanging(string value); + partial void Onbillto_postalcodeChanged(); + /// /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -368985,6 +369029,28 @@ public virtual string billto_line1 partial void Onbillto_line1Changing(string value); partial void Onbillto_line1Changed(); /// + /// There are no comments for Property entityimageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable entityimageid + { + get + { + return this._entityimageid; + } + set + { + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -371256,49 +371322,93 @@ public virtual string articlexml partial void OnarticlexmlChanging(string value); partial void OnarticlexmlChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string entityimage_url { get { - return this.__createdby_value; + return this._entityimage_url; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// - /// There are no comments for Property languagecode in the schema. + /// There are no comments for Property kbarticleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable languagecode + public virtual global::System.Nullable kbarticleid { get { - return this._languagecode; + return this._kbarticleid; } set { - this.OnlanguagecodeChanging(value); - this._languagecode = value; - this.OnlanguagecodeChanged(); + this.OnkbarticleidChanging(value); + this._kbarticleid = value; + this.OnkbarticleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _languagecode; - partial void OnlanguagecodeChanging(global::System.Nullable value); - partial void OnlanguagecodeChanged(); + private global::System.Nullable _kbarticleid; + partial void OnkbarticleidChanging(global::System.Nullable value); + partial void OnkbarticleidChanged(); + /// + /// There are no comments for Property keywords in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string keywords + { + get + { + return this._keywords; + } + set + { + this.OnkeywordsChanging(value); + this._keywords = value; + this.OnkeywordsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _keywords; + partial void OnkeywordsChanging(string value); + partial void OnkeywordsChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -371366,28 +371476,6 @@ public virtual string content partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property kbarticleid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable kbarticleid - { - get - { - return this._kbarticleid; - } - set - { - this.OnkbarticleidChanging(value); - this._kbarticleid = value; - this.OnkbarticleidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _kbarticleid; - partial void OnkbarticleidChanging(global::System.Nullable value); - partial void OnkbarticleidChanged(); - /// /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -371432,28 +371520,6 @@ public virtual byte[] entityimage partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property title in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -371520,49 +371586,49 @@ public virtual string title partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable statuscode { get { - return this.__modifiedby_value; + return this._statuscode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _subjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _subjectid_value { get { - return this._importsequencenumber; + return this.__subjectid_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_subjectid_valueChanging(value); + this.__subjectid_value = value; + this.On_subjectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __subjectid_value; + partial void On_subjectid_valueChanging(global::System.Nullable value); + partial void On_subjectid_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -371586,27 +371652,49 @@ public virtual string title partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property keywords in the schema. + /// There are no comments for Property number in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string keywords + public virtual string number { get { - return this._keywords; + return this._number; } set { - this.OnkeywordsChanging(value); - this._keywords = value; - this.OnkeywordsChanged(); + this.OnnumberChanging(value); + this._number = value; + this.OnnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _keywords; - partial void OnkeywordsChanging(string value); - partial void OnkeywordsChanged(); + private string _number; + partial void OnnumberChanging(string value); + partial void OnnumberChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -371630,27 +371718,27 @@ public virtual string keywords partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property entityimage_timestamp in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimage_timestamp + public virtual global::System.Nullable importsequencenumber { get { - return this._entityimage_timestamp; + return this._importsequencenumber; } set { - this.Onentityimage_timestampChanging(value); - this._entityimage_timestamp = value; - this.Onentityimage_timestampChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimage_timestamp; - partial void Onentityimage_timestampChanging(global::System.Nullable value); - partial void Onentityimage_timestampChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property entityimageid in the schema. /// @@ -371674,71 +371762,49 @@ public virtual string keywords partial void OnentityimageidChanging(global::System.Nullable value); partial void OnentityimageidChanged(); /// - /// There are no comments for Property number in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string number - { - get - { - return this._number; - } - set - { - this.OnnumberChanging(value); - this._number = value; - this.OnnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _number; - partial void OnnumberChanging(string value); - partial void OnnumberChanged(); - /// - /// There are no comments for Property _subjectid_value in the schema. + /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _subjectid_value + public virtual global::System.Nullable entityimage_timestamp { get { - return this.__subjectid_value; + return this._entityimage_timestamp; } set { - this.On_subjectid_valueChanging(value); - this.__subjectid_value = value; - this.On_subjectid_valueChanged(); + this.Onentityimage_timestampChanging(value); + this._entityimage_timestamp = value; + this.Onentityimage_timestampChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __subjectid_value; - partial void On_subjectid_valueChanging(global::System.Nullable value); - partial void On_subjectid_valueChanged(); + private global::System.Nullable _entityimage_timestamp; + partial void Onentityimage_timestampChanging(global::System.Nullable value); + partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property languagecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable languagecode { get { - return this._statecode; + return this._languagecode; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnlanguagecodeChanging(value); + this._languagecode = value; + this.OnlanguagecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _languagecode; + partial void OnlanguagecodeChanging(global::System.Nullable value); + partial void OnlanguagecodeChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -371850,27 +371916,27 @@ public virtual string comments partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual global::System.Nullable _modifiedby_value { get { - return this._entityimage_url; + return this.__modifiedby_value; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property createdonbehalfby in the schema. /// @@ -372647,71 +372713,71 @@ public static kbarticletemplate Createkbarticletemplate(global::EMBC.ESS.Utiliti partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property kbarticletemplateidunique in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable kbarticletemplateidunique + public virtual global::System.Nullable _modifiedby_value { get { - return this._kbarticletemplateidunique; + return this.__modifiedby_value; } set { - this.OnkbarticletemplateiduniqueChanging(value); - this._kbarticletemplateidunique = value; - this.OnkbarticletemplateiduniqueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _kbarticletemplateidunique; - partial void OnkbarticletemplateiduniqueChanging(global::System.Nullable value); - partial void OnkbarticletemplateiduniqueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string description { get { - return this._overriddencreatedon; + return this._description; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable ismanaged { get { - return this._description; + return this._ismanaged; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property languagecode in the schema. /// @@ -372801,27 +372867,49 @@ public virtual string formatxml partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _createdby_value { get { - return this._componentstate; + return this.__createdby_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property isactive in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isactive + { + get + { + return this._isactive; + } + set + { + this.OnisactiveChanging(value); + this._isactive = value; + this.OnisactiveChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isactive; + partial void OnisactiveChanging(global::System.Nullable value); + partial void OnisactiveChanged(); /// /// There are no comments for Property structurexml in the schema. /// @@ -372889,49 +372977,27 @@ public virtual string structurexml partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property isactive in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isactive - { - get - { - return this._isactive; - } - set - { - this.OnisactiveChanging(value); - this._isactive = value; - this.OnisactiveChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isactive; - partial void OnisactiveChanging(global::System.Nullable value); - partial void OnisactiveChanged(); - /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable overriddencreatedon { get { - return this._ismanaged; + return this._overriddencreatedon; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -373065,49 +373131,49 @@ public virtual string introducedversion partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable componentstate { get { - return this.__createdby_value; + return this._componentstate; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property kbarticletemplateidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable kbarticletemplateidunique { get { - return this.__modifiedby_value; + return this._kbarticletemplateidunique; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnkbarticletemplateiduniqueChanging(value); + this._kbarticletemplateidunique = value; + this.OnkbarticletemplateiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _kbarticletemplateidunique; + partial void OnkbarticletemplateiduniqueChanging(global::System.Nullable value); + partial void OnkbarticletemplateiduniqueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -373898,6 +373964,28 @@ public static knowledgearticleincident Createknowledgearticleincident(global::EM partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property knowledgeusage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable knowledgeusage + { + get + { + return this._knowledgeusage; + } + set + { + this.OnknowledgeusageChanging(value); + this._knowledgeusage = value; + this.OnknowledgeusageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _knowledgeusage; + partial void OnknowledgeusageChanging(global::System.Nullable value); + partial void OnknowledgeusageChanged(); + /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -374030,28 +374118,6 @@ public static knowledgearticleincident Createknowledgearticleincident(global::EM partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -374074,28 +374140,6 @@ public static knowledgearticleincident Createknowledgearticleincident(global::EM partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property knowledgeusage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable knowledgeusage - { - get - { - return this._knowledgeusage; - } - set - { - this.OnknowledgeusageChanging(value); - this._knowledgeusage = value; - this.OnknowledgeusageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _knowledgeusage; - partial void OnknowledgeusageChanging(global::System.Nullable value); - partial void OnknowledgeusageChanged(); - /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -374140,6 +374184,28 @@ public static knowledgearticleincident Createknowledgearticleincident(global::EM partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -376157,6 +376223,28 @@ public static knowledgearticle Createknowledgearticle(global::EMBC.ESS.Utilities return knowledgearticle; } /// + /// There are no comments for Property isinternal in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isinternal + { + get + { + return this._isinternal; + } + set + { + this.OnisinternalChanging(value); + this._isinternal = value; + this.OnisinternalChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isinternal; + partial void OnisinternalChanging(global::System.Nullable value); + partial void OnisinternalChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -376179,27 +376267,27 @@ public static knowledgearticle Createknowledgearticle(global::EMBC.ESS.Utilities partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _languagelocaleid_value in the schema. + /// There are no comments for Property knowledgearticleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _languagelocaleid_value + public virtual global::System.Nullable knowledgearticleid { get { - return this.__languagelocaleid_value; + return this._knowledgearticleid; } set { - this.On_languagelocaleid_valueChanging(value); - this.__languagelocaleid_value = value; - this.On_languagelocaleid_valueChanged(); + this.OnknowledgearticleidChanging(value); + this._knowledgearticleid = value; + this.OnknowledgearticleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __languagelocaleid_value; - partial void On_languagelocaleid_valueChanging(global::System.Nullable value); - partial void On_languagelocaleid_valueChanged(); + private global::System.Nullable _knowledgearticleid; + partial void OnknowledgearticleidChanging(global::System.Nullable value); + partial void OnknowledgearticleidChanged(); /// /// There are no comments for Property publishstatusid in the schema. /// @@ -376223,27 +376311,27 @@ public static knowledgearticle Createknowledgearticle(global::EMBC.ESS.Utilities partial void OnpublishstatusidChanging(global::System.Nullable value); partial void OnpublishstatusidChanged(); /// - /// There are no comments for Property expiredreviewoptions in the schema. + /// There are no comments for Property islatestversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable expiredreviewoptions + public virtual global::System.Nullable islatestversion { get { - return this._expiredreviewoptions; + return this._islatestversion; } set { - this.OnexpiredreviewoptionsChanging(value); - this._expiredreviewoptions = value; - this.OnexpiredreviewoptionsChanged(); + this.OnislatestversionChanging(value); + this._islatestversion = value; + this.OnislatestversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expiredreviewoptions; - partial void OnexpiredreviewoptionsChanging(global::System.Nullable value); - partial void OnexpiredreviewoptionsChanged(); + private global::System.Nullable _islatestversion; + partial void OnislatestversionChanging(global::System.Nullable value); + partial void OnislatestversionChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -376289,27 +376377,27 @@ public static knowledgearticle Createknowledgearticle(global::EMBC.ESS.Utilities partial void Onknowledgearticleviews_dateChanging(global::System.Nullable value); partial void Onknowledgearticleviews_dateChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property expiredreviewoptions in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable expiredreviewoptions { get { - return this._importsequencenumber; + return this._expiredreviewoptions; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnexpiredreviewoptionsChanging(value); + this._expiredreviewoptions = value; + this.OnexpiredreviewoptionsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _expiredreviewoptions; + partial void OnexpiredreviewoptionsChanging(global::System.Nullable value); + partial void OnexpiredreviewoptionsChanged(); /// /// There are no comments for Property description in the schema. /// @@ -376487,71 +376575,71 @@ public virtual string content partial void On_parentarticlecontentid_valueChanging(global::System.Nullable value); partial void On_parentarticlecontentid_valueChanged(); /// - /// There are no comments for Property knowledgearticleviews in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable knowledgearticleviews + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._knowledgearticleviews; + return this.__createdonbehalfby_value; } set { - this.OnknowledgearticleviewsChanging(value); - this._knowledgearticleviews = value; - this.OnknowledgearticleviewsChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _knowledgearticleviews; - partial void OnknowledgearticleviewsChanging(global::System.Nullable value); - partial void OnknowledgearticleviewsChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _subjectid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _subjectid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__subjectid_value; + return this.__owningbusinessunit_value; } set { - this.On_subjectid_valueChanging(value); - this.__subjectid_value = value; - this.On_subjectid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __subjectid_value; - partial void On_subjectid_valueChanging(global::System.Nullable value); - partial void On_subjectid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property expirationstateid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable expirationstateid { get { - return this.__owningbusinessunit_value; + return this._expirationstateid; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnexpirationstateidChanging(value); + this._expirationstateid = value; + this.OnexpirationstateidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _expirationstateid; + partial void OnexpirationstateidChanging(global::System.Nullable value); + partial void OnexpirationstateidChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -376597,6 +376685,50 @@ public virtual string keywords partial void OnkeywordsChanging(string value); partial void OnkeywordsChanged(); /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// /// There are no comments for Property isprimary in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -376619,6 +376751,28 @@ public virtual string keywords partial void OnisprimaryChanging(global::System.Nullable value); partial void OnisprimaryChanged(); /// + /// There are no comments for Property traversedpath in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string traversedpath + { + get + { + return this._traversedpath; + } + set + { + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); + /// /// There are no comments for Property _primaryauthorid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -376707,71 +376861,71 @@ public virtual string keywords partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property updatecontent in the schema. + /// There are no comments for Property expirationstatusid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable updatecontent + public virtual global::System.Nullable expirationstatusid { get { - return this._updatecontent; + return this._expirationstatusid; } set { - this.OnupdatecontentChanging(value); - this._updatecontent = value; - this.OnupdatecontentChanged(); + this.OnexpirationstatusidChanging(value); + this._expirationstatusid = value; + this.OnexpirationstatusidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _updatecontent; - partial void OnupdatecontentChanging(global::System.Nullable value); - partial void OnupdatecontentChanged(); + private global::System.Nullable _expirationstatusid; + partial void OnexpirationstatusidChanging(global::System.Nullable value); + partial void OnexpirationstatusidChanged(); /// - /// There are no comments for Property stageid in the schema. + /// There are no comments for Property rating in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable stageid + public virtual global::System.Nullable rating { get { - return this._stageid; + return this._rating; } set { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); + this.OnratingChanging(value); + this._rating = value; + this.OnratingChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stageid; - partial void OnstageidChanging(global::System.Nullable value); - partial void OnstageidChanged(); + private global::System.Nullable _rating; + partial void OnratingChanging(global::System.Nullable value); + partial void OnratingChanged(); /// - /// There are no comments for Property expirationstateid in the schema. + /// There are no comments for Property _languagelocaleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable expirationstateid + public virtual global::System.Nullable _languagelocaleid_value { get { - return this._expirationstateid; + return this.__languagelocaleid_value; } set { - this.OnexpirationstateidChanging(value); - this._expirationstateid = value; - this.OnexpirationstateidChanged(); + this.On_languagelocaleid_valueChanging(value); + this.__languagelocaleid_value = value; + this.On_languagelocaleid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expirationstateid; - partial void OnexpirationstateidChanging(global::System.Nullable value); - partial void OnexpirationstateidChanged(); + private global::System.Nullable __languagelocaleid_value; + partial void On_languagelocaleid_valueChanging(global::System.Nullable value); + partial void On_languagelocaleid_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -376817,49 +376971,93 @@ public virtual string keywords partial void Onknowledgearticleviews_stateChanging(global::System.Nullable value); partial void Onknowledgearticleviews_stateChanged(); /// - /// There are no comments for Property minorversionnumber in the schema. + /// There are no comments for Property _rootarticleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable minorversionnumber + public virtual global::System.Nullable _rootarticleid_value { get { - return this._minorversionnumber; + return this.__rootarticleid_value; } set { - this.OnminorversionnumberChanging(value); - this._minorversionnumber = value; - this.OnminorversionnumberChanged(); + this.On_rootarticleid_valueChanging(value); + this.__rootarticleid_value = value; + this.On_rootarticleid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _minorversionnumber; - partial void OnminorversionnumberChanging(global::System.Nullable value); - partial void OnminorversionnumberChanged(); + private global::System.Nullable __rootarticleid_value; + partial void On_rootarticleid_valueChanging(global::System.Nullable value); + partial void On_rootarticleid_valueChanged(); /// - /// There are no comments for Property knowledgearticleid in the schema. + /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable knowledgearticleid + public virtual global::System.Nullable stageid { get { - return this._knowledgearticleid; + return this._stageid; } set { - this.OnknowledgearticleidChanging(value); - this._knowledgearticleid = value; - this.OnknowledgearticleidChanged(); + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _knowledgearticleid; - partial void OnknowledgearticleidChanging(global::System.Nullable value); - partial void OnknowledgearticleidChanged(); + private global::System.Nullable _stageid; + partial void OnstageidChanging(global::System.Nullable value); + partial void OnstageidChanged(); + /// + /// There are no comments for Property knowledgearticleviews in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable knowledgearticleviews + { + get + { + return this._knowledgearticleviews; + } + set + { + this.OnknowledgearticleviewsChanging(value); + this._knowledgearticleviews = value; + this.OnknowledgearticleviewsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _knowledgearticleviews; + partial void OnknowledgearticleviewsChanging(global::System.Nullable value); + partial void OnknowledgearticleviewsChanged(); + /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property rating_sum in the schema. /// @@ -376905,49 +377103,49 @@ public virtual string keywords partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property expirationstatusid in the schema. + /// There are no comments for Property setproductassociations in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable expirationstatusid + public virtual global::System.Nullable setproductassociations { get { - return this._expirationstatusid; + return this._setproductassociations; } set { - this.OnexpirationstatusidChanging(value); - this._expirationstatusid = value; - this.OnexpirationstatusidChanged(); + this.OnsetproductassociationsChanging(value); + this._setproductassociations = value; + this.OnsetproductassociationsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expirationstatusid; - partial void OnexpirationstatusidChanging(global::System.Nullable value); - partial void OnexpirationstatusidChanged(); + private global::System.Nullable _setproductassociations; + partial void OnsetproductassociationsChanging(global::System.Nullable value); + partial void OnsetproductassociationsChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property scheduledstatusid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable scheduledstatusid { get { - return this._statecode; + return this._scheduledstatusid; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnscheduledstatusidChanging(value); + this._scheduledstatusid = value; + this.OnscheduledstatusidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _scheduledstatusid; + partial void OnscheduledstatusidChanging(global::System.Nullable value); + partial void OnscheduledstatusidChanged(); /// /// There are no comments for Property isrootarticle in the schema. /// @@ -376993,71 +377191,27 @@ public virtual string keywords partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property rating_count in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable rating_count - { - get - { - return this._rating_count; - } - set - { - this.Onrating_countChanging(value); - this._rating_count = value; - this.Onrating_countChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _rating_count; - partial void Onrating_countChanging(global::System.Nullable value); - partial void Onrating_countChanged(); - /// - /// There are no comments for Property setproductassociations in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable setproductassociations - { - get - { - return this._setproductassociations; - } - set - { - this.OnsetproductassociationsChanging(value); - this._setproductassociations = value; - this.OnsetproductassociationsChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _setproductassociations; - partial void OnsetproductassociationsChanging(global::System.Nullable value); - partial void OnsetproductassociationsChanged(); - /// - /// There are no comments for Property islatestversion in the schema. + /// There are no comments for Property _subjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable islatestversion + public virtual global::System.Nullable _subjectid_value { get { - return this._islatestversion; + return this.__subjectid_value; } set { - this.OnislatestversionChanging(value); - this._islatestversion = value; - this.OnislatestversionChanged(); + this.On_subjectid_valueChanging(value); + this.__subjectid_value = value; + this.On_subjectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _islatestversion; - partial void OnislatestversionChanging(global::System.Nullable value); - partial void OnislatestversionChanged(); + private global::System.Nullable __subjectid_value; + partial void On_subjectid_valueChanging(global::System.Nullable value); + partial void On_subjectid_valueChanged(); /// /// There are no comments for Property publishon in the schema. /// @@ -377081,115 +377235,93 @@ public virtual string keywords partial void OnpublishonChanging(global::System.Nullable value); partial void OnpublishonChanged(); /// - /// There are no comments for Property processid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable processid - { - get - { - return this._processid; - } - set - { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); - /// - /// There are no comments for Property scheduledstatusid in the schema. + /// There are no comments for Property rating_count in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable scheduledstatusid + public virtual global::System.Nullable rating_count { get { - return this._scheduledstatusid; + return this._rating_count; } set { - this.OnscheduledstatusidChanging(value); - this._scheduledstatusid = value; - this.OnscheduledstatusidChanged(); + this.Onrating_countChanging(value); + this._rating_count = value; + this.Onrating_countChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _scheduledstatusid; - partial void OnscheduledstatusidChanging(global::System.Nullable value); - partial void OnscheduledstatusidChanged(); + private global::System.Nullable _rating_count; + partial void Onrating_countChanging(global::System.Nullable value); + partial void Onrating_countChanged(); /// - /// There are no comments for Property _previousarticlecontentid_value in the schema. + /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _previousarticlecontentid_value + public virtual global::System.Nullable processid { get { - return this.__previousarticlecontentid_value; + return this._processid; } set { - this.On_previousarticlecontentid_valueChanging(value); - this.__previousarticlecontentid_value = value; - this.On_previousarticlecontentid_valueChanged(); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __previousarticlecontentid_value; - partial void On_previousarticlecontentid_valueChanging(global::System.Nullable value); - partial void On_previousarticlecontentid_valueChanged(); + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property title in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual string title { get { - return this.__transactioncurrencyid_value; + return this._title; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.OntitleChanging(value); + this._title = value; + this.OntitleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private string _title; + partial void OntitleChanging(string value); + partial void OntitleChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property minorversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable minorversionnumber { get { - return this.__createdonbehalfby_value; + return this._minorversionnumber; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnminorversionnumberChanging(value); + this._minorversionnumber = value; + this.OnminorversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _minorversionnumber; + partial void OnminorversionnumberChanging(global::System.Nullable value); + partial void OnminorversionnumberChanged(); /// /// There are no comments for Property majorversionnumber in the schema. /// @@ -377235,49 +377367,27 @@ public virtual string articlepublicnumber partial void OnarticlepublicnumberChanging(string value); partial void OnarticlepublicnumberChanged(); /// - /// There are no comments for Property traversedpath in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string traversedpath - { - get - { - return this._traversedpath; - } - set - { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); - /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _previousarticlecontentid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _previousarticlecontentid_value { get { - return this._statuscode; + return this.__previousarticlecontentid_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_previousarticlecontentid_valueChanging(value); + this.__previousarticlecontentid_value = value; + this.On_previousarticlecontentid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __previousarticlecontentid_value; + partial void On_previousarticlecontentid_valueChanging(global::System.Nullable value); + partial void On_previousarticlecontentid_valueChanged(); /// /// There are no comments for Property expirationdate in the schema. /// @@ -377301,49 +377411,27 @@ public virtual string traversedpath partial void OnexpirationdateChanging(global::System.Nullable value); partial void OnexpirationdateChanged(); /// - /// There are no comments for Property _rootarticleid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _rootarticleid_value - { - get - { - return this.__rootarticleid_value; - } - set - { - this.On_rootarticleid_valueChanging(value); - this.__rootarticleid_value = value; - this.On_rootarticleid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __rootarticleid_value; - partial void On_rootarticleid_valueChanging(global::System.Nullable value); - partial void On_rootarticleid_valueChanged(); - /// - /// There are no comments for Property rating in the schema. + /// There are no comments for Property updatecontent in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable rating + public virtual global::System.Nullable updatecontent { get { - return this._rating; + return this._updatecontent; } set { - this.OnratingChanging(value); - this._rating = value; - this.OnratingChanged(); + this.OnupdatecontentChanging(value); + this._updatecontent = value; + this.OnupdatecontentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _rating; - partial void OnratingChanging(global::System.Nullable value); - partial void OnratingChanged(); + private global::System.Nullable _updatecontent; + partial void OnupdatecontentChanging(global::System.Nullable value); + partial void OnupdatecontentChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -377367,27 +377455,27 @@ public virtual string traversedpath partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property title in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string title + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._title; + return this.__transactioncurrencyid_value; } set { - this.OntitleChanging(value); - this._title = value; - this.OntitleChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _title; - partial void OntitleChanging(string value); - partial void OntitleChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property readyforreview in the schema. /// @@ -377433,28 +377521,6 @@ public virtual string title partial void OnreviewChanging(global::System.Nullable value); partial void OnreviewChanged(); /// - /// There are no comments for Property isinternal in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isinternal - { - get - { - return this._isinternal; - } - set - { - this.OnisinternalChanging(value); - this._isinternal = value; - this.OnisinternalChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isinternal; - partial void OnisinternalChanging(global::System.Nullable value); - partial void OnisinternalChanged(); - /// /// There are no comments for Property setcategoryassociations in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -379087,27 +379153,27 @@ public static knowledgearticleviews Createknowledgearticleviews(global::EMBC.ESS partial void OnlocationChanging(global::System.Nullable value); partial void OnlocationChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable modifiedon { get { - return this._utcconversiontimezonecode; + return this._modifiedon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -379175,27 +379241,27 @@ public static knowledgearticleviews Createknowledgearticleviews(global::EMBC.ESS partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._modifiedon; + return this._utcconversiontimezonecode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property owningbusinessunit in the schema. /// @@ -379263,27 +379329,27 @@ public static knowledgearticleviews Createknowledgearticleviews(global::EMBC.ESS partial void OnknowledgearticleviewsidChanging(global::System.Nullable value); partial void OnknowledgearticleviewsidChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable createdon { get { - return this.__createdonbehalfby_value; + return this._createdon; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -379307,27 +379373,27 @@ public static knowledgearticleviews Createknowledgearticleviews(global::EMBC.ESS partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property knowledgearticleview in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable knowledgearticleview { get { - return this._statuscode; + return this._knowledgearticleview; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnknowledgearticleviewChanging(value); + this._knowledgearticleview = value; + this.OnknowledgearticleviewChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _knowledgearticleview; + partial void OnknowledgearticleviewChanging(global::System.Nullable value); + partial void OnknowledgearticleviewChanged(); /// /// There are no comments for Property owninguser in the schema. /// @@ -379351,6 +379417,28 @@ public static knowledgearticleviews Createknowledgearticleviews(global::EMBC.ESS partial void OnowninguserChanging(global::System.Nullable value); partial void OnowninguserChanged(); /// + /// There are no comments for Property _knowledgearticleid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _knowledgearticleid_value + { + get + { + return this.__knowledgearticleid_value; + } + set + { + this.On_knowledgearticleid_valueChanging(value); + this.__knowledgearticleid_value = value; + this.On_knowledgearticleid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __knowledgearticleid_value; + partial void On_knowledgearticleid_valueChanging(global::System.Nullable value); + partial void On_knowledgearticleid_valueChanged(); + /// /// There are no comments for Property viewdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -379373,27 +379461,27 @@ public static knowledgearticleviews Createknowledgearticleviews(global::EMBC.ESS partial void OnviewdateChanging(global::System.Nullable value); partial void OnviewdateChanged(); /// - /// There are no comments for Property knowledgearticleview in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable knowledgearticleview + public virtual global::System.Nullable statuscode { get { - return this._knowledgearticleview; + return this._statuscode; } set { - this.OnknowledgearticleviewChanging(value); - this._knowledgearticleview = value; - this.OnknowledgearticleviewChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _knowledgearticleview; - partial void OnknowledgearticleviewChanging(global::System.Nullable value); - partial void OnknowledgearticleviewChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -379461,27 +379549,27 @@ public static knowledgearticleviews Createknowledgearticleviews(global::EMBC.ESS partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._createdon; + return this.__createdonbehalfby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -379549,28 +379637,6 @@ public static knowledgearticleviews Createknowledgearticleviews(global::EMBC.ESS partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _knowledgearticleid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _knowledgearticleid_value - { - get - { - return this.__knowledgearticleid_value; - } - set - { - this.On_knowledgearticleid_valueChanging(value); - this.__knowledgearticleid_value = value; - this.On_knowledgearticleid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __knowledgearticleid_value; - partial void On_knowledgearticleid_valueChanging(global::System.Nullable value); - partial void On_knowledgearticleid_valueChanged(); - /// /// There are no comments for Property KnowledgeArticleViews_SyncErrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -381748,71 +381814,49 @@ public static languagelocale Createlanguagelocale(global::EMBC.ESS.Utilities.Dyn return languagelocale; } /// - /// There are no comments for Property languagelocaleid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable languagelocaleid - { - get - { - return this._languagelocaleid; - } - set - { - this.OnlanguagelocaleidChanging(value); - this._languagelocaleid = value; - this.OnlanguagelocaleidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _languagelocaleid; - partial void OnlanguagelocaleidChanging(global::System.Nullable value); - partial void OnlanguagelocaleidChanged(); - /// - /// There are no comments for Property region in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string region + public virtual global::System.Nullable statuscode { get { - return this._region; + return this._statuscode; } set { - this.OnregionChanging(value); - this._region = value; - this.OnregionChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _region; - partial void OnregionChanging(string value); - partial void OnregionChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property languagelocaleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable languagelocaleid { get { - return this._name; + return this._languagelocaleid; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnlanguagelocaleidChanging(value); + this._languagelocaleid = value; + this.OnlanguagelocaleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _languagelocaleid; + partial void OnlanguagelocaleidChanging(global::System.Nullable value); + partial void OnlanguagelocaleidChanged(); /// /// There are no comments for Property language in the schema. /// @@ -381902,49 +381946,71 @@ public virtual string code partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _organizationid_value { get { - return this._statuscode; + return this.__organizationid_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual string name { get { - return this.__organizationid_value; + return this._name; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property region in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string region + { + get + { + return this._region; + } + set + { + this.OnregionChanging(value); + this._region = value; + this.OnregionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _region; + partial void OnregionChanging(string value); + partial void OnregionChanged(); /// /// There are no comments for Property localeid in the schema. /// @@ -386109,28 +386175,6 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property address2_telephone1 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_telephone1 - { - get - { - return this._address2_telephone1; - } - set - { - this.Onaddress2_telephone1Changing(value); - this._address2_telephone1 = value; - this.Onaddress2_telephone1Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone1; - partial void Onaddress2_telephone1Changing(string value); - partial void Onaddress2_telephone1Changed(); - /// /// There are no comments for Property address1_latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -386175,49 +386219,49 @@ public virtual string address2_telephone1 partial void OnmergedChanging(global::System.Nullable value); partial void OnmergedChanged(); /// - /// There are no comments for Property address1_shippingmethodcode in the schema. + /// There are no comments for Property sic in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_shippingmethodcode + public virtual string sic { get { - return this._address1_shippingmethodcode; + return this._sic; } set { - this.Onaddress1_shippingmethodcodeChanging(value); - this._address1_shippingmethodcode = value; - this.Onaddress1_shippingmethodcodeChanged(); + this.OnsicChanging(value); + this._sic = value; + this.OnsicChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_shippingmethodcode; - partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress1_shippingmethodcodeChanged(); + private string _sic; + partial void OnsicChanging(string value); + partial void OnsicChanged(); /// - /// There are no comments for Property address2_line3 in the schema. + /// There are no comments for Property address1_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_line3 + public virtual global::System.Nullable address1_shippingmethodcode { get { - return this._address2_line3; + return this._address1_shippingmethodcode; } set { - this.Onaddress2_line3Changing(value); - this._address2_line3 = value; - this.Onaddress2_line3Changed(); + this.Onaddress1_shippingmethodcodeChanging(value); + this._address1_shippingmethodcode = value; + this.Onaddress1_shippingmethodcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line3; - partial void Onaddress2_line3Changing(string value); - partial void Onaddress2_line3Changed(); + private global::System.Nullable _address1_shippingmethodcode; + partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress1_shippingmethodcodeChanged(); /// /// There are no comments for Property address2_latitude in the schema. /// @@ -386263,28 +386307,6 @@ public virtual string address2_line3 partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _customerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _customerid_value - { - get - { - return this.__customerid_value; - } - set - { - this.On_customerid_valueChanging(value); - this.__customerid_value = value; - this.On_customerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __customerid_value; - partial void On_customerid_valueChanging(global::System.Nullable value); - partial void On_customerid_valueChanged(); - /// /// There are no comments for Property firstname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -386329,6 +386351,28 @@ public virtual string lastname partial void OnlastnameChanging(string value); partial void OnlastnameChanged(); /// + /// There are no comments for Property timespentbymeonemailandmeetings in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string timespentbymeonemailandmeetings + { + get + { + return this._timespentbymeonemailandmeetings; + } + set + { + this.OntimespentbymeonemailandmeetingsChanging(value); + this._timespentbymeonemailandmeetings = value; + this.OntimespentbymeonemailandmeetingsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _timespentbymeonemailandmeetings; + partial void OntimespentbymeonemailandmeetingsChanging(string value); + partial void OntimespentbymeonemailandmeetingsChanged(); + /// /// There are no comments for Property revenue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -386483,27 +386527,27 @@ public virtual string address1_upszone partial void Onschedulefollowup_prospectChanging(global::System.Nullable value); partial void Onschedulefollowup_prospectChanged(); /// - /// There are no comments for Property evaluatefit in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable evaluatefit + public virtual global::System.Nullable _owningteam_value { get { - return this._evaluatefit; + return this.__owningteam_value; } set { - this.OnevaluatefitChanging(value); - this._evaluatefit = value; - this.OnevaluatefitChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _evaluatefit; - partial void OnevaluatefitChanging(global::System.Nullable value); - partial void OnevaluatefitChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property address2_country in the schema. /// @@ -386527,49 +386571,49 @@ public virtual string address2_country partial void Onaddress2_countryChanging(string value); partial void Onaddress2_countryChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property address1_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual string address1_telephone1 { get { - return this._exchangerate; + return this._address1_telephone1; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.Onaddress1_telephone1Changing(value); + this._address1_telephone1 = value; + this.Onaddress1_telephone1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private string _address1_telephone1; + partial void Onaddress1_telephone1Changing(string value); + partial void Onaddress1_telephone1Changed(); /// - /// There are no comments for Property industrycode in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable industrycode + public virtual global::System.Nullable exchangerate { get { - return this._industrycode; + return this._exchangerate; } set { - this.OnindustrycodeChanging(value); - this._industrycode = value; - this.OnindustrycodeChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _industrycode; - partial void OnindustrycodeChanging(global::System.Nullable value); - partial void OnindustrycodeChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property budgetstatus in the schema. /// @@ -386659,49 +386703,49 @@ public virtual string address2_name partial void On_accountid_valueChanging(global::System.Nullable value); partial void On_accountid_valueChanged(); /// - /// There are no comments for Property lastonholdtime in the schema. + /// There are no comments for Property address2_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lastonholdtime + public virtual string address2_telephone1 { get { - return this._lastonholdtime; + return this._address2_telephone1; } set { - this.OnlastonholdtimeChanging(value); - this._lastonholdtime = value; - this.OnlastonholdtimeChanged(); + this.Onaddress2_telephone1Changing(value); + this._address2_telephone1 = value; + this.Onaddress2_telephone1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastonholdtime; - partial void OnlastonholdtimeChanging(global::System.Nullable value); - partial void OnlastonholdtimeChanged(); + private string _address2_telephone1; + partial void Onaddress2_telephone1Changing(string value); + partial void Onaddress2_telephone1Changed(); /// - /// There are no comments for Property salesstage in the schema. + /// There are no comments for Property address1_telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable salesstage + public virtual string address1_telephone3 { get { - return this._salesstage; + return this._address1_telephone3; } set { - this.OnsalesstageChanging(value); - this._salesstage = value; - this.OnsalesstageChanged(); + this.Onaddress1_telephone3Changing(value); + this._address1_telephone3 = value; + this.Onaddress1_telephone3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _salesstage; - partial void OnsalesstageChanging(global::System.Nullable value); - partial void OnsalesstageChanged(); + private string _address1_telephone3; + partial void Onaddress1_telephone3Changing(string value); + partial void Onaddress1_telephone3Changed(); /// /// There are no comments for Property address1_utcoffset in the schema. /// @@ -386725,28 +386769,6 @@ public virtual string address2_name partial void Onaddress1_utcoffsetChanging(global::System.Nullable value); partial void Onaddress1_utcoffsetChanged(); /// - /// There are no comments for Property entityimage_url in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string entityimage_url - { - get - { - return this._entityimage_url; - } - set - { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); - /// /// There are no comments for Property onholdtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -386769,27 +386791,27 @@ public virtual string entityimage_url partial void OnonholdtimeChanging(global::System.Nullable value); partial void OnonholdtimeChanged(); /// - /// There are no comments for Property address2_city in the schema. + /// There are no comments for Property donotphone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_city + public virtual global::System.Nullable donotphone { get { - return this._address2_city; + return this._donotphone; } set { - this.Onaddress2_cityChanging(value); - this._address2_city = value; - this.Onaddress2_cityChanged(); + this.OndonotphoneChanging(value); + this._donotphone = value; + this.OndonotphoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_city; - partial void Onaddress2_cityChanging(string value); - partial void Onaddress2_cityChanged(); + private global::System.Nullable _donotphone; + partial void OndonotphoneChanging(global::System.Nullable value); + partial void OndonotphoneChanged(); /// /// There are no comments for Property stageid in the schema. /// @@ -386813,27 +386835,27 @@ public virtual string address2_city partial void OnstageidChanging(global::System.Nullable value); partial void OnstageidChanged(); /// - /// There are no comments for Property _slaid_value in the schema. + /// There are no comments for Property fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _slaid_value + public virtual string fax { get { - return this.__slaid_value; + return this._fax; } set { - this.On_slaid_valueChanging(value); - this.__slaid_value = value; - this.On_slaid_valueChanged(); + this.OnfaxChanging(value); + this._fax = value; + this.OnfaxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __slaid_value; - partial void On_slaid_valueChanging(global::System.Nullable value); - partial void On_slaid_valueChanged(); + private string _fax; + partial void OnfaxChanging(string value); + partial void OnfaxChanged(); /// /// There are no comments for Property jobtitle in the schema. /// @@ -386923,27 +386945,49 @@ public virtual string emailaddress2 partial void On_parentcontactid_valueChanging(global::System.Nullable value); partial void On_parentcontactid_valueChanged(); /// - /// There are no comments for Property participatesinworkflow in the schema. + /// There are no comments for Property address2_addressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable participatesinworkflow + public virtual global::System.Nullable address2_addressid { get { - return this._participatesinworkflow; + return this._address2_addressid; } set { - this.OnparticipatesinworkflowChanging(value); - this._participatesinworkflow = value; - this.OnparticipatesinworkflowChanged(); + this.Onaddress2_addressidChanging(value); + this._address2_addressid = value; + this.Onaddress2_addressidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _participatesinworkflow; - partial void OnparticipatesinworkflowChanging(global::System.Nullable value); - partial void OnparticipatesinworkflowChanged(); + private global::System.Nullable _address2_addressid; + partial void Onaddress2_addressidChanging(global::System.Nullable value); + partial void Onaddress2_addressidChanged(); + /// + /// There are no comments for Property need in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable need + { + get + { + return this._need; + } + set + { + this.OnneedChanging(value); + this._need = value; + this.OnneedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _need; + partial void OnneedChanging(global::System.Nullable value); + partial void OnneedChanged(); /// /// There are no comments for Property address1_addressid in the schema. /// @@ -386967,6 +387011,28 @@ public virtual string emailaddress2 partial void Onaddress1_addressidChanging(global::System.Nullable value); partial void Onaddress1_addressidChanged(); /// + /// There are no comments for Property businesscardattributes in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string businesscardattributes + { + get + { + return this._businesscardattributes; + } + set + { + this.OnbusinesscardattributesChanging(value); + this._businesscardattributes = value; + this.OnbusinesscardattributesChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _businesscardattributes; + partial void OnbusinesscardattributesChanging(string value); + partial void OnbusinesscardattributesChanged(); + /// /// There are no comments for Property purchaseprocess in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -387011,6 +387077,28 @@ public virtual string emailaddress2 partial void OnestimatedamountChanging(global::System.Nullable value); partial void OnestimatedamountChanged(); /// + /// There are no comments for Property address1_stateorprovince in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_stateorprovince + { + get + { + return this._address1_stateorprovince; + } + set + { + this.Onaddress1_stateorprovinceChanging(value); + this._address1_stateorprovince = value; + this.Onaddress1_stateorprovinceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_stateorprovince; + partial void Onaddress1_stateorprovinceChanging(string value); + partial void Onaddress1_stateorprovinceChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -387099,49 +387187,49 @@ public virtual string address2_stateorprovince partial void Onaddress2_stateorprovinceChanging(string value); partial void Onaddress2_stateorprovinceChanged(); /// - /// There are no comments for Property address1_county in the schema. + /// There are no comments for Property prioritycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_county + public virtual global::System.Nullable prioritycode { get { - return this._address1_county; + return this._prioritycode; } set { - this.Onaddress1_countyChanging(value); - this._address1_county = value; - this.Onaddress1_countyChanged(); + this.OnprioritycodeChanging(value); + this._prioritycode = value; + this.OnprioritycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_county; - partial void Onaddress1_countyChanging(string value); - partial void Onaddress1_countyChanged(); + private global::System.Nullable _prioritycode; + partial void OnprioritycodeChanging(global::System.Nullable value); + partial void OnprioritycodeChanged(); /// - /// There are no comments for Property _parentaccountid_value in the schema. + /// There are no comments for Property evaluatefit in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _parentaccountid_value + public virtual global::System.Nullable evaluatefit { get { - return this.__parentaccountid_value; + return this._evaluatefit; } set { - this.On_parentaccountid_valueChanging(value); - this.__parentaccountid_value = value; - this.On_parentaccountid_valueChanged(); + this.OnevaluatefitChanging(value); + this._evaluatefit = value; + this.OnevaluatefitChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentaccountid_value; - partial void On_parentaccountid_valueChanging(global::System.Nullable value); - partial void On_parentaccountid_valueChanged(); + private global::System.Nullable _evaluatefit; + partial void OnevaluatefitChanging(global::System.Nullable value); + partial void OnevaluatefitChanged(); /// /// There are no comments for Property processid in the schema. /// @@ -387165,49 +387253,49 @@ public virtual string address1_county partial void OnprocessidChanging(global::System.Nullable value); partial void OnprocessidChanged(); /// - /// There are no comments for Property donotemail in the schema. + /// There are no comments for Property telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable donotemail + public virtual string telephone3 { get { - return this._donotemail; + return this._telephone3; } set { - this.OndonotemailChanging(value); - this._donotemail = value; - this.OndonotemailChanged(); + this.Ontelephone3Changing(value); + this._telephone3 = value; + this.Ontelephone3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotemail; - partial void OndonotemailChanging(global::System.Nullable value); - partial void OndonotemailChanged(); + private string _telephone3; + partial void Ontelephone3Changing(string value); + partial void Ontelephone3Changed(); /// - /// There are no comments for Property telephone3 in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string telephone3 + public virtual global::System.Nullable statecode { get { - return this._telephone3; + return this._statecode; } set { - this.Ontelephone3Changing(value); - this._telephone3 = value; - this.Ontelephone3Changed(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _telephone3; - partial void Ontelephone3Changing(string value); - partial void Ontelephone3Changed(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property address1_city in the schema. /// @@ -387231,71 +387319,71 @@ public virtual string address1_city partial void Onaddress1_cityChanging(string value); partial void Onaddress1_cityChanged(); /// - /// There are no comments for Property followemail in the schema. + /// There are no comments for Property address2_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable followemail + public virtual string address2_city { get { - return this._followemail; + return this._address2_city; } set { - this.OnfollowemailChanging(value); - this._followemail = value; - this.OnfollowemailChanged(); + this.Onaddress2_cityChanging(value); + this._address2_city = value; + this.Onaddress2_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _followemail; - partial void OnfollowemailChanging(global::System.Nullable value); - partial void OnfollowemailChanged(); + private string _address2_city; + partial void Onaddress2_cityChanging(string value); + partial void Onaddress2_cityChanged(); /// - /// There are no comments for Property address2_addressid in the schema. + /// There are no comments for Property participatesinworkflow in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_addressid + public virtual global::System.Nullable participatesinworkflow { get { - return this._address2_addressid; + return this._participatesinworkflow; } set { - this.Onaddress2_addressidChanging(value); - this._address2_addressid = value; - this.Onaddress2_addressidChanged(); + this.OnparticipatesinworkflowChanging(value); + this._participatesinworkflow = value; + this.OnparticipatesinworkflowChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_addressid; - partial void Onaddress2_addressidChanging(global::System.Nullable value); - partial void Onaddress2_addressidChanged(); + private global::System.Nullable _participatesinworkflow; + partial void OnparticipatesinworkflowChanging(global::System.Nullable value); + partial void OnparticipatesinworkflowChanged(); /// - /// There are no comments for Property numberofemployees in the schema. + /// There are no comments for Property msdyn_gdproptout in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable numberofemployees + public virtual global::System.Nullable msdyn_gdproptout { get { - return this._numberofemployees; + return this._msdyn_gdproptout; } set { - this.OnnumberofemployeesChanging(value); - this._numberofemployees = value; - this.OnnumberofemployeesChanged(); + this.Onmsdyn_gdproptoutChanging(value); + this._msdyn_gdproptout = value; + this.Onmsdyn_gdproptoutChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _numberofemployees; - partial void OnnumberofemployeesChanging(global::System.Nullable value); - partial void OnnumberofemployeesChanged(); + private global::System.Nullable _msdyn_gdproptout; + partial void Onmsdyn_gdproptoutChanging(global::System.Nullable value); + partial void Onmsdyn_gdproptoutChanged(); /// /// There are no comments for Property donotfax in the schema. /// @@ -387319,28 +387407,6 @@ public virtual string address1_city partial void OndonotfaxChanging(global::System.Nullable value); partial void OndonotfaxChanged(); /// - /// There are no comments for Property entityimageid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable entityimageid - { - get - { - return this._entityimageid; - } - set - { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); - /// /// There are no comments for Property lastusedincampaign in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -387363,27 +387429,27 @@ public virtual string address1_city partial void OnlastusedincampaignChanging(global::System.Nullable value); partial void OnlastusedincampaignChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property address2_composite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string address2_composite { get { - return this._statecode; + return this._address2_composite; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onaddress2_compositeChanging(value); + this._address2_composite = value; + this.Onaddress2_compositeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _address2_composite; + partial void Onaddress2_compositeChanging(string value); + partial void Onaddress2_compositeChanged(); /// /// There are no comments for Property _originatingcaseid_value in the schema. /// @@ -387407,6 +387473,28 @@ public virtual string address1_city partial void On_originatingcaseid_valueChanging(global::System.Nullable value); partial void On_originatingcaseid_valueChanged(); /// + /// There are no comments for Property salutation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string salutation + { + get + { + return this._salutation; + } + set + { + this.OnsalutationChanging(value); + this._salutation = value; + this.OnsalutationChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _salutation; + partial void OnsalutationChanging(string value); + partial void OnsalutationChanged(); + /// /// There are no comments for Property revenue_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -387429,115 +387517,115 @@ public virtual string address1_city partial void Onrevenue_baseChanging(global::System.Nullable value); partial void Onrevenue_baseChanged(); /// - /// There are no comments for Property businesscardattributes in the schema. + /// There are no comments for Property address2_line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string businesscardattributes + public virtual string address2_line3 { get { - return this._businesscardattributes; + return this._address2_line3; } set { - this.OnbusinesscardattributesChanging(value); - this._businesscardattributes = value; - this.OnbusinesscardattributesChanged(); + this.Onaddress2_line3Changing(value); + this._address2_line3 = value; + this.Onaddress2_line3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _businesscardattributes; - partial void OnbusinesscardattributesChanging(string value); - partial void OnbusinesscardattributesChanged(); + private string _address2_line3; + partial void Onaddress2_line3Changing(string value); + partial void Onaddress2_line3Changed(); /// - /// There are no comments for Property qualificationcomments in the schema. + /// There are no comments for Property emailaddress3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string qualificationcomments + public virtual string emailaddress3 { get { - return this._qualificationcomments; + return this._emailaddress3; } set { - this.OnqualificationcommentsChanging(value); - this._qualificationcomments = value; - this.OnqualificationcommentsChanged(); + this.Onemailaddress3Changing(value); + this._emailaddress3 = value; + this.Onemailaddress3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _qualificationcomments; - partial void OnqualificationcommentsChanging(string value); - partial void OnqualificationcommentsChanged(); + private string _emailaddress3; + partial void Onemailaddress3Changing(string value); + partial void Onemailaddress3Changed(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property middlename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual string middlename { get { - return this.__owningbusinessunit_value; + return this._middlename; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnmiddlenameChanging(value); + this._middlename = value; + this.OnmiddlenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private string _middlename; + partial void OnmiddlenameChanging(string value); + partial void OnmiddlenameChanged(); /// - /// There are no comments for Property emailaddress3 in the schema. + /// There are no comments for Property salesstage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailaddress3 + public virtual global::System.Nullable salesstage { get { - return this._emailaddress3; + return this._salesstage; } set { - this.Onemailaddress3Changing(value); - this._emailaddress3 = value; - this.Onemailaddress3Changed(); + this.OnsalesstageChanging(value); + this._salesstage = value; + this.OnsalesstageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress3; - partial void Onemailaddress3Changing(string value); - partial void Onemailaddress3Changed(); + private global::System.Nullable _salesstage; + partial void OnsalesstageChanging(global::System.Nullable value); + partial void OnsalesstageChanged(); /// - /// There are no comments for Property middlename in the schema. + /// There are no comments for Property mobilephone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string middlename + public virtual string mobilephone { get { - return this._middlename; + return this._mobilephone; } set { - this.OnmiddlenameChanging(value); - this._middlename = value; - this.OnmiddlenameChanged(); + this.OnmobilephoneChanging(value); + this._mobilephone = value; + this.OnmobilephoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _middlename; - partial void OnmiddlenameChanging(string value); - partial void OnmiddlenameChanged(); + private string _mobilephone; + partial void OnmobilephoneChanging(string value); + partial void OnmobilephoneChanged(); /// /// There are no comments for Property address1_addresstypecode in the schema. /// @@ -387605,49 +387693,49 @@ public virtual string middlename partial void OndecisionmakerChanging(global::System.Nullable value); partial void OndecisionmakerChanged(); /// - /// There are no comments for Property pager in the schema. + /// There are no comments for Property _parentaccountid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string pager + public virtual global::System.Nullable _parentaccountid_value { get { - return this._pager; + return this.__parentaccountid_value; } set { - this.OnpagerChanging(value); - this._pager = value; - this.OnpagerChanged(); + this.On_parentaccountid_valueChanging(value); + this.__parentaccountid_value = value; + this.On_parentaccountid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _pager; - partial void OnpagerChanging(string value); - partial void OnpagerChanged(); + private global::System.Nullable __parentaccountid_value; + partial void On_parentaccountid_valueChanging(global::System.Nullable value); + partial void On_parentaccountid_valueChanged(); /// - /// There are no comments for Property address1_fax in the schema. + /// There are no comments for Property pager in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_fax + public virtual string pager { get { - return this._address1_fax; + return this._pager; } set { - this.Onaddress1_faxChanging(value); - this._address1_fax = value; - this.Onaddress1_faxChanged(); + this.OnpagerChanging(value); + this._pager = value; + this.OnpagerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_fax; - partial void Onaddress1_faxChanging(string value); - partial void Onaddress1_faxChanged(); + private string _pager; + partial void OnpagerChanging(string value); + partial void OnpagerChanged(); /// /// There are no comments for Property yomicompanyname in the schema. /// @@ -387715,115 +387803,49 @@ public virtual string yomifullname partial void OnyomifullnameChanging(string value); partial void OnyomifullnameChanged(); /// - /// There are no comments for Property msdyn_gdproptout in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_gdproptout - { - get - { - return this._msdyn_gdproptout; - } - set - { - this.Onmsdyn_gdproptoutChanging(value); - this._msdyn_gdproptout = value; - this.Onmsdyn_gdproptoutChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_gdproptout; - partial void Onmsdyn_gdproptoutChanging(global::System.Nullable value); - partial void Onmsdyn_gdproptoutChanged(); - /// - /// There are no comments for Property address2_postalcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_postalcode - { - get - { - return this._address2_postalcode; - } - set - { - this.Onaddress2_postalcodeChanging(value); - this._address2_postalcode = value; - this.Onaddress2_postalcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_postalcode; - partial void Onaddress2_postalcodeChanging(string value); - partial void Onaddress2_postalcodeChanged(); - /// - /// There are no comments for Property address2_composite in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_composite - { - get - { - return this._address2_composite; - } - set - { - this.Onaddress2_compositeChanging(value); - this._address2_composite = value; - this.Onaddress2_compositeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_composite; - partial void Onaddress2_compositeChanging(string value); - partial void Onaddress2_compositeChanged(); - /// - /// There are no comments for Property mobilephone in the schema. + /// There are no comments for Property donotpostalmail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string mobilephone + public virtual global::System.Nullable donotpostalmail { get { - return this._mobilephone; + return this._donotpostalmail; } set { - this.OnmobilephoneChanging(value); - this._mobilephone = value; - this.OnmobilephoneChanged(); + this.OndonotpostalmailChanging(value); + this._donotpostalmail = value; + this.OndonotpostalmailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _mobilephone; - partial void OnmobilephoneChanging(string value); - partial void OnmobilephoneChanged(); + private global::System.Nullable _donotpostalmail; + partial void OndonotpostalmailChanging(global::System.Nullable value); + partial void OndonotpostalmailChanged(); /// - /// There are no comments for Property address1_line1 in the schema. + /// There are no comments for Property confirminterest in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_line1 + public virtual global::System.Nullable confirminterest { get { - return this._address1_line1; + return this._confirminterest; } set { - this.Onaddress1_line1Changing(value); - this._address1_line1 = value; - this.Onaddress1_line1Changed(); + this.OnconfirminterestChanging(value); + this._confirminterest = value; + this.OnconfirminterestChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line1; - partial void Onaddress1_line1Changing(string value); - partial void Onaddress1_line1Changed(); + private global::System.Nullable _confirminterest; + partial void OnconfirminterestChanging(global::System.Nullable value); + partial void OnconfirminterestChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -387891,49 +387913,71 @@ public virtual string address1_postalcode partial void Onaddress1_postalcodeChanging(string value); partial void Onaddress1_postalcodeChanged(); /// - /// There are no comments for Property confirminterest in the schema. + /// There are no comments for Property qualificationcomments in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable confirminterest + public virtual string qualificationcomments { get { - return this._confirminterest; + return this._qualificationcomments; } set { - this.OnconfirminterestChanging(value); - this._confirminterest = value; - this.OnconfirminterestChanged(); + this.OnqualificationcommentsChanging(value); + this._qualificationcomments = value; + this.OnqualificationcommentsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _confirminterest; - partial void OnconfirminterestChanging(global::System.Nullable value); - partial void OnconfirminterestChanged(); + private string _qualificationcomments; + partial void OnqualificationcommentsChanging(string value); + partial void OnqualificationcommentsChanged(); /// - /// There are no comments for Property timespentbymeonemailandmeetings in the schema. + /// There are no comments for Property _campaignid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string timespentbymeonemailandmeetings + public virtual global::System.Nullable _campaignid_value { get { - return this._timespentbymeonemailandmeetings; + return this.__campaignid_value; } set { - this.OntimespentbymeonemailandmeetingsChanging(value); - this._timespentbymeonemailandmeetings = value; - this.OntimespentbymeonemailandmeetingsChanged(); + this.On_campaignid_valueChanging(value); + this.__campaignid_value = value; + this.On_campaignid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _timespentbymeonemailandmeetings; - partial void OntimespentbymeonemailandmeetingsChanging(string value); - partial void OntimespentbymeonemailandmeetingsChanged(); + private global::System.Nullable __campaignid_value; + partial void On_campaignid_valueChanging(global::System.Nullable value); + partial void On_campaignid_valueChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -387979,6 +388023,28 @@ public virtual string timespentbymeonemailandmeetings partial void Onestimatedamount_baseChanging(global::System.Nullable value); partial void Onestimatedamount_baseChanged(); /// + /// There are no comments for Property address1_line3 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_line3 + { + get + { + return this._address1_line3; + } + set + { + this.Onaddress1_line3Changing(value); + this._address1_line3 = value; + this.Onaddress1_line3Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_line3; + partial void Onaddress1_line3Changing(string value); + partial void Onaddress1_line3Changed(); + /// /// There are no comments for Property address1_telephone2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -388045,6 +388111,28 @@ public virtual string address2_telephone3 partial void Onaddress2_utcoffsetChanging(global::System.Nullable value); partial void Onaddress2_utcoffsetChanged(); /// + /// There are no comments for Property address2_telephone2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_telephone2 + { + get + { + return this._address2_telephone2; + } + set + { + this.Onaddress2_telephone2Changing(value); + this._address2_telephone2 = value; + this.Onaddress2_telephone2Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_telephone2; + partial void Onaddress2_telephone2Changing(string value); + partial void Onaddress2_telephone2Changed(); + /// /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -388067,27 +388155,49 @@ public virtual byte[] entityimage partial void OnentityimageChanging(byte[] value); partial void OnentityimageChanged(); /// - /// There are no comments for Property address1_telephone1 in the schema. + /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone1 + public virtual global::System.Nullable entityimage_timestamp { get { - return this._address1_telephone1; + return this._entityimage_timestamp; } set { - this.Onaddress1_telephone1Changing(value); - this._address1_telephone1 = value; - this.Onaddress1_telephone1Changed(); + this.Onentityimage_timestampChanging(value); + this._entityimage_timestamp = value; + this.Onentityimage_timestampChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone1; - partial void Onaddress1_telephone1Changing(string value); - partial void Onaddress1_telephone1Changed(); + private global::System.Nullable _entityimage_timestamp; + partial void Onentityimage_timestampChanging(global::System.Nullable value); + partial void Onentityimage_timestampChanged(); + /// + /// There are no comments for Property address1_county in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_county + { + get + { + return this._address1_county; + } + set + { + this.Onaddress1_countyChanging(value); + this._address1_county = value; + this.Onaddress1_countyChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_county; + partial void Onaddress1_countyChanging(string value); + partial void Onaddress1_countyChanged(); /// /// There are no comments for Property donotbulkemail in the schema. /// @@ -388199,6 +388309,28 @@ public virtual string address1_country partial void Onaddress1_countryChanging(string value); partial void Onaddress1_countryChanged(); /// + /// There are no comments for Property _qualifyingopportunityid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _qualifyingopportunityid_value + { + get + { + return this.__qualifyingopportunityid_value; + } + set + { + this.On_qualifyingopportunityid_valueChanging(value); + this.__qualifyingopportunityid_value = value; + this.On_qualifyingopportunityid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __qualifyingopportunityid_value; + partial void On_qualifyingopportunityid_valueChanging(global::System.Nullable value); + partial void On_qualifyingopportunityid_valueChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -388331,27 +388463,27 @@ public virtual string websiteurl partial void OnleadidChanging(global::System.Nullable value); partial void OnleadidChanged(); /// - /// There are no comments for Property address1_line3 in the schema. + /// There are no comments for Property industrycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_line3 + public virtual global::System.Nullable industrycode { get { - return this._address1_line3; + return this._industrycode; } set { - this.Onaddress1_line3Changing(value); - this._address1_line3 = value; - this.Onaddress1_line3Changed(); + this.OnindustrycodeChanging(value); + this._industrycode = value; + this.OnindustrycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line3; - partial void Onaddress1_line3Changing(string value); - partial void Onaddress1_line3Changed(); + private global::System.Nullable _industrycode; + partial void OnindustrycodeChanging(global::System.Nullable value); + partial void OnindustrycodeChanged(); /// /// There are no comments for Property address2_postofficebox in the schema. /// @@ -388375,71 +388507,27 @@ public virtual string address2_postofficebox partial void Onaddress2_postofficeboxChanging(string value); partial void Onaddress2_postofficeboxChanged(); /// - /// There are no comments for Property need in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable need - { - get - { - return this._need; - } - set - { - this.OnneedChanging(value); - this._need = value; - this.OnneedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _need; - partial void OnneedChanging(global::System.Nullable value); - partial void OnneedChanged(); - /// - /// There are no comments for Property address2_shippingmethodcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable address2_shippingmethodcode - { - get - { - return this._address2_shippingmethodcode; - } - set - { - this.Onaddress2_shippingmethodcodeChanging(value); - this._address2_shippingmethodcode = value; - this.Onaddress2_shippingmethodcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_shippingmethodcode; - partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress2_shippingmethodcodeChanged(); - /// - /// There are no comments for Property address1_stateorprovince in the schema. + /// There are no comments for Property entityimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_stateorprovince + public virtual global::System.Nullable entityimageid { get { - return this._address1_stateorprovince; + return this._entityimageid; } set { - this.Onaddress1_stateorprovinceChanging(value); - this._address1_stateorprovince = value; - this.Onaddress1_stateorprovinceChanged(); + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_stateorprovince; - partial void Onaddress1_stateorprovinceChanging(string value); - partial void Onaddress1_stateorprovinceChanged(); + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); /// /// There are no comments for Property traversedpath in the schema. /// @@ -388463,71 +388551,49 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property address2_line1 in the schema. + /// There are no comments for Property _slaid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_line1 + public virtual global::System.Nullable _slaid_value { get { - return this._address2_line1; + return this.__slaid_value; } set { - this.Onaddress2_line1Changing(value); - this._address2_line1 = value; - this.Onaddress2_line1Changed(); + this.On_slaid_valueChanging(value); + this.__slaid_value = value; + this.On_slaid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line1; - partial void Onaddress2_line1Changing(string value); - partial void Onaddress2_line1Changed(); + private global::System.Nullable __slaid_value; + partial void On_slaid_valueChanging(global::System.Nullable value); + partial void On_slaid_valueChanged(); /// - /// There are no comments for Property _qualifyingopportunityid_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _qualifyingopportunityid_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__qualifyingopportunityid_value; + return this.__modifiedonbehalfby_value; } set { - this.On_qualifyingopportunityid_valueChanging(value); - this.__qualifyingopportunityid_value = value; - this.On_qualifyingopportunityid_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __qualifyingopportunityid_value; - partial void On_qualifyingopportunityid_valueChanging(global::System.Nullable value); - partial void On_qualifyingopportunityid_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property address2_longitude in the schema. /// @@ -388573,93 +388639,71 @@ public virtual string address2_line1 partial void OnpurchasetimeframeChanging(global::System.Nullable value); partial void OnpurchasetimeframeChanged(); /// - /// There are no comments for Property _campaignid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _campaignid_value - { - get - { - return this.__campaignid_value; - } - set - { - this.On_campaignid_valueChanging(value); - this.__campaignid_value = value; - this.On_campaignid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __campaignid_value; - partial void On_campaignid_valueChanging(global::System.Nullable value); - partial void On_campaignid_valueChanged(); - /// - /// There are no comments for Property prioritycode in the schema. + /// There are no comments for Property followemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable prioritycode + public virtual global::System.Nullable followemail { get { - return this._prioritycode; + return this._followemail; } set { - this.OnprioritycodeChanging(value); - this._prioritycode = value; - this.OnprioritycodeChanged(); + this.OnfollowemailChanging(value); + this._followemail = value; + this.OnfollowemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _prioritycode; - partial void OnprioritycodeChanging(global::System.Nullable value); - partial void OnprioritycodeChanged(); + private global::System.Nullable _followemail; + partial void OnfollowemailChanging(global::System.Nullable value); + partial void OnfollowemailChanged(); /// - /// There are no comments for Property address2_telephone2 in the schema. + /// There are no comments for Property lastonholdtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_telephone2 + public virtual global::System.Nullable lastonholdtime { get { - return this._address2_telephone2; + return this._lastonholdtime; } set { - this.Onaddress2_telephone2Changing(value); - this._address2_telephone2 = value; - this.Onaddress2_telephone2Changed(); + this.OnlastonholdtimeChanging(value); + this._lastonholdtime = value; + this.OnlastonholdtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone2; - partial void Onaddress2_telephone2Changing(string value); - partial void Onaddress2_telephone2Changed(); + private global::System.Nullable _lastonholdtime; + partial void OnlastonholdtimeChanging(global::System.Nullable value); + partial void OnlastonholdtimeChanged(); /// - /// There are no comments for Property fax in the schema. + /// There are no comments for Property address2_line1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string fax + public virtual string address2_line1 { get { - return this._fax; + return this._address2_line1; } set { - this.OnfaxChanging(value); - this._fax = value; - this.OnfaxChanged(); + this.Onaddress2_line1Changing(value); + this._address2_line1 = value; + this.Onaddress2_line1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _fax; - partial void OnfaxChanging(string value); - partial void OnfaxChanged(); + private string _address2_line1; + partial void Onaddress2_line1Changing(string value); + partial void Onaddress2_line1Changed(); /// /// There are no comments for Property yomimiddlename in the schema. /// @@ -388727,27 +388771,27 @@ public virtual string address2_fax partial void Onaddress2_faxChanging(string value); partial void Onaddress2_faxChanged(); /// - /// There are no comments for Property estimatedclosedate in the schema. + /// There are no comments for Property address2_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable estimatedclosedate + public virtual global::System.Nullable address2_shippingmethodcode { get { - return this._estimatedclosedate; + return this._address2_shippingmethodcode; } set { - this.OnestimatedclosedateChanging(value); - this._estimatedclosedate = value; - this.OnestimatedclosedateChanged(); + this.Onaddress2_shippingmethodcodeChanging(value); + this._address2_shippingmethodcode = value; + this.Onaddress2_shippingmethodcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _estimatedclosedate; - partial void OnestimatedclosedateChanging(global::System.Nullable value); - partial void OnestimatedclosedateChanged(); + private global::System.Nullable _address2_shippingmethodcode; + partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress2_shippingmethodcodeChanged(); /// /// There are no comments for Property companyname in the schema. /// @@ -388793,27 +388837,27 @@ public virtual string address2_line2 partial void Onaddress2_line2Changing(string value); partial void Onaddress2_line2Changed(); /// - /// There are no comments for Property salutation in the schema. + /// There are no comments for Property address1_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string salutation + public virtual string address1_fax { get { - return this._salutation; + return this._address1_fax; } set { - this.OnsalutationChanging(value); - this._salutation = value; - this.OnsalutationChanged(); + this.Onaddress1_faxChanging(value); + this._address1_fax = value; + this.Onaddress1_faxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _salutation; - partial void OnsalutationChanging(string value); - partial void OnsalutationChanged(); + private string _address1_fax; + partial void Onaddress1_faxChanging(string value); + partial void Onaddress1_faxChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -388859,27 +388903,27 @@ public virtual string address1_name partial void Onaddress1_nameChanging(string value); partial void Onaddress1_nameChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string entityimage_url { get { - return this.__owningteam_value; + return this._entityimage_url; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -388947,27 +388991,27 @@ public virtual string subject partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property entityimage_timestamp in the schema. + /// There are no comments for Property _customerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimage_timestamp + public virtual global::System.Nullable _customerid_value { get { - return this._entityimage_timestamp; + return this.__customerid_value; } set { - this.Onentityimage_timestampChanging(value); - this._entityimage_timestamp = value; - this.Onentityimage_timestampChanged(); + this.On_customerid_valueChanging(value); + this.__customerid_value = value; + this.On_customerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimage_timestamp; - partial void Onentityimage_timestampChanging(global::System.Nullable value); - partial void Onentityimage_timestampChanged(); + private global::System.Nullable __customerid_value; + partial void On_customerid_valueChanging(global::System.Nullable value); + partial void On_customerid_valueChanged(); /// /// There are no comments for Property yomilastname in the schema. /// @@ -388991,6 +389035,28 @@ public virtual string yomilastname partial void OnyomilastnameChanging(string value); partial void OnyomilastnameChanged(); /// + /// There are no comments for Property address1_line1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_line1 + { + get + { + return this._address1_line1; + } + set + { + this.Onaddress1_line1Changing(value); + this._address1_line1 = value; + this.Onaddress1_line1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_line1; + partial void Onaddress1_line1Changing(string value); + partial void Onaddress1_line1Changed(); + /// /// There are no comments for Property yomifirstname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -389013,6 +389079,28 @@ public virtual string yomifirstname partial void OnyomifirstnameChanging(string value); partial void OnyomifirstnameChanged(); /// + /// There are no comments for Property _contactid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _contactid_value + { + get + { + return this.__contactid_value; + } + set + { + this.On_contactid_valueChanging(value); + this.__contactid_value = value; + this.On_contactid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __contactid_value; + partial void On_contactid_valueChanging(global::System.Nullable value); + partial void On_contactid_valueChanged(); + /// /// There are no comments for Property address1_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -389057,49 +389145,49 @@ public virtual string address1_postofficebox partial void OnpreferredcontactmethodcodeChanging(global::System.Nullable value); partial void OnpreferredcontactmethodcodeChanged(); /// - /// There are no comments for Property donotphone in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable donotphone + public virtual global::System.Nullable _createdby_value { get { - return this._donotphone; + return this.__createdby_value; } set { - this.OndonotphoneChanging(value); - this._donotphone = value; - this.OndonotphoneChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotphone; - partial void OndonotphoneChanging(global::System.Nullable value); - partial void OndonotphoneChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _contactid_value in the schema. + /// There are no comments for Property numberofemployees in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _contactid_value + public virtual global::System.Nullable numberofemployees { get { - return this.__contactid_value; + return this._numberofemployees; } set { - this.On_contactid_valueChanging(value); - this.__contactid_value = value; - this.On_contactid_valueChanged(); + this.OnnumberofemployeesChanging(value); + this._numberofemployees = value; + this.OnnumberofemployeesChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __contactid_value; - partial void On_contactid_valueChanging(global::System.Nullable value); - partial void On_contactid_valueChanged(); + private global::System.Nullable _numberofemployees; + partial void OnnumberofemployeesChanging(global::System.Nullable value); + partial void OnnumberofemployeesChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -389123,49 +389211,27 @@ public virtual string address1_postofficebox partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property sic in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string sic - { - get - { - return this._sic; - } - set - { - this.OnsicChanging(value); - this._sic = value; - this.OnsicChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sic; - partial void OnsicChanging(string value); - partial void OnsicChanged(); - /// - /// There are no comments for Property address1_telephone3 in the schema. + /// There are no comments for Property budgetamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone3 + public virtual global::System.Nullable budgetamount { get { - return this._address1_telephone3; + return this._budgetamount; } set { - this.Onaddress1_telephone3Changing(value); - this._address1_telephone3 = value; - this.Onaddress1_telephone3Changed(); + this.OnbudgetamountChanging(value); + this._budgetamount = value; + this.OnbudgetamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone3; - partial void Onaddress1_telephone3Changing(string value); - partial void Onaddress1_telephone3Changed(); + private global::System.Nullable _budgetamount; + partial void OnbudgetamountChanging(global::System.Nullable value); + partial void OnbudgetamountChanged(); /// /// There are no comments for Property estimatedvalue in the schema. /// @@ -389189,71 +389255,71 @@ public virtual string address1_telephone3 partial void OnestimatedvalueChanging(global::System.Nullable value); partial void OnestimatedvalueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property estimatedclosedate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable estimatedclosedate { get { - return this._utcconversiontimezonecode; + return this._estimatedclosedate; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnestimatedclosedateChanging(value); + this._estimatedclosedate = value; + this.OnestimatedclosedateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _estimatedclosedate; + partial void OnestimatedclosedateChanging(global::System.Nullable value); + partial void OnestimatedclosedateChanged(); /// - /// There are no comments for Property budgetamount in the schema. + /// There are no comments for Property donotemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable budgetamount + public virtual global::System.Nullable donotemail { get { - return this._budgetamount; + return this._donotemail; } set { - this.OnbudgetamountChanging(value); - this._budgetamount = value; - this.OnbudgetamountChanged(); + this.OndonotemailChanging(value); + this._donotemail = value; + this.OndonotemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _budgetamount; - partial void OnbudgetamountChanging(global::System.Nullable value); - partial void OnbudgetamountChanged(); + private global::System.Nullable _donotemail; + partial void OndonotemailChanging(global::System.Nullable value); + partial void OndonotemailChanged(); /// - /// There are no comments for Property donotpostalmail in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable donotpostalmail + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._donotpostalmail; + return this._utcconversiontimezonecode; } set { - this.OndonotpostalmailChanging(value); - this._donotpostalmail = value; - this.OndonotpostalmailChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _donotpostalmail; - partial void OndonotpostalmailChanging(global::System.Nullable value); - partial void OndonotpostalmailChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property leadsourcecode in the schema. /// @@ -389299,49 +389365,49 @@ public virtual string emailaddress1 partial void Onemailaddress1Changing(string value); partial void Onemailaddress1Changed(); /// - /// There are no comments for Property telephone1 in the schema. + /// There are no comments for Property address2_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string telephone1 + public virtual string address2_postalcode { get { - return this._telephone1; + return this._address2_postalcode; } set { - this.Ontelephone1Changing(value); - this._telephone1 = value; - this.Ontelephone1Changed(); + this.Onaddress2_postalcodeChanging(value); + this._address2_postalcode = value; + this.Onaddress2_postalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _telephone1; - partial void Ontelephone1Changing(string value); - partial void Ontelephone1Changed(); + private string _address2_postalcode; + partial void Onaddress2_postalcodeChanging(string value); + partial void Onaddress2_postalcodeChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string telephone1 { get { - return this.__createdby_value; + return this._telephone1; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Ontelephone1Changing(value); + this._telephone1 = value; + this.Ontelephone1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _telephone1; + partial void Ontelephone1Changing(string value); + partial void Ontelephone1Changed(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -391582,28 +391648,6 @@ public static leadtoopportunitysalesprocess Createleadtoopportunitysalesprocess( partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -391648,6 +391692,28 @@ public virtual string traversedpath partial void On_processid_valueChanging(global::System.Nullable value); partial void On_processid_valueChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -397281,50 +397347,6 @@ public static listmember Createlistmember(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property listmemberid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable listmemberid - { - get - { - return this._listmemberid; - } - set - { - this.OnlistmemberidChanging(value); - this._listmemberid = value; - this.OnlistmemberidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _listmemberid; - partial void OnlistmemberidChanging(global::System.Nullable value); - partial void OnlistmemberidChanged(); - /// /// There are no comments for Property entitytype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -397369,6 +397391,28 @@ public virtual string entitytype partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -397479,6 +397523,28 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -397567,93 +397633,93 @@ public virtual string name partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable versionnumber { get { - return this._createdon; + return this._versionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _entityid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _entityid_value { get { - return this._utcconversiontimezonecode; + return this.__entityid_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_entityid_valueChanging(value); + this.__entityid_value = value; + this.On_entityid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __entityid_value; + partial void On_entityid_valueChanging(global::System.Nullable value); + partial void On_entityid_valueChanged(); /// - /// There are no comments for Property _entityid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _entityid_value + public virtual global::System.Nullable createdon { get { - return this.__entityid_value; + return this._createdon; } set { - this.On_entityid_valueChanging(value); - this.__entityid_value = value; - this.On_entityid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __entityid_value; - partial void On_entityid_valueChanging(global::System.Nullable value); - partial void On_entityid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property listmemberid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable listmemberid { get { - return this._versionnumber; + return this._listmemberid; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnlistmemberidChanging(value); + this._listmemberid = value; + this.OnlistmemberidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _listmemberid; + partial void OnlistmemberidChanging(global::System.Nullable value); + partial void OnlistmemberidChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -398299,49 +398365,49 @@ public static listoperation Createlistoperation(global::EMBC.ESS.Utilities.Dynam partial void OnerrorcodeChanging(global::System.Nullable value); partial void OnerrorcodeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable importsequencenumber { get { - return this._utcconversiontimezonecode; + return this._importsequencenumber; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__modifiedonbehalfby_value; + return this._utcconversiontimezonecode; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -398387,27 +398453,49 @@ public static listoperation Createlistoperation(global::EMBC.ESS.Utilities.Dynam partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property listoperationprimaryname in the schema. + /// There are no comments for Property added in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string listoperationprimaryname + public virtual global::System.Nullable added { get { - return this._listoperationprimaryname; + return this._added; } set { - this.OnlistoperationprimarynameChanging(value); - this._listoperationprimaryname = value; - this.OnlistoperationprimarynameChanged(); + this.OnaddedChanging(value); + this._added = value; + this.OnaddedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _listoperationprimaryname; - partial void OnlistoperationprimarynameChanging(string value); - partial void OnlistoperationprimarynameChanged(); + private global::System.Nullable _added; + partial void OnaddedChanging(global::System.Nullable value); + partial void OnaddedChanged(); + /// + /// There are no comments for Property type in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable type + { + get + { + return this._type; + } + set + { + this.OntypeChanging(value); + this._type = value; + this.OntypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _type; + partial void OntypeChanging(global::System.Nullable value); + partial void OntypeChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -398519,27 +398607,27 @@ public virtual string log partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._createdon; + return this._timezoneruleversionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -398563,28 +398651,6 @@ public virtual string log partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property listoperationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -398607,27 +398673,27 @@ public virtual string log partial void OnlistoperationidChanging(global::System.Nullable value); partial void OnlistoperationidChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._importsequencenumber; + return this.__modifiedonbehalfby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -398651,71 +398717,71 @@ public virtual string log partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property listoperationprimaryname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string listoperationprimaryname { get { - return this._timezoneruleversionnumber; + return this._listoperationprimaryname; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnlistoperationprimarynameChanging(value); + this._listoperationprimaryname = value; + this.OnlistoperationprimarynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _listoperationprimaryname; + partial void OnlistoperationprimarynameChanging(string value); + partial void OnlistoperationprimarynameChanged(); /// - /// There are no comments for Property type in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable type + public virtual global::System.Nullable _modifiedby_value { get { - return this._type; + return this.__modifiedby_value; } set { - this.OntypeChanging(value); - this._type = value; - this.OntypeChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _type; - partial void OntypeChanging(global::System.Nullable value); - partial void OntypeChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property input in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string input + public virtual global::System.Nullable createdon { get { - return this._input; + return this._createdon; } set { - this.OninputChanging(value); - this._input = value; - this.OninputChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _input; - partial void OninputChanging(string value); - partial void OninputChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -398739,27 +398805,27 @@ public virtual string input partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property batchinput in the schema. + /// There are no comments for Property listoperationname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string batchinput + public virtual string listoperationname { get { - return this._batchinput; + return this._listoperationname; } set { - this.OnbatchinputChanging(value); - this._batchinput = value; - this.OnbatchinputChanged(); + this.OnlistoperationnameChanging(value); + this._listoperationname = value; + this.OnlistoperationnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _batchinput; - partial void OnbatchinputChanging(string value); - partial void OnbatchinputChanged(); + private string _listoperationname; + partial void OnlistoperationnameChanging(string value); + partial void OnlistoperationnameChanged(); /// /// There are no comments for Property errordescription in the schema. /// @@ -398783,27 +398849,27 @@ public virtual string errordescription partial void OnerrordescriptionChanging(string value); partial void OnerrordescriptionChanged(); /// - /// There are no comments for Property added in the schema. + /// There are no comments for Property input in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable added + public virtual string input { get { - return this._added; + return this._input; } set { - this.OnaddedChanging(value); - this._added = value; - this.OnaddedChanged(); + this.OninputChanging(value); + this._input = value; + this.OninputChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _added; - partial void OnaddedChanging(global::System.Nullable value); - partial void OnaddedChanged(); + private string _input; + partial void OninputChanging(string value); + partial void OninputChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -398827,71 +398893,71 @@ public virtual string errordescription partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property batchinput in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string batchinput { get { - return this.__modifiedby_value; + return this._batchinput; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnbatchinputChanging(value); + this._batchinput = value; + this.OnbatchinputChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _batchinput; + partial void OnbatchinputChanging(string value); + partial void OnbatchinputChanged(); /// - /// There are no comments for Property _listid_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _listid_value + public virtual global::System.Nullable modifiedon { get { - return this.__listid_value; + return this._modifiedon; } set { - this.On_listid_valueChanging(value); - this.__listid_value = value; - this.On_listid_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __listid_value; - partial void On_listid_valueChanging(global::System.Nullable value); - partial void On_listid_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property listoperationname in the schema. + /// There are no comments for Property _listid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string listoperationname + public virtual global::System.Nullable _listid_value { get { - return this._listoperationname; + return this.__listid_value; } set { - this.OnlistoperationnameChanging(value); - this._listoperationname = value; - this.OnlistoperationnameChanged(); + this.On_listid_valueChanging(value); + this.__listid_value = value; + this.On_listid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _listoperationname; - partial void OnlistoperationnameChanging(string value); - partial void OnlistoperationnameChanged(); + private global::System.Nullable __listid_value; + partial void On_listid_valueChanging(global::System.Nullable value); + partial void On_listid_valueChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -401749,6 +401815,28 @@ public static lookupmapping Createlookupmapping(global::EMBC.ESS.Utilities.Dynam return lookupmapping; } /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -401793,27 +401881,49 @@ public static lookupmapping Createlookupmapping(global::EMBC.ESS.Utilities.Dynam partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property lookupmappingidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable lookupmappingidunique { get { - return this.__modifiedonbehalfby_value; + return this._lookupmappingidunique; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnlookupmappingiduniqueChanging(value); + this._lookupmappingidunique = value; + this.OnlookupmappingiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _lookupmappingidunique; + partial void OnlookupmappingiduniqueChanging(global::System.Nullable value); + partial void OnlookupmappingiduniqueChanged(); + /// + /// There are no comments for Property _columnmappingid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _columnmappingid_value + { + get + { + return this.__columnmappingid_value; + } + set + { + this.On_columnmappingid_valueChanging(value); + this.__columnmappingid_value = value; + this.On_columnmappingid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __columnmappingid_value; + partial void On_columnmappingid_valueChanging(global::System.Nullable value); + partial void On_columnmappingid_valueChanged(); /// /// There are no comments for Property solutionid in the schema. /// @@ -401859,49 +401969,27 @@ public static lookupmapping Createlookupmapping(global::EMBC.ESS.Utilities.Dynam partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property processcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable processcode - { - get - { - return this._processcode; - } - set - { - this.OnprocesscodeChanging(value); - this._processcode = value; - this.OnprocesscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processcode; - partial void OnprocesscodeChanging(global::System.Nullable value); - partial void OnprocesscodeChanged(); - /// - /// There are no comments for Property _columnmappingid_value in the schema. + /// There are no comments for Property _transformationparametermappingid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _columnmappingid_value + public virtual global::System.Nullable _transformationparametermappingid_value { get { - return this.__columnmappingid_value; + return this.__transformationparametermappingid_value; } set { - this.On_columnmappingid_valueChanging(value); - this.__columnmappingid_value = value; - this.On_columnmappingid_valueChanged(); + this.On_transformationparametermappingid_valueChanging(value); + this.__transformationparametermappingid_value = value; + this.On_transformationparametermappingid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __columnmappingid_value; - partial void On_columnmappingid_valueChanging(global::System.Nullable value); - partial void On_columnmappingid_valueChanged(); + private global::System.Nullable __transformationparametermappingid_value; + partial void On_transformationparametermappingid_valueChanging(global::System.Nullable value); + partial void On_transformationparametermappingid_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -401947,6 +402035,28 @@ public static lookupmapping Createlookupmapping(global::EMBC.ESS.Utilities.Dynam partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property lookupmappingid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -402013,49 +402123,71 @@ public virtual string lookupattributename partial void OnlookupattributenameChanging(string value); partial void OnlookupattributenameChanged(); /// - /// There are no comments for Property _transformationparametermappingid_value in the schema. + /// There are no comments for Property lookupentityname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transformationparametermappingid_value + public virtual string lookupentityname { get { - return this.__transformationparametermappingid_value; + return this._lookupentityname; } set { - this.On_transformationparametermappingid_valueChanging(value); - this.__transformationparametermappingid_value = value; - this.On_transformationparametermappingid_valueChanged(); + this.OnlookupentitynameChanging(value); + this._lookupentityname = value; + this.OnlookupentitynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transformationparametermappingid_value; - partial void On_transformationparametermappingid_valueChanging(global::System.Nullable value); - partial void On_transformationparametermappingid_valueChanged(); + private string _lookupentityname; + partial void OnlookupentitynameChanging(string value); + partial void OnlookupentitynameChanged(); /// - /// There are no comments for Property lookupentityname in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string lookupentityname + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._lookupentityname; + return this.__modifiedonbehalfby_value; } set { - this.OnlookupentitynameChanging(value); - this._lookupentityname = value; - this.OnlookupentitynameChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _lookupentityname; - partial void OnlookupentitynameChanging(string value); - partial void OnlookupentitynameChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property processcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable processcode + { + get + { + return this._processcode; + } + set + { + this.OnprocesscodeChanging(value); + this._processcode = value; + this.OnprocesscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _processcode; + partial void OnprocesscodeChanging(global::System.Nullable value); + partial void OnprocesscodeChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -402101,115 +402233,49 @@ public virtual string lookupentityname partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property lookupsourcecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable lookupsourcecode - { - get - { - return this._lookupsourcecode; - } - set - { - this.OnlookupsourcecodeChanging(value); - this._lookupsourcecode = value; - this.OnlookupsourcecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lookupsourcecode; - partial void OnlookupsourcecodeChanging(global::System.Nullable value); - partial void OnlookupsourcecodeChanged(); - /// - /// There are no comments for Property introducedversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string introducedversion - { - get - { - return this._introducedversion; - } - set - { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); - /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// - /// There are no comments for Property lookupmappingidunique in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lookupmappingidunique + public virtual global::System.Nullable overwritetime { get { - return this._lookupmappingidunique; + return this._overwritetime; } set { - this.OnlookupmappingiduniqueChanging(value); - this._lookupmappingidunique = value; - this.OnlookupmappingiduniqueChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lookupmappingidunique; - partial void OnlookupmappingiduniqueChanging(global::System.Nullable value); - partial void OnlookupmappingiduniqueChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property lookupsourcecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable lookupsourcecode { get { - return this._overwritetime; + return this._lookupsourcecode; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnlookupsourcecodeChanging(value); + this._lookupsourcecode = value; + this.OnlookupsourcecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _lookupsourcecode; + partial void OnlookupsourcecodeChanging(global::System.Nullable value); + partial void OnlookupsourcecodeChanged(); /// /// There are no comments for Property modifiedby in the schema. /// @@ -403301,6 +403367,28 @@ public virtual string exchangesyncstatexml partial void Onisemailaddressapprovedbyo365adminChanging(global::System.Nullable value); partial void Onisemailaddressapprovedbyo365adminChanged(); /// + /// There are no comments for Property credentialinfo in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string credentialinfo + { + get + { + return this._credentialinfo; + } + set + { + this.OncredentialinfoChanging(value); + this._credentialinfo = value; + this.OncredentialinfoChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _credentialinfo; + partial void OncredentialinfoChanging(string value); + partial void OncredentialinfoChanged(); + /// /// There are no comments for Property actdeliverymethod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -403367,28 +403455,6 @@ public virtual string folderhierarchy partial void OnfolderhierarchyChanging(string value); partial void OnfolderhierarchyChanged(); /// - /// There are no comments for Property credentialinfo in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string credentialinfo - { - get - { - return this._credentialinfo; - } - set - { - this.OncredentialinfoChanging(value); - this._credentialinfo = value; - this.OncredentialinfoChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _credentialinfo; - partial void OncredentialinfoChanging(string value); - partial void OncredentialinfoChanged(); - /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -403741,28 +403807,6 @@ public virtual string lastsyncerror partial void OnincomingemaildeliverymethodChanging(global::System.Nullable value); partial void OnincomingemaildeliverymethodChanged(); /// - /// There are no comments for Property postponeofficeappsdeploymentuntil in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable postponeofficeappsdeploymentuntil - { - get - { - return this._postponeofficeappsdeploymentuntil; - } - set - { - this.OnpostponeofficeappsdeploymentuntilChanging(value); - this._postponeofficeappsdeploymentuntil = value; - this.OnpostponeofficeappsdeploymentuntilChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _postponeofficeappsdeploymentuntil; - partial void OnpostponeofficeappsdeploymentuntilChanging(global::System.Nullable value); - partial void OnpostponeofficeappsdeploymentuntilChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -403917,6 +403961,28 @@ public virtual string oauthrefreshtoken partial void OntestemailconfigurationscheduledChanging(global::System.Nullable value); partial void OntestemailconfigurationscheduledChanged(); /// + /// There are no comments for Property processanddeleteemails in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable processanddeleteemails + { + get + { + return this._processanddeleteemails; + } + set + { + this.OnprocessanddeleteemailsChanging(value); + this._processanddeleteemails = value; + this.OnprocessanddeleteemailsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _processanddeleteemails; + partial void OnprocessanddeleteemailsChanging(global::System.Nullable value); + partial void OnprocessanddeleteemailsChanged(); + /// /// There are no comments for Property officeappsdeploymenterror in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -403983,6 +404049,28 @@ public virtual string officeappsdeploymenterror partial void OnoutgoingemailstatusChanging(global::System.Nullable value); partial void OnoutgoingemailstatusChanged(); /// + /// There are no comments for Property postponemailboxprocessinguntil in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable postponemailboxprocessinguntil + { + get + { + return this._postponemailboxprocessinguntil; + } + set + { + this.OnpostponemailboxprocessinguntilChanging(value); + this._postponemailboxprocessinguntil = value; + this.OnpostponemailboxprocessinguntilChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _postponemailboxprocessinguntil; + partial void OnpostponemailboxprocessinguntilChanging(global::System.Nullable value); + partial void OnpostponemailboxprocessinguntilChanged(); + /// /// There are no comments for Property lastsyncerrorcount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -404115,27 +404203,27 @@ public virtual string emailaddress partial void OnlastsyncerroroccurredonChanging(global::System.Nullable value); partial void OnlastsyncerroroccurredonChanged(); /// - /// There are no comments for Property processanddeleteemails in the schema. + /// There are no comments for Property postponeofficeappsdeploymentuntil in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processanddeleteemails + public virtual global::System.Nullable postponeofficeappsdeploymentuntil { get { - return this._processanddeleteemails; + return this._postponeofficeappsdeploymentuntil; } set { - this.OnprocessanddeleteemailsChanging(value); - this._processanddeleteemails = value; - this.OnprocessanddeleteemailsChanged(); + this.OnpostponeofficeappsdeploymentuntilChanging(value); + this._postponeofficeappsdeploymentuntil = value; + this.OnpostponeofficeappsdeploymentuntilChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processanddeleteemails; - partial void OnprocessanddeleteemailsChanging(global::System.Nullable value); - partial void OnprocessanddeleteemailsChanged(); + private global::System.Nullable _postponeofficeappsdeploymentuntil; + partial void OnpostponeofficeappsdeploymentuntilChanging(global::System.Nullable value); + partial void OnpostponeofficeappsdeploymentuntilChanged(); /// /// There are no comments for Property entityimage in the schema. /// @@ -404819,28 +404907,6 @@ public virtual string password partial void OnisoauthrefreshtokensetChanging(global::System.Nullable value); partial void OnisoauthrefreshtokensetChanged(); /// - /// There are no comments for Property postponemailboxprocessinguntil in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable postponemailboxprocessinguntil - { - get - { - return this._postponemailboxprocessinguntil; - } - set - { - this.OnpostponemailboxprocessinguntilChanging(value); - this._postponemailboxprocessinguntil = value; - this.OnpostponemailboxprocessinguntilChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _postponemailboxprocessinguntil; - partial void OnpostponemailboxprocessinguntilChanging(global::System.Nullable value); - partial void OnpostponemailboxprocessinguntilChanged(); - /// /// There are no comments for Property processemailreceivedafter in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -412879,27 +412945,49 @@ public virtual string exchangefolderid partial void OnexchangefolderidChanging(string value); partial void OnexchangefolderidChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property exchangefoldername in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual string exchangefoldername { get { - return this._createdon; + return this._exchangefoldername; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnexchangefoldernameChanging(value); + this._exchangefoldername = value; + this.OnexchangefoldernameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private string _exchangefoldername; + partial void OnexchangefoldernameChanging(string value); + partial void OnexchangefoldernameChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -412945,6 +413033,28 @@ public virtual string exchangefolderid partial void On_mailboxid_valueChanging(global::System.Nullable value); partial void On_mailboxid_valueChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -412967,49 +413077,49 @@ public virtual string exchangefolderid partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property exchangefoldername in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string exchangefoldername + public virtual global::System.Nullable _organizationid_value { get { - return this._exchangefoldername; + return this.__organizationid_value; } set { - this.OnexchangefoldernameChanging(value); - this._exchangefoldername = value; - this.OnexchangefoldernameChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _exchangefoldername; - partial void OnexchangefoldernameChanging(string value); - partial void OnexchangefoldernameChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable createdon { get { - return this._modifiedon; + return this._createdon; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property mailboxtrackingfolderid in the schema. /// @@ -413033,28 +413143,6 @@ public virtual string exchangefoldername partial void OnmailboxtrackingfolderidChanging(global::System.Nullable value); partial void OnmailboxtrackingfolderidChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property _regardingobjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -413143,28 +413231,6 @@ public virtual string exchangefoldername partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property modifiedonbehalfby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -420646,6 +420712,28 @@ public virtual string name partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -420778,28 +420866,6 @@ public virtual string displayattributelist partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property marketingformdisplayattributesid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -420888,49 +420954,49 @@ public virtual string displayattributelist partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property entitylogicalname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string entitylogicalname { get { - return this._statecode; + return this._entitylogicalname; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnentitylogicalnameChanging(value); + this._entitylogicalname = value; + this.OnentitylogicalnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _entitylogicalname; + partial void OnentitylogicalnameChanging(string value); + partial void OnentitylogicalnameChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable statecode { get { - return this._utcconversiontimezonecode; + return this._statecode; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -420976,27 +421042,27 @@ public virtual string displayattributelist partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property entitylogicalname in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entitylogicalname + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._entitylogicalname; + return this._utcconversiontimezonecode; } set { - this.OnentitylogicalnameChanging(value); - this._entitylogicalname = value; - this.OnentitylogicalnameChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entitylogicalname; - partial void OnentitylogicalnameChanging(string value); - partial void OnentitylogicalnameChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -421594,27 +421660,27 @@ public static metric Createmetric(global::EMBC.ESS.Utilities.Dynamics.Microsoft. partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property metricid in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable metricid + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._metricid; + return this._utcconversiontimezonecode; } set { - this.OnmetricidChanging(value); - this._metricid = value; - this.OnmetricidChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _metricid; - partial void OnmetricidChanging(global::System.Nullable value); - partial void OnmetricidChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -421638,27 +421704,27 @@ public static metric Createmetric(global::EMBC.ESS.Utilities.Dynamics.Microsoft. partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable overriddencreatedon { get { - return this._statecode; + return this._overriddencreatedon; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -421726,6 +421792,28 @@ public static metric Createmetric(global::EMBC.ESS.Utilities.Dynamics.Microsoft. partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// /// There are no comments for Property isamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -421748,6 +421836,28 @@ public static metric Createmetric(global::EMBC.ESS.Utilities.Dynamics.Microsoft. partial void OnisamountChanging(global::System.Nullable value); partial void OnisamountChanged(); /// + /// There are no comments for Property metricid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable metricid + { + get + { + return this._metricid; + } + set + { + this.OnmetricidChanging(value); + this._metricid = value; + this.OnmetricidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _metricid; + partial void OnmetricidChanging(global::System.Nullable value); + partial void OnmetricidChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -421902,28 +422012,6 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -421990,28 +422078,6 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -422469,28 +422535,6 @@ public static mobileofflineprofileitemassociation Createmobileofflineprofileitem partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -422513,27 +422557,27 @@ public static mobileofflineprofileitemassociation Createmobileofflineprofileitem partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property processid in the schema. + /// There are no comments for Property relationshipdisplayname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processid + public virtual string relationshipdisplayname { get { - return this._processid; + return this._relationshipdisplayname; } set { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); + this.OnrelationshipdisplaynameChanging(value); + this._relationshipdisplayname = value; + this.OnrelationshipdisplaynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); + private string _relationshipdisplayname; + partial void OnrelationshipdisplaynameChanging(string value); + partial void OnrelationshipdisplaynameChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -422667,6 +422711,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property selectedrelationshipsschema in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable selectedrelationshipsschema + { + get + { + return this._selectedrelationshipsschema; + } + set + { + this.OnselectedrelationshipsschemaChanging(value); + this._selectedrelationshipsschema = value; + this.OnselectedrelationshipsschemaChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _selectedrelationshipsschema; + partial void OnselectedrelationshipsschemaChanging(global::System.Nullable value); + partial void OnselectedrelationshipsschemaChanged(); + /// /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -422689,49 +422755,49 @@ public virtual string name partial void OnstageidChanging(global::System.Nullable value); partial void OnstageidChanged(); /// - /// There are no comments for Property relationshipdisplayname in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string relationshipdisplayname + public virtual global::System.Nullable overwritetime { get { - return this._relationshipdisplayname; + return this._overwritetime; } set { - this.OnrelationshipdisplaynameChanging(value); - this._relationshipdisplayname = value; - this.OnrelationshipdisplaynameChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _relationshipdisplayname; - partial void OnrelationshipdisplaynameChanging(string value); - partial void OnrelationshipdisplaynameChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property profileitemassociationentityfilter in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string profileitemassociationentityfilter + public virtual global::System.Nullable ismanaged { get { - return this._profileitemassociationentityfilter; + return this._ismanaged; } set { - this.OnprofileitemassociationentityfilterChanging(value); - this._profileitemassociationentityfilter = value; - this.OnprofileitemassociationentityfilterChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _profileitemassociationentityfilter; - partial void OnprofileitemassociationentityfilterChanging(string value); - partial void OnprofileitemassociationentityfilterChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property relationshipname in the schema. /// @@ -422755,27 +422821,49 @@ public virtual string relationshipname partial void OnrelationshipnameChanging(string value); partial void OnrelationshipnameChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable _organizationid_value { get { - return this._overwritetime; + return this.__organizationid_value; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property traversedpath in the schema. /// @@ -422799,27 +422887,27 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// - /// There are no comments for Property isvalidated in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isvalidated + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._isvalidated; + return this.__modifiedonbehalfby_value; } set { - this.OnisvalidatedChanging(value); - this._isvalidated = value; - this.OnisvalidatedChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isvalidated; - partial void OnisvalidatedChanging(global::System.Nullable value); - partial void OnisvalidatedChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _mobileofflineprofileitemid_value in the schema. /// @@ -422843,49 +422931,27 @@ public virtual string traversedpath partial void On_mobileofflineprofileitemid_valueChanging(global::System.Nullable value); partial void On_mobileofflineprofileitemid_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property isvalidated in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable isvalidated { get { - return this._versionnumber; + return this._isvalidated; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnisvalidatedChanging(value); + this._isvalidated = value; + this.OnisvalidatedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _isvalidated; + partial void OnisvalidatedChanging(global::System.Nullable value); + partial void OnisvalidatedChanged(); /// /// There are no comments for Property relationshipid in the schema. /// @@ -422909,27 +422975,27 @@ public virtual string traversedpath partial void OnrelationshipidChanging(global::System.Nullable value); partial void OnrelationshipidChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable processid { get { - return this.__organizationid_value; + return this._processid; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); /// /// There are no comments for Property mobileofflineprofileitemassociationid in the schema. /// @@ -422953,27 +423019,27 @@ public virtual string traversedpath partial void OnmobileofflineprofileitemassociationidChanging(global::System.Nullable value); partial void OnmobileofflineprofileitemassociationidChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property profileitemassociationentityfilter in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual string profileitemassociationentityfilter { get { - return this._ismanaged; + return this._profileitemassociationentityfilter; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.OnprofileitemassociationentityfilterChanging(value); + this._profileitemassociationentityfilter = value; + this.OnprofileitemassociationentityfilterChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private string _profileitemassociationentityfilter; + partial void OnprofileitemassociationentityfilterChanging(string value); + partial void OnprofileitemassociationentityfilterChanged(); /// /// There are no comments for Property publishedon in the schema. /// @@ -423019,49 +423085,49 @@ public virtual string traversedpath partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property relationshipdata in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string relationshipdata + public virtual global::System.Nullable versionnumber { get { - return this._relationshipdata; + return this._versionnumber; } set { - this.OnrelationshipdataChanging(value); - this._relationshipdata = value; - this.OnrelationshipdataChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _relationshipdata; - partial void OnrelationshipdataChanging(string value); - partial void OnrelationshipdataChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property selectedrelationshipsschema in the schema. + /// There are no comments for Property relationshipdata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable selectedrelationshipsschema + public virtual string relationshipdata { get { - return this._selectedrelationshipsschema; + return this._relationshipdata; } set { - this.OnselectedrelationshipsschemaChanging(value); - this._selectedrelationshipsschema = value; - this.OnselectedrelationshipsschemaChanged(); + this.OnrelationshipdataChanging(value); + this._relationshipdata = value; + this.OnrelationshipdataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _selectedrelationshipsschema; - partial void OnselectedrelationshipsschemaChanging(global::System.Nullable value); - partial void OnselectedrelationshipsschemaChanged(); + private string _relationshipdata; + partial void OnrelationshipdataChanging(string value); + partial void OnrelationshipdataChanged(); /// /// There are no comments for Property modifiedonbehalfby in the schema. /// @@ -423460,28 +423526,6 @@ public static mobileofflineprofileitem Createmobileofflineprofileitem(global::EM return mobileofflineprofileitem; } /// - /// There are no comments for Property selectedentitymetadata in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string selectedentitymetadata - { - get - { - return this._selectedentitymetadata; - } - set - { - this.OnselectedentitymetadataChanging(value); - this._selectedentitymetadata = value; - this.OnselectedentitymetadataChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _selectedentitymetadata; - partial void OnselectedentitymetadataChanging(string value); - partial void OnselectedentitymetadataChanged(); - /// /// There are no comments for Property recorddistributioncriteria in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -423526,6 +423570,28 @@ public virtual string selectedentitymetadata partial void OnmobileofflineprofileitemiduniqueChanging(global::System.Nullable value); partial void OnmobileofflineprofileitemiduniqueChanged(); /// + /// There are no comments for Property selectedentitytypecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string selectedentitytypecode + { + get + { + return this._selectedentitytypecode; + } + set + { + this.OnselectedentitytypecodeChanging(value); + this._selectedentitytypecode = value; + this.OnselectedentitytypecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _selectedentitytypecode; + partial void OnselectedentitytypecodeChanging(string value); + partial void OnselectedentitytypecodeChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -423636,49 +423702,49 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// - /// There are no comments for Property profileitementityfilter in the schema. + /// There are no comments for Property _regardingobjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string profileitementityfilter + public virtual global::System.Nullable _regardingobjectid_value { get { - return this._profileitementityfilter; + return this.__regardingobjectid_value; } set { - this.OnprofileitementityfilterChanging(value); - this._profileitementityfilter = value; - this.OnprofileitementityfilterChanged(); + this.On_regardingobjectid_valueChanging(value); + this.__regardingobjectid_value = value; + this.On_regardingobjectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _profileitementityfilter; - partial void OnprofileitementityfilterChanging(string value); - partial void OnprofileitementityfilterChanged(); + private global::System.Nullable __regardingobjectid_value; + partial void On_regardingobjectid_valueChanging(global::System.Nullable value); + partial void On_regardingobjectid_valueChanged(); /// - /// There are no comments for Property _regardingobjectid_value in the schema. + /// There are no comments for Property profileitementityfilter in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _regardingobjectid_value + public virtual string profileitementityfilter { get { - return this.__regardingobjectid_value; + return this._profileitementityfilter; } set { - this.On_regardingobjectid_valueChanging(value); - this.__regardingobjectid_value = value; - this.On_regardingobjectid_valueChanged(); + this.OnprofileitementityfilterChanging(value); + this._profileitementityfilter = value; + this.OnprofileitementityfilterChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __regardingobjectid_value; - partial void On_regardingobjectid_valueChanging(global::System.Nullable value); - partial void On_regardingobjectid_valueChanged(); + private string _profileitementityfilter; + partial void OnprofileitementityfilterChanging(string value); + partial void OnprofileitementityfilterChanged(); /// /// There are no comments for Property componentstate in the schema. /// @@ -423966,27 +424032,27 @@ public virtual string traversedpath partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property selectedentitytypecode in the schema. + /// There are no comments for Property selectedentitymetadata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string selectedentitytypecode + public virtual string selectedentitymetadata { get { - return this._selectedentitytypecode; + return this._selectedentitymetadata; } set { - this.OnselectedentitytypecodeChanging(value); - this._selectedentitytypecode = value; - this.OnselectedentitytypecodeChanged(); + this.OnselectedentitymetadataChanging(value); + this._selectedentitymetadata = value; + this.OnselectedentitymetadataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _selectedentitytypecode; - partial void OnselectedentitytypecodeChanging(string value); - partial void OnselectedentitytypecodeChanged(); + private string _selectedentitymetadata; + partial void OnselectedentitymetadataChanging(string value); + partial void OnselectedentitymetadataChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -424686,28 +424752,6 @@ public static mobileofflineprofile Createmobileofflineprofile(global::EMBC.ESS.U partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property introducedversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string introducedversion - { - get - { - return this._introducedversion; - } - set - { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -424752,72 +424796,6 @@ public virtual string introducedversion partial void OnmobileofflineprofileiduniqueChanging(global::System.Nullable value); partial void OnmobileofflineprofileiduniqueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property isvalidated in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isvalidated - { - get - { - return this._isvalidated; - } - set - { - this.OnisvalidatedChanging(value); - this._isvalidated = value; - this.OnisvalidatedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isvalidated; - partial void OnisvalidatedChanging(global::System.Nullable value); - partial void OnisvalidatedChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -424840,6 +424818,94 @@ public virtual string introducedversion partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property isvalidated in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isvalidated + { + get + { + return this._isvalidated; + } + set + { + this.OnisvalidatedChanging(value); + this._isvalidated = value; + this.OnisvalidatedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isvalidated; + partial void OnisvalidatedChanging(global::System.Nullable value); + partial void OnisvalidatedChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// /// There are no comments for Property publishedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -424972,6 +425038,28 @@ public virtual string description partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -425060,28 +425148,6 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -425978,6 +426044,28 @@ public static monthlyfiscalcalendar Createmonthlyfiscalcalendar(global::EMBC.ESS partial void On_businessunitid_valueChanging(global::System.Nullable value); partial void On_businessunitid_valueChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -426022,6 +426110,28 @@ public static monthlyfiscalcalendar Createmonthlyfiscalcalendar(global::EMBC.ESS partial void Onmonth11_baseChanging(global::System.Nullable value); partial void Onmonth11_baseChanged(); /// + /// There are no comments for Property month7 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable month7 + { + get + { + return this._month7; + } + set + { + this.Onmonth7Changing(value); + this._month7 = value; + this.Onmonth7Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _month7; + partial void Onmonth7Changing(global::System.Nullable value); + partial void Onmonth7Changed(); + /// /// There are no comments for Property month2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -426088,28 +426198,6 @@ public static monthlyfiscalcalendar Createmonthlyfiscalcalendar(global::EMBC.ESS partial void Onmonth5Changing(global::System.Nullable value); partial void Onmonth5Changed(); /// - /// There are no comments for Property month7 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable month7 - { - get - { - return this._month7; - } - set - { - this.Onmonth7Changing(value); - this._month7 = value; - this.Onmonth7Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _month7; - partial void Onmonth7Changing(global::System.Nullable value); - partial void Onmonth7Changed(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -426374,28 +426462,6 @@ public static monthlyfiscalcalendar Createmonthlyfiscalcalendar(global::EMBC.ESS partial void Onmonth3Changing(global::System.Nullable value); partial void Onmonth3Changed(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property month4 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -428320,50 +428386,6 @@ public static msdyn_actioncardrolesetting Createmsdyn_actioncardrolesetting(glob partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property msdyn_isdisabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_isdisabled - { - get - { - return this._msdyn_isdisabled; - } - set - { - this.Onmsdyn_isdisabledChanging(value); - this._msdyn_isdisabled = value; - this.Onmsdyn_isdisabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isdisabled; - partial void Onmsdyn_isdisabledChanging(global::System.Nullable value); - partial void Onmsdyn_isdisabledChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -428386,6 +428408,50 @@ public static msdyn_actioncardrolesetting Createmsdyn_actioncardrolesetting(glob partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -428408,6 +428474,28 @@ public static msdyn_actioncardrolesetting Createmsdyn_actioncardrolesetting(glob partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property msdyn_isdisabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_isdisabled + { + get + { + return this._msdyn_isdisabled; + } + set + { + this.Onmsdyn_isdisabledChanging(value); + this._msdyn_isdisabled = value; + this.Onmsdyn_isdisabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_isdisabled; + partial void Onmsdyn_isdisabledChanging(global::System.Nullable value); + partial void Onmsdyn_isdisabledChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -428430,27 +428518,27 @@ public static msdyn_actioncardrolesetting Createmsdyn_actioncardrolesetting(glob partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _msdyn_roleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _msdyn_roleid_value { get { - return this._versionnumber; + return this.__msdyn_roleid_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_msdyn_roleid_valueChanging(value); + this.__msdyn_roleid_value = value; + this.On_msdyn_roleid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __msdyn_roleid_value; + partial void On_msdyn_roleid_valueChanging(global::System.Nullable value); + partial void On_msdyn_roleid_valueChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -428496,28 +428584,6 @@ public static msdyn_actioncardrolesetting Createmsdyn_actioncardrolesetting(glob partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _msdyn_roleid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _msdyn_roleid_value - { - get - { - return this.__msdyn_roleid_value; - } - set - { - this.On_msdyn_roleid_valueChanging(value); - this.__msdyn_roleid_value = value; - this.On_msdyn_roleid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_roleid_value; - partial void On_msdyn_roleid_valueChanging(global::System.Nullable value); - partial void On_msdyn_roleid_valueChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -428584,6 +428650,28 @@ public static msdyn_actioncardrolesetting Createmsdyn_actioncardrolesetting(glob partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property msdyn_actioncardrolesettingid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -428672,28 +428760,6 @@ public virtual string msdyn_name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -429588,6 +429654,28 @@ public static msdyn_aibdatasetfile Createmsdyn_aibdatasetfile(global::EMBC.ESS.U return msdyn_aibdatasetfile; } /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -429654,116 +429742,6 @@ public static msdyn_aibdatasetfile Createmsdyn_aibdatasetfile(global::EMBC.ESS.U partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property msdyn_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_name - { - get - { - return this._msdyn_name; - } - set - { - this.Onmsdyn_nameChanging(value); - this._msdyn_name = value; - this.Onmsdyn_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_name; - partial void Onmsdyn_nameChanging(string value); - partial void Onmsdyn_nameChanged(); - /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property msdyn_aibdatasetfileid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -429786,6 +429764,138 @@ public virtual string msdyn_name partial void Onmsdyn_aibdatasetfileidChanging(global::System.Nullable value); partial void Onmsdyn_aibdatasetfileidChanged(); /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -429808,49 +429918,49 @@ public virtual string msdyn_name partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _msdyn_aibdatasetid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _msdyn_aibdatasetid_value { get { - return this.__owningbusinessunit_value; + return this.__msdyn_aibdatasetid_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_msdyn_aibdatasetid_valueChanging(value); + this.__msdyn_aibdatasetid_value = value; + this.On_msdyn_aibdatasetid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __msdyn_aibdatasetid_value; + partial void On_msdyn_aibdatasetid_valueChanging(global::System.Nullable value); + partial void On_msdyn_aibdatasetid_valueChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable statecode { get { - return this.__owninguser_value; + return this._statecode; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -429874,28 +429984,6 @@ public virtual string msdyn_name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -429962,27 +430050,27 @@ public virtual string msdyn_name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _msdyn_aibdatasetid_value in the schema. + /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_aibdatasetid_value + public virtual string msdyn_name { get { - return this.__msdyn_aibdatasetid_value; + return this._msdyn_name; } set { - this.On_msdyn_aibdatasetid_valueChanging(value); - this.__msdyn_aibdatasetid_value = value; - this.On_msdyn_aibdatasetid_valueChanged(); + this.Onmsdyn_nameChanging(value); + this._msdyn_name = value; + this.Onmsdyn_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_aibdatasetid_value; - partial void On_msdyn_aibdatasetid_valueChanging(global::System.Nullable value); - partial void On_msdyn_aibdatasetid_valueChanged(); + private string _msdyn_name; + partial void Onmsdyn_nameChanging(string value); + partial void Onmsdyn_nameChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -430006,27 +430094,27 @@ public virtual string msdyn_name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__ownerid_value; + return this.__owningbusinessunit_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property msdyn_lastmodifieddate in the schema. /// @@ -430050,28 +430138,6 @@ public virtual string msdyn_name partial void Onmsdyn_lastmodifieddateChanging(global::System.Nullable value); partial void Onmsdyn_lastmodifieddateChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -430984,27 +431050,27 @@ public virtual string msdyn_data partial void Onmsdyn_dataChanging(string value); partial void Onmsdyn_dataChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _ownerid_value { get { - return this._modifiedon; + return this.__ownerid_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -431028,93 +431094,71 @@ public virtual string msdyn_data partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property _msdyn_aibdatasetsid_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_aibdatasetsid_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__msdyn_aibdatasetsid_value; + return this._overriddencreatedon; } set { - this.On_msdyn_aibdatasetsid_valueChanging(value); - this.__msdyn_aibdatasetsid_value = value; - this.On_msdyn_aibdatasetsid_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_aibdatasetsid_value; - partial void On_msdyn_aibdatasetsid_valueChanging(global::System.Nullable value); - partial void On_msdyn_aibdatasetsid_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__ownerid_value; + return this.__createdonbehalfby_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string msdyn_name { get { - return this.__createdonbehalfby_value; + return this._msdyn_name; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onmsdyn_nameChanging(value); + this._msdyn_name = value; + this.Onmsdyn_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _msdyn_name; + partial void Onmsdyn_nameChanging(string value); + partial void Onmsdyn_nameChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -431204,49 +431248,71 @@ public virtual string msdyn_data partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable modifiedon { get { - return this._importsequencenumber; + return this._modifiedon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property msdyn_aibdatasetrecordid in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_aibdatasetrecordid + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._msdyn_aibdatasetrecordid; + return this._timezoneruleversionnumber; } set { - this.Onmsdyn_aibdatasetrecordidChanging(value); - this._msdyn_aibdatasetrecordid = value; - this.Onmsdyn_aibdatasetrecordidChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_aibdatasetrecordid; - partial void Onmsdyn_aibdatasetrecordidChanging(global::System.Nullable value); - partial void Onmsdyn_aibdatasetrecordidChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property _msdyn_aibdatasetsid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _msdyn_aibdatasetsid_value + { + get + { + return this.__msdyn_aibdatasetsid_value; + } + set + { + this.On_msdyn_aibdatasetsid_valueChanging(value); + this.__msdyn_aibdatasetsid_value = value; + this.On_msdyn_aibdatasetsid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __msdyn_aibdatasetsid_value; + partial void On_msdyn_aibdatasetsid_valueChanging(global::System.Nullable value); + partial void On_msdyn_aibdatasetsid_valueChanged(); /// /// There are no comments for Property msdyn_recordtype in the schema. /// @@ -431270,27 +431336,27 @@ public virtual string msdyn_data partial void Onmsdyn_recordtypeChanging(global::System.Nullable value); partial void Onmsdyn_recordtypeChanged(); /// - /// There are no comments for Property msdyn_name in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_name + public virtual global::System.Nullable importsequencenumber { get { - return this._msdyn_name; + return this._importsequencenumber; } set { - this.Onmsdyn_nameChanging(value); - this._msdyn_name = value; - this.Onmsdyn_nameChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_name; - partial void Onmsdyn_nameChanging(string value); - partial void Onmsdyn_nameChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -431314,27 +431380,27 @@ public virtual string msdyn_name partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable statuscode { get { - return this._overriddencreatedon; + return this._statuscode; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -431358,27 +431424,27 @@ public virtual string msdyn_name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable versionnumber { get { - return this._statuscode; + return this._versionnumber; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -431424,27 +431490,27 @@ public virtual string msdyn_name partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property msdyn_aibdatasetrecordid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable msdyn_aibdatasetrecordid { get { - return this._versionnumber; + return this._msdyn_aibdatasetrecordid; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.Onmsdyn_aibdatasetrecordidChanging(value); + this._msdyn_aibdatasetrecordid = value; + this.Onmsdyn_aibdatasetrecordidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _msdyn_aibdatasetrecordid; + partial void Onmsdyn_aibdatasetrecordidChanging(global::System.Nullable value); + partial void Onmsdyn_aibdatasetrecordidChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -432355,27 +432421,27 @@ public static msdyn_aibdataset Createmsdyn_aibdataset(global::EMBC.ESS.Utilities partial void Onmsdyn_aibdatasetidChanging(global::System.Nullable value); partial void Onmsdyn_aibdatasetidChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable createdon { get { - return this._importsequencenumber; + return this._createdon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -432399,27 +432465,49 @@ public static msdyn_aibdataset Createmsdyn_aibdataset(global::EMBC.ESS.Utilities partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _msdyn_aibdatasetscontainerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _msdyn_aibdatasetscontainerid_value { get { - return this._createdon; + return this.__msdyn_aibdatasetscontainerid_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_msdyn_aibdatasetscontainerid_valueChanging(value); + this.__msdyn_aibdatasetscontainerid_value = value; + this.On_msdyn_aibdatasetscontainerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __msdyn_aibdatasetscontainerid_value; + partial void On_msdyn_aibdatasetscontainerid_valueChanging(global::System.Nullable value); + partial void On_msdyn_aibdatasetscontainerid_valueChanged(); + /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -432443,6 +432531,28 @@ public static msdyn_aibdataset Createmsdyn_aibdataset(global::EMBC.ESS.Utilities partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -432531,71 +432641,71 @@ public static msdyn_aibdataset Createmsdyn_aibdataset(global::EMBC.ESS.Utilities partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__owningteam_value; + return this.__ownerid_value; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable importsequencenumber { get { - return this._statecode; + return this._importsequencenumber; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable versionnumber { get { - return this.__createdby_value; + return this._versionnumber; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -432641,27 +432751,27 @@ public static msdyn_aibdataset Createmsdyn_aibdataset(global::EMBC.ESS.Utilities partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable statecode { get { - return this.__owninguser_value; + return this._statecode; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -432685,27 +432795,27 @@ public static msdyn_aibdataset Createmsdyn_aibdataset(global::EMBC.ESS.Utilities partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _msdyn_aibdatasetscontainerid_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_aibdatasetscontainerid_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__msdyn_aibdatasetscontainerid_value; + return this.__owningteam_value; } set { - this.On_msdyn_aibdatasetscontainerid_valueChanging(value); - this.__msdyn_aibdatasetscontainerid_value = value; - this.On_msdyn_aibdatasetscontainerid_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_aibdatasetscontainerid_value; - partial void On_msdyn_aibdatasetscontainerid_valueChanging(global::System.Nullable value); - partial void On_msdyn_aibdatasetscontainerid_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property msdyn_metadata in the schema. /// @@ -432729,28 +432839,6 @@ public virtual string msdyn_metadata partial void Onmsdyn_metadataChanging(string value); partial void Onmsdyn_metadataChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -432773,28 +432861,6 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -433748,28 +433814,6 @@ public static msdyn_aibdatasetscontainer Createmsdyn_aibdatasetscontainer(global partial void Onmsdyn_aibdatasetscontaineridChanging(global::System.Nullable value); partial void Onmsdyn_aibdatasetscontaineridChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -433836,28 +433880,6 @@ public static msdyn_aibdatasetscontainer Createmsdyn_aibdatasetscontainer(global partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -433880,27 +433902,27 @@ public static msdyn_aibdatasetscontainer Createmsdyn_aibdatasetscontainer(global partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__ownerid_value; + return this.__owningbusinessunit_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -434078,6 +434100,28 @@ public static msdyn_aibdatasetscontainer Createmsdyn_aibdatasetscontainer(global partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -434122,6 +434166,28 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -435187,6 +435253,28 @@ public static msdyn_aibfileattacheddata Createmsdyn_aibfileattacheddata(global:: partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property _msdyn_aibdatasetfileid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -435231,27 +435319,27 @@ public static msdyn_aibfileattacheddata Createmsdyn_aibfileattacheddata(global:: partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__ownerid_value; + return this._importsequencenumber; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -435319,27 +435407,27 @@ public static msdyn_aibfileattacheddata Createmsdyn_aibfileattacheddata(global:: partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property msdyn_data in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string msdyn_data { get { - return this._statuscode; + return this._msdyn_data; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onmsdyn_dataChanging(value); + this._msdyn_data = value; + this.Onmsdyn_dataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _msdyn_data; + partial void Onmsdyn_dataChanging(string value); + partial void Onmsdyn_dataChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -435363,28 +435451,6 @@ public static msdyn_aibfileattacheddata Createmsdyn_aibfileattacheddata(global:: partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property msdyn_type in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -435407,27 +435473,27 @@ public virtual string msdyn_type partial void Onmsdyn_typeChanging(string value); partial void Onmsdyn_typeChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable statuscode { get { - return this._timezoneruleversionnumber; + return this._statuscode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property msdyn_key in the schema. /// @@ -435495,27 +435561,27 @@ public virtual string msdyn_key partial void Onmsdyn_aibfileattacheddataidChanging(global::System.Nullable value); partial void Onmsdyn_aibfileattacheddataidChanged(); /// - /// There are no comments for Property msdyn_data in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_data + public virtual global::System.Nullable _ownerid_value { get { - return this._msdyn_data; + return this.__ownerid_value; } set { - this.Onmsdyn_dataChanging(value); - this._msdyn_data = value; - this.Onmsdyn_dataChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_data; - partial void Onmsdyn_dataChanging(string value); - partial void Onmsdyn_dataChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -436426,27 +436492,27 @@ public static msdyn_aibfile Createmsdyn_aibfile(global::EMBC.ESS.Utilities.Dynam return msdyn_aibfile; } /// - /// There are no comments for Property msdyn_aibfileid in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_aibfileid + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._msdyn_aibfileid; + return this.__modifiedonbehalfby_value; } set { - this.Onmsdyn_aibfileidChanging(value); - this._msdyn_aibfileid = value; - this.Onmsdyn_aibfileidChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_aibfileid; - partial void Onmsdyn_aibfileidChanging(global::System.Nullable value); - partial void Onmsdyn_aibfileidChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -436492,27 +436558,27 @@ public static msdyn_aibfile Createmsdyn_aibfile(global::EMBC.ESS.Utilities.Dynam partial void Onmsdyn_sizeChanging(global::System.Nullable value); partial void Onmsdyn_sizeChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property msdyn_importmetadata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual string msdyn_importmetadata { get { - return this.__ownerid_value; + return this._msdyn_importmetadata; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.Onmsdyn_importmetadataChanging(value); + this._msdyn_importmetadata = value; + this.Onmsdyn_importmetadataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private string _msdyn_importmetadata; + partial void Onmsdyn_importmetadataChanging(string value); + partial void Onmsdyn_importmetadataChanged(); /// /// There are no comments for Property msdyn_imageid in the schema. /// @@ -436536,28 +436602,6 @@ public static msdyn_aibfile Createmsdyn_aibfile(global::EMBC.ESS.Utilities.Dynam partial void Onmsdyn_imageidChanging(global::System.Nullable value); partial void Onmsdyn_imageidChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property msdyn_file_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -436668,115 +436712,115 @@ public virtual string msdyn_file_name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable versionnumber { get { - return this.__owningteam_value; + return this._versionnumber; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property msdyn_importmetadata in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_importmetadata + public virtual global::System.Nullable statecode { get { - return this._msdyn_importmetadata; + return this._statecode; } set { - this.Onmsdyn_importmetadataChanging(value); - this._msdyn_importmetadata = value; - this.Onmsdyn_importmetadataChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_importmetadata; - partial void Onmsdyn_importmetadataChanging(string value); - partial void Onmsdyn_importmetadataChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable importsequencenumber { get { - return this._versionnumber; + return this._importsequencenumber; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property msdyn_aibfileid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable msdyn_aibfileid { get { - return this._statecode; + return this._msdyn_aibfileid; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onmsdyn_aibfileidChanging(value); + this._msdyn_aibfileid = value; + this.Onmsdyn_aibfileidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _msdyn_aibfileid; + partial void Onmsdyn_aibfileidChanging(global::System.Nullable value); + partial void Onmsdyn_aibfileidChanged(); /// - /// There are no comments for Property msdyn_checksum in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_checksum + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._msdyn_checksum; + return this.__createdonbehalfby_value; } set { - this.Onmsdyn_checksumChanging(value); - this._msdyn_checksum = value; - this.Onmsdyn_checksumChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_checksum; - partial void Onmsdyn_checksumChanging(string value); - partial void Onmsdyn_checksumChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _msdyn_aibdatasetscontainerid_value in the schema. /// @@ -436866,27 +436910,27 @@ public virtual byte[] msdyn_image partial void Onmsdyn_imageChanging(byte[] value); partial void Onmsdyn_imageChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__modifiedonbehalfby_value; + return this.__ownerid_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -436976,27 +437020,27 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__createdonbehalfby_value; + return this.__createdby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property msdyn_file in the schema. /// @@ -437020,71 +437064,93 @@ public virtual byte[] msdyn_file partial void Onmsdyn_fileChanging(byte[] value); partial void Onmsdyn_fileChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property msdyn_checksum in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string msdyn_checksum { get { - return this._statuscode; + return this._msdyn_checksum; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onmsdyn_checksumChanging(value); + this._msdyn_checksum = value; + this.Onmsdyn_checksumChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _msdyn_checksum; + partial void Onmsdyn_checksumChanging(string value); + partial void Onmsdyn_checksumChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._importsequencenumber; + return this._timezoneruleversionnumber; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _owningteam_value { get { - return this._timezoneruleversionnumber; + return this.__owningteam_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -438159,6 +438225,28 @@ public virtual byte[] msdyn_model partial void On_msdyn_aimodelid_valueChanging(global::System.Nullable value); partial void On_msdyn_aimodelid_valueChanged(); /// + /// There are no comments for Property msdyn_databinding in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_databinding + { + get + { + return this._msdyn_databinding; + } + set + { + this.Onmsdyn_databindingChanging(value); + this._msdyn_databinding = value; + this.Onmsdyn_databindingChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_databinding; + partial void Onmsdyn_databindingChanging(string value); + partial void Onmsdyn_databindingChanged(); + /// /// There are no comments for Property _msdyn_createdfromconfigurationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -438181,27 +438269,71 @@ public virtual byte[] msdyn_model partial void On_msdyn_createdfromconfigurationid_valueChanging(global::System.Nullable value); partial void On_msdyn_createdfromconfigurationid_valueChanged(); /// - /// There are no comments for Property msdyn_modeldata in the schema. + /// There are no comments for Property _msdyn_trainedmodelaiconfigurationpareid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_modeldata + public virtual global::System.Nullable _msdyn_trainedmodelaiconfigurationpareid_value { get { - return this._msdyn_modeldata; + return this.__msdyn_trainedmodelaiconfigurationpareid_value; } set { - this.Onmsdyn_modeldataChanging(value); - this._msdyn_modeldata = value; - this.Onmsdyn_modeldataChanged(); + this.On_msdyn_trainedmodelaiconfigurationpareid_valueChanging(value); + this.__msdyn_trainedmodelaiconfigurationpareid_value = value; + this.On_msdyn_trainedmodelaiconfigurationpareid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_modeldata; - partial void Onmsdyn_modeldataChanging(string value); - partial void Onmsdyn_modeldataChanged(); + private global::System.Nullable __msdyn_trainedmodelaiconfigurationpareid_value; + partial void On_msdyn_trainedmodelaiconfigurationpareid_valueChanging(global::System.Nullable value); + partial void On_msdyn_trainedmodelaiconfigurationpareid_valueChanged(); + /// + /// There are no comments for Property msdyn_modelprovisioningstatus in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_modelprovisioningstatus + { + get + { + return this._msdyn_modelprovisioningstatus; + } + set + { + this.Onmsdyn_modelprovisioningstatusChanging(value); + this._msdyn_modelprovisioningstatus = value; + this.Onmsdyn_modelprovisioningstatusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_modelprovisioningstatus; + partial void Onmsdyn_modelprovisioningstatusChanging(string value); + partial void Onmsdyn_modelprovisioningstatusChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -438225,6 +438357,28 @@ public virtual string msdyn_modeldata partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -438247,27 +438401,49 @@ public virtual string msdyn_modeldata partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property msdyn_schedulingoptions in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_schedulingoptions + public virtual global::System.Nullable overriddencreatedon { get { - return this._msdyn_schedulingoptions; + return this._overriddencreatedon; } set { - this.Onmsdyn_schedulingoptionsChanging(value); - this._msdyn_schedulingoptions = value; - this.Onmsdyn_schedulingoptionsChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_schedulingoptions; - partial void Onmsdyn_schedulingoptionsChanging(string value); - partial void Onmsdyn_schedulingoptionsChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property msdyn_minoriterationnumber in the schema. /// @@ -438291,93 +438467,115 @@ public virtual string msdyn_schedulingoptions partial void Onmsdyn_minoriterationnumberChanging(global::System.Nullable value); partial void Onmsdyn_minoriterationnumberChanged(); /// - /// There are no comments for Property msdyn_runconfiguration in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_runconfiguration + public virtual global::System.Nullable componentstate { get { - return this._msdyn_runconfiguration; + return this._componentstate; } set { - this.Onmsdyn_runconfigurationChanging(value); - this._msdyn_runconfiguration = value; - this.Onmsdyn_runconfigurationChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_runconfiguration; - partial void Onmsdyn_runconfigurationChanging(string value); - partial void Onmsdyn_runconfigurationChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property msdyn_modelprovisioningmetadata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual string msdyn_modelprovisioningmetadata { get { - return this._componentstate; + return this._msdyn_modelprovisioningmetadata; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.Onmsdyn_modelprovisioningmetadataChanging(value); + this._msdyn_modelprovisioningmetadata = value; + this.Onmsdyn_modelprovisioningmetadataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private string _msdyn_modelprovisioningmetadata; + partial void Onmsdyn_modelprovisioningmetadataChanging(string value); + partial void Onmsdyn_modelprovisioningmetadataChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property msdyn_runconfiguration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string msdyn_runconfiguration { get { - return this._timezoneruleversionnumber; + return this._msdyn_runconfiguration; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onmsdyn_runconfigurationChanging(value); + this._msdyn_runconfiguration = value; + this.Onmsdyn_runconfigurationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _msdyn_runconfiguration; + partial void Onmsdyn_runconfigurationChanging(string value); + partial void Onmsdyn_runconfigurationChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property msdyn_schedulingoptions in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string msdyn_schedulingoptions { get { - return this.__createdby_value; + return this._msdyn_schedulingoptions; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Onmsdyn_schedulingoptionsChanging(value); + this._msdyn_schedulingoptions = value; + this.Onmsdyn_schedulingoptionsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _msdyn_schedulingoptions; + partial void Onmsdyn_schedulingoptionsChanging(string value); + partial void Onmsdyn_schedulingoptionsChanged(); + /// + /// There are no comments for Property msdyn_modelperformance in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_modelperformance + { + get + { + return this._msdyn_modelperformance; + } + set + { + this.Onmsdyn_modelperformanceChanging(value); + this._msdyn_modelperformance = value; + this.Onmsdyn_modelperformanceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_modelperformance; + partial void Onmsdyn_modelperformanceChanging(string value); + partial void Onmsdyn_modelperformanceChanged(); /// /// There are no comments for Property msdyn_customconfiguration in the schema. /// @@ -438401,27 +438599,27 @@ public virtual string msdyn_customconfiguration partial void Onmsdyn_customconfigurationChanging(string value); partial void Onmsdyn_customconfigurationChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._solutionid; + return this._timezoneruleversionnumber; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property msdyn_model_name in the schema. /// @@ -438467,27 +438665,27 @@ public virtual string msdyn_model_name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _msdyn_trainedmodelaiconfigurationpareid_value in the schema. + /// There are no comments for Property msdyn_modeldata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_trainedmodelaiconfigurationpareid_value + public virtual string msdyn_modeldata { get { - return this.__msdyn_trainedmodelaiconfigurationpareid_value; + return this._msdyn_modeldata; } set { - this.On_msdyn_trainedmodelaiconfigurationpareid_valueChanging(value); - this.__msdyn_trainedmodelaiconfigurationpareid_value = value; - this.On_msdyn_trainedmodelaiconfigurationpareid_valueChanged(); + this.Onmsdyn_modeldataChanging(value); + this._msdyn_modeldata = value; + this.Onmsdyn_modeldataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_trainedmodelaiconfigurationpareid_value; - partial void On_msdyn_trainedmodelaiconfigurationpareid_valueChanging(global::System.Nullable value); - partial void On_msdyn_trainedmodelaiconfigurationpareid_valueChanged(); + private string _msdyn_modeldata; + partial void Onmsdyn_modeldataChanging(string value); + partial void Onmsdyn_modeldataChanged(); /// /// There are no comments for Property msdyn_aiconfigurationid in the schema. /// @@ -438599,27 +438797,27 @@ public virtual string msdyn_model_name partial void Onmsdyn_templateversionChanging(global::System.Nullable value); partial void Onmsdyn_templateversionChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable _modifiedby_value { get { - return this._ismanaged; + return this.__modifiedby_value; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -438709,28 +438907,6 @@ public virtual string msdyn_model_name partial void Onmsdyn_lasttrainorrundateChanging(global::System.Nullable value); partial void Onmsdyn_lasttrainorrundateChanged(); /// - /// There are no comments for Property msdyn_modelprovisioningstatus in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_modelprovisioningstatus - { - get - { - return this._msdyn_modelprovisioningstatus; - } - set - { - this.Onmsdyn_modelprovisioningstatusChanging(value); - this._msdyn_modelprovisioningstatus = value; - this.Onmsdyn_modelprovisioningstatusChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_modelprovisioningstatus; - partial void Onmsdyn_modelprovisioningstatusChanging(string value); - partial void Onmsdyn_modelprovisioningstatusChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -438753,28 +438929,6 @@ public virtual string msdyn_modelprovisioningstatus partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -438797,28 +438951,6 @@ public virtual string msdyn_modelprovisioningstatus partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property msdyn_modelperformance in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_modelperformance - { - get - { - return this._msdyn_modelperformance; - } - set - { - this.Onmsdyn_modelperformanceChanging(value); - this._msdyn_modelperformance = value; - this.Onmsdyn_modelperformanceChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_modelperformance; - partial void Onmsdyn_modelperformanceChanging(string value); - partial void Onmsdyn_modelperformanceChanged(); - /// /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -438907,6 +439039,28 @@ public virtual string msdyn_name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property msdyn_majoriterationnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_majoriterationnumber + { + get + { + return this._msdyn_majoriterationnumber; + } + set + { + this.Onmsdyn_majoriterationnumberChanging(value); + this._msdyn_majoriterationnumber = value; + this.Onmsdyn_majoriterationnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_majoriterationnumber; + partial void Onmsdyn_majoriterationnumberChanging(global::System.Nullable value); + partial void Onmsdyn_majoriterationnumberChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -438929,27 +439083,27 @@ public virtual string msdyn_name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property msdyn_databinding in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_databinding + public virtual global::System.Nullable ismanaged { get { - return this._msdyn_databinding; + return this._ismanaged; } set { - this.Onmsdyn_databindingChanging(value); - this._msdyn_databinding = value; - this.Onmsdyn_databindingChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_databinding; - partial void Onmsdyn_databindingChanging(string value); - partial void Onmsdyn_databindingChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property msdyn_resourceinfo in the schema. /// @@ -439039,28 +439193,6 @@ public virtual string msdyn_modelrundataspecification partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property msdyn_modelglobalexplainability in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -439083,50 +439215,6 @@ public virtual string msdyn_modelglobalexplainability partial void Onmsdyn_modelglobalexplainabilityChanging(string value); partial void Onmsdyn_modelglobalexplainabilityChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property msdyn_modelprovisioningmetadata in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_modelprovisioningmetadata - { - get - { - return this._msdyn_modelprovisioningmetadata; - } - set - { - this.Onmsdyn_modelprovisioningmetadataChanging(value); - this._msdyn_modelprovisioningmetadata = value; - this.Onmsdyn_modelprovisioningmetadataChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_modelprovisioningmetadata; - partial void Onmsdyn_modelprovisioningmetadataChanging(string value); - partial void Onmsdyn_modelprovisioningmetadataChanged(); - /// /// There are no comments for Property msdyn_lasterrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -439149,28 +439237,6 @@ public virtual string msdyn_lasterrors partial void Onmsdyn_lasterrorsChanging(string value); partial void Onmsdyn_lasterrorsChanged(); /// - /// There are no comments for Property msdyn_majoriterationnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_majoriterationnumber - { - get - { - return this._msdyn_majoriterationnumber; - } - set - { - this.Onmsdyn_majoriterationnumberChanging(value); - this._msdyn_majoriterationnumber = value; - this.Onmsdyn_majoriterationnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_majoriterationnumber; - partial void Onmsdyn_majoriterationnumberChanging(global::System.Nullable value); - partial void Onmsdyn_majoriterationnumberChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -440288,6 +440354,28 @@ public static msdyn_aifptrainingdocument Createmsdyn_aifptrainingdocument(global partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property msdyn_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_name + { + get + { + return this._msdyn_name; + } + set + { + this.Onmsdyn_nameChanging(value); + this._msdyn_name = value; + this.Onmsdyn_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_name; + partial void Onmsdyn_nameChanging(string value); + partial void Onmsdyn_nameChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -440398,137 +440486,115 @@ public static msdyn_aifptrainingdocument Createmsdyn_aifptrainingdocument(global partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property msdyn_metadata in the schema. + /// There are no comments for Property _msdyn_aiconfigurationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_metadata + public virtual global::System.Nullable _msdyn_aiconfigurationid_value { get { - return this._msdyn_metadata; + return this.__msdyn_aiconfigurationid_value; } set { - this.Onmsdyn_metadataChanging(value); - this._msdyn_metadata = value; - this.Onmsdyn_metadataChanged(); + this.On_msdyn_aiconfigurationid_valueChanging(value); + this.__msdyn_aiconfigurationid_value = value; + this.On_msdyn_aiconfigurationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_metadata; - partial void Onmsdyn_metadataChanging(string value); - partial void Onmsdyn_metadataChanged(); + private global::System.Nullable __msdyn_aiconfigurationid_value; + partial void On_msdyn_aiconfigurationid_valueChanging(global::System.Nullable value); + partial void On_msdyn_aiconfigurationid_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _createdby_value { get { - return this._timezoneruleversionnumber; + return this.__createdby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable modifiedon { get { - return this.__createdby_value; + return this._modifiedon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _msdyn_aiconfigurationid_value in the schema. + /// There are no comments for Property msdyn_sourcetype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_aiconfigurationid_value + public virtual string msdyn_sourcetype { get { - return this.__msdyn_aiconfigurationid_value; + return this._msdyn_sourcetype; } set { - this.On_msdyn_aiconfigurationid_valueChanging(value); - this.__msdyn_aiconfigurationid_value = value; - this.On_msdyn_aiconfigurationid_valueChanged(); + this.Onmsdyn_sourcetypeChanging(value); + this._msdyn_sourcetype = value; + this.Onmsdyn_sourcetypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_aiconfigurationid_value; - partial void On_msdyn_aiconfigurationid_valueChanging(global::System.Nullable value); - partial void On_msdyn_aiconfigurationid_valueChanged(); + private string _msdyn_sourcetype; + partial void Onmsdyn_sourcetypeChanging(string value); + partial void Onmsdyn_sourcetypeChanged(); /// - /// There are no comments for Property msdyn_name in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_name + public virtual global::System.Nullable importsequencenumber { get { - return this._msdyn_name; + return this._importsequencenumber; } set { - this.Onmsdyn_nameChanging(value); - this._msdyn_name = value; - this.Onmsdyn_nameChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_name; - partial void Onmsdyn_nameChanging(string value); - partial void Onmsdyn_nameChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property msdyn_checksum in the schema. /// @@ -440574,49 +440640,49 @@ public virtual string msdyn_checksum partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._importsequencenumber; + return this._timezoneruleversionnumber; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property msdyn_sourcetype in the schema. + /// There are no comments for Property msdyn_metadata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_sourcetype + public virtual string msdyn_metadata { get { - return this._msdyn_sourcetype; + return this._msdyn_metadata; } set { - this.Onmsdyn_sourcetypeChanging(value); - this._msdyn_sourcetype = value; - this.Onmsdyn_sourcetypeChanged(); + this.Onmsdyn_metadataChanging(value); + this._msdyn_metadata = value; + this.Onmsdyn_metadataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_sourcetype; - partial void Onmsdyn_sourcetypeChanging(string value); - partial void Onmsdyn_sourcetypeChanged(); + private string _msdyn_metadata; + partial void Onmsdyn_metadataChanging(string value); + partial void Onmsdyn_metadataChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -441782,6 +441848,28 @@ public virtual string introducedversion partial void On_msdyn_templateid_valueChanging(global::System.Nullable value); partial void On_msdyn_templateid_valueChanged(); /// + /// There are no comments for Property msdyn_aimodelid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_aimodelid + { + get + { + return this._msdyn_aimodelid; + } + set + { + this.Onmsdyn_aimodelidChanging(value); + this._msdyn_aimodelid = value; + this.Onmsdyn_aimodelidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_aimodelid; + partial void Onmsdyn_aimodelidChanging(global::System.Nullable value); + partial void Onmsdyn_aimodelidChanged(); + /// /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -441804,27 +441892,27 @@ public virtual string introducedversion partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// - /// There are no comments for Property msdyn_aimodelid in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_aimodelid + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._msdyn_aimodelid; + return this.__modifiedonbehalfby_value; } set { - this.Onmsdyn_aimodelidChanging(value); - this._msdyn_aimodelid = value; - this.Onmsdyn_aimodelidChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_aimodelid; - partial void Onmsdyn_aimodelidChanging(global::System.Nullable value); - partial void Onmsdyn_aimodelidChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -441848,6 +441936,28 @@ public virtual string introducedversion partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -441914,28 +442024,6 @@ public virtual string msdyn_modelcreationcontext partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -442200,28 +442288,6 @@ public virtual string msdyn_name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -443468,6 +443534,28 @@ public virtual string msdyn_description partial void OnentityimageidChanging(global::System.Nullable value); partial void OnentityimageidChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -443512,27 +443600,49 @@ public virtual string msdyn_description partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property entityimage in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] entityimage + public virtual global::System.Nullable modifiedon { get { - return this._entityimage; + return this._modifiedon; } set { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -443556,27 +443666,27 @@ public virtual byte[] entityimage partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property msdyn_metadata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual string msdyn_metadata { get { - return this._entityimage_url; + return this._msdyn_metadata; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.Onmsdyn_metadataChanging(value); + this._msdyn_metadata = value; + this.Onmsdyn_metadataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private string _msdyn_metadata; + partial void Onmsdyn_metadataChanging(string value); + partial void Onmsdyn_metadataChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -443600,49 +443710,27 @@ public virtual string entityimage_url partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__modifiedonbehalfby_value; + return this.__modifiedby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property msdyn_checksum in the schema. /// @@ -443688,28 +443776,6 @@ public virtual string msdyn_checksum partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -443754,49 +443820,49 @@ public virtual string msdyn_checksum partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string entityimage_url { get { - return this._utcconversiontimezonecode; + return this._entityimage_url; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// - /// There are no comments for Property msdyn_metadata in the schema. + /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_metadata + public virtual byte[] entityimage { get { - return this._msdyn_metadata; + return this._entityimage; } set { - this.Onmsdyn_metadataChanging(value); - this._msdyn_metadata = value; - this.Onmsdyn_metadataChanged(); + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_metadata; - partial void Onmsdyn_metadataChanging(string value); - partial void Onmsdyn_metadataChanged(); + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -443820,28 +443886,6 @@ public virtual string msdyn_metadata partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property msdyn_aiodimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -443886,6 +443930,28 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -444932,27 +444998,27 @@ public static msdyn_aiodlabel Createmsdyn_aiodlabel(global::EMBC.ESS.Utilities.D return msdyn_aiodlabel; } /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__owninguser_value; + return this.__owningteam_value; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property msdyn_aiodlabelid in the schema. /// @@ -444998,71 +445064,93 @@ public static msdyn_aiodlabel Createmsdyn_aiodlabel(global::EMBC.ESS.Utilities.D partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property msdyn_labelstring in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual string msdyn_labelstring { get { - return this._createdon; + return this._msdyn_labelstring; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.Onmsdyn_labelstringChanging(value); + this._msdyn_labelstring = value; + this.Onmsdyn_labelstringChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private string _msdyn_labelstring; + partial void Onmsdyn_labelstringChanging(string value); + partial void Onmsdyn_labelstringChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _owninguser_value { get { - return this.__createdonbehalfby_value; + return this.__owninguser_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property msdyn_sourceentitysetname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string msdyn_sourceentitysetname { get { - return this.__owningteam_value; + return this._msdyn_sourceentitysetname; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onmsdyn_sourceentitysetnameChanging(value); + this._msdyn_sourceentitysetname = value; + this.Onmsdyn_sourceentitysetnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _msdyn_sourceentitysetname; + partial void Onmsdyn_sourceentitysetnameChanging(string value); + partial void Onmsdyn_sourceentitysetnameChanged(); + /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -445086,27 +445174,27 @@ public static msdyn_aiodlabel Createmsdyn_aiodlabel(global::EMBC.ESS.Utilities.D partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._statecode; + return this.__modifiedonbehalfby_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property msdyn_sourceattributelogicalname in the schema. /// @@ -445152,27 +445240,27 @@ public virtual string msdyn_sourceattributelogicalname partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property msdyn_labelstring in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_labelstring + public virtual global::System.Nullable modifiedon { get { - return this._msdyn_labelstring; + return this._modifiedon; } set { - this.Onmsdyn_labelstringChanging(value); - this._msdyn_labelstring = value; - this.Onmsdyn_labelstringChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_labelstring; - partial void Onmsdyn_labelstringChanging(string value); - partial void Onmsdyn_labelstringChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -445196,6 +445284,28 @@ public virtual string msdyn_labelstring partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -445240,93 +445350,71 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__modifiedonbehalfby_value; + return this.__createdonbehalfby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable statecode { get { - return this._modifiedon; + return this._statecode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property msdyn_sourceentitysetname in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_sourceentitysetname + public virtual global::System.Nullable _ownerid_value { get { - return this._msdyn_sourceentitysetname; + return this.__ownerid_value; } set { - this.Onmsdyn_sourceentitysetnameChanging(value); - this._msdyn_sourceentitysetname = value; - this.Onmsdyn_sourceentitysetnameChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_sourceentitysetname; - partial void Onmsdyn_sourceentitysetnameChanging(string value); - partial void Onmsdyn_sourceentitysetnameChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -445372,49 +445460,27 @@ public virtual string msdyn_sourceentitysetname partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable createdon { get { - return this.__ownerid_value; + return this._createdon; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property msdyn_sourcerecordid in the schema. /// @@ -446442,28 +446508,6 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property _msdyn_aiodtrainingimageid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _msdyn_aiodtrainingimageid_value - { - get - { - return this.__msdyn_aiodtrainingimageid_value; - } - set - { - this.On_msdyn_aiodtrainingimageid_valueChanging(value); - this.__msdyn_aiodtrainingimageid_value = value; - this.On_msdyn_aiodtrainingimageid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_aiodtrainingimageid_value; - partial void On_msdyn_aiodtrainingimageid_valueChanging(global::System.Nullable value); - partial void On_msdyn_aiodtrainingimageid_valueChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -446508,115 +446552,115 @@ public virtual string msdyn_name partial void Onmsdyn_heightChanging(global::System.Nullable value); partial void Onmsdyn_heightChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _msdyn_aiodtrainingimageid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _msdyn_aiodtrainingimageid_value { get { - return this._utcconversiontimezonecode; + return this.__msdyn_aiodtrainingimageid_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_msdyn_aiodtrainingimageid_valueChanging(value); + this.__msdyn_aiodtrainingimageid_value = value; + this.On_msdyn_aiodtrainingimageid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __msdyn_aiodtrainingimageid_value; + partial void On_msdyn_aiodtrainingimageid_valueChanging(global::System.Nullable value); + partial void On_msdyn_aiodtrainingimageid_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__ownerid_value; + return this._utcconversiontimezonecode; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable createdon { get { - return this.__createdonbehalfby_value; + return this._createdon; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._importsequencenumber; + return this._timezoneruleversionnumber; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._timezoneruleversionnumber; + return this.__createdonbehalfby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property msdyn_aiodtrainingboundingboxid in the schema. /// @@ -446640,6 +446684,28 @@ public virtual string msdyn_name partial void Onmsdyn_aiodtrainingboundingboxidChanging(global::System.Nullable value); partial void Onmsdyn_aiodtrainingboundingboxidChanged(); /// + /// There are no comments for Property msdyn_width in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_width + { + get + { + return this._msdyn_width; + } + set + { + this.Onmsdyn_widthChanging(value); + this._msdyn_width = value; + this.Onmsdyn_widthChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_width; + partial void Onmsdyn_widthChanging(global::System.Nullable value); + partial void Onmsdyn_widthChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -446794,71 +446860,71 @@ public virtual string msdyn_name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property msdyn_width in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_width + public virtual global::System.Nullable importsequencenumber { get { - return this._msdyn_width; + return this._importsequencenumber; } set { - this.Onmsdyn_widthChanging(value); - this._msdyn_width = value; - this.Onmsdyn_widthChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_width; - partial void Onmsdyn_widthChanging(global::System.Nullable value); - partial void Onmsdyn_widthChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__modifiedby_value; + return this.__ownerid_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _modifiedby_value { get { - return this._createdon; + return this.__modifiedby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property msdyn_top in the schema. /// @@ -447799,28 +447865,6 @@ public static msdyn_aiodtrainingimage Createmsdyn_aiodtrainingimage(global::EMBC return msdyn_aiodtrainingimage; } /// - /// There are no comments for Property msdyn_sourcetype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_sourcetype - { - get - { - return this._msdyn_sourcetype; - } - set - { - this.Onmsdyn_sourcetypeChanging(value); - this._msdyn_sourcetype = value; - this.Onmsdyn_sourcetypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_sourcetype; - partial void Onmsdyn_sourcetypeChanging(string value); - partial void Onmsdyn_sourcetypeChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -447887,6 +447931,28 @@ public virtual string msdyn_sourcetype partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property msdyn_aiodtrainingimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -447931,28 +447997,6 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property msdyn_lastmodifieddate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_lastmodifieddate - { - get - { - return this._msdyn_lastmodifieddate; - } - set - { - this.Onmsdyn_lastmodifieddateChanging(value); - this._msdyn_lastmodifieddate = value; - this.Onmsdyn_lastmodifieddateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_lastmodifieddate; - partial void Onmsdyn_lastmodifieddateChanging(global::System.Nullable value); - partial void Onmsdyn_lastmodifieddateChanged(); - /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -447997,27 +448041,27 @@ public virtual string msdyn_name partial void On_msdyn_aiodimageid_valueChanging(global::System.Nullable value); partial void On_msdyn_aiodimageid_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable modifiedon { get { - return this._timezoneruleversionnumber; + return this._modifiedon; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _msdyn_aiconfigurationid_value in the schema. /// @@ -448085,27 +448129,27 @@ public virtual string msdyn_name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property msdyn_lastmodifieddate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable msdyn_lastmodifieddate { get { - return this._modifiedon; + return this._msdyn_lastmodifieddate; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.Onmsdyn_lastmodifieddateChanging(value); + this._msdyn_lastmodifieddate = value; + this.Onmsdyn_lastmodifieddateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _msdyn_lastmodifieddate; + partial void Onmsdyn_lastmodifieddateChanging(global::System.Nullable value); + partial void Onmsdyn_lastmodifieddateChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -448129,6 +448173,28 @@ public virtual string msdyn_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property msdyn_sourcetype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_sourcetype + { + get + { + return this._msdyn_sourcetype; + } + set + { + this.Onmsdyn_sourcetypeChanging(value); + this._msdyn_sourcetype = value; + this.Onmsdyn_sourcetypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_sourcetype; + partial void Onmsdyn_sourcetypeChanging(string value); + partial void Onmsdyn_sourcetypeChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -450710,71 +450776,71 @@ public static msdyn_autocapturerule Createmsdyn_autocapturerule(global::EMBC.ESS return msdyn_autocapturerule; } /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _createdby_value { get { - return this._importsequencenumber; + return this.__createdby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable modifiedon { get { - return this.__createdby_value; + return this._modifiedon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property msdyn_autocaptureruleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable msdyn_autocaptureruleid { get { - return this._versionnumber; + return this._msdyn_autocaptureruleid; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.Onmsdyn_autocaptureruleidChanging(value); + this._msdyn_autocaptureruleid = value; + this.Onmsdyn_autocaptureruleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _msdyn_autocaptureruleid; + partial void Onmsdyn_autocaptureruleidChanging(global::System.Nullable value); + partial void Onmsdyn_autocaptureruleidChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -450820,49 +450886,49 @@ public static msdyn_autocapturerule Createmsdyn_autocapturerule(global::EMBC.ESS partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__modifiedby_value; + return this.__owningteam_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string msdyn_name { get { - return this.__owningteam_value; + return this._msdyn_name; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onmsdyn_nameChanging(value); + this._msdyn_name = value; + this.Onmsdyn_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _msdyn_name; + partial void Onmsdyn_nameChanging(string value); + partial void Onmsdyn_nameChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -450886,6 +450952,28 @@ public static msdyn_autocapturerule Createmsdyn_autocapturerule(global::EMBC.ESS partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -450908,6 +450996,28 @@ public static msdyn_autocapturerule Createmsdyn_autocapturerule(global::EMBC.ESS partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -450952,49 +451062,49 @@ public virtual string msdyn_rulename partial void Onmsdyn_rulenameChanging(string value); partial void Onmsdyn_rulenameChanged(); /// - /// There are no comments for Property msdyn_autocaptureruleid in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_autocaptureruleid + public virtual global::System.Nullable _modifiedby_value { get { - return this._msdyn_autocaptureruleid; + return this.__modifiedby_value; } set { - this.Onmsdyn_autocaptureruleidChanging(value); - this._msdyn_autocaptureruleid = value; - this.Onmsdyn_autocaptureruleidChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_autocaptureruleid; - partial void Onmsdyn_autocaptureruleidChanging(global::System.Nullable value); - partial void Onmsdyn_autocaptureruleidChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _ownerid_value { get { - return this._modifiedon; + return this.__ownerid_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -451018,28 +451128,6 @@ public virtual string msdyn_rulename partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property msdyn_ruledatasource in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_ruledatasource - { - get - { - return this._msdyn_ruledatasource; - } - set - { - this.Onmsdyn_ruledatasourceChanging(value); - this._msdyn_ruledatasource = value; - this.Onmsdyn_ruledatasourceChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_ruledatasource; - partial void Onmsdyn_ruledatasourceChanging(string value); - partial void Onmsdyn_ruledatasourceChanged(); - /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -451062,28 +451150,6 @@ public virtual string msdyn_ruledatasource partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -451106,49 +451172,27 @@ public virtual string msdyn_ruledatasource partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property msdyn_rulevalue in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_rulevalue - { - get - { - return this._msdyn_rulevalue; - } - set - { - this.Onmsdyn_rulevalueChanging(value); - this._msdyn_rulevalue = value; - this.Onmsdyn_rulevalueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_rulevalue; - partial void Onmsdyn_rulevalueChanging(string value); - partial void Onmsdyn_rulevalueChanged(); - /// - /// There are no comments for Property msdyn_name in the schema. + /// There are no comments for Property msdyn_ruledatasource in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_name + public virtual string msdyn_ruledatasource { get { - return this._msdyn_name; + return this._msdyn_ruledatasource; } set { - this.Onmsdyn_nameChanging(value); - this._msdyn_name = value; - this.Onmsdyn_nameChanged(); + this.Onmsdyn_ruledatasourceChanging(value); + this._msdyn_ruledatasource = value; + this.Onmsdyn_ruledatasourceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_name; - partial void Onmsdyn_nameChanging(string value); - partial void Onmsdyn_nameChanged(); + private string _msdyn_ruledatasource; + partial void Onmsdyn_ruledatasourceChanging(string value); + partial void Onmsdyn_ruledatasourceChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -451194,6 +451238,28 @@ public virtual string msdyn_name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property msdyn_rulevalue in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_rulevalue + { + get + { + return this._msdyn_rulevalue; + } + set + { + this.Onmsdyn_rulevalueChanging(value); + this._msdyn_rulevalue = value; + this.Onmsdyn_rulevalueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_rulevalue; + partial void Onmsdyn_rulevalueChanging(string value); + partial void Onmsdyn_rulevalueChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -453739,28 +453805,6 @@ public static msdyn_callablecontext Createmsdyn_callablecontext(global::EMBC.ESS partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -453827,137 +453871,93 @@ public static msdyn_callablecontext Createmsdyn_callablecontext(global::EMBC.ESS partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._statecode; + return this.__createdonbehalfby_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property msdyn_EntityLogicalName in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string msdyn_EntityLogicalName { get { - return this._timezoneruleversionnumber; + return this._msdyn_EntityLogicalName; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onmsdyn_EntityLogicalNameChanging(value); + this._msdyn_EntityLogicalName = value; + this.Onmsdyn_EntityLogicalNameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _msdyn_EntityLogicalName; + partial void Onmsdyn_EntityLogicalNameChanging(string value); + partial void Onmsdyn_EntityLogicalNameChanged(); /// - /// There are no comments for Property msdyn_EntityLogicalName in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_EntityLogicalName + public virtual global::System.Nullable _modifiedby_value { get { - return this._msdyn_EntityLogicalName; + return this.__modifiedby_value; } set { - this.Onmsdyn_EntityLogicalNameChanging(value); - this._msdyn_EntityLogicalName = value; - this.Onmsdyn_EntityLogicalNameChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_EntityLogicalName; - partial void Onmsdyn_EntityLogicalNameChanging(string value); - partial void Onmsdyn_EntityLogicalNameChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _owninguser_value { get { - return this._versionnumber; + return this.__owninguser_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -454025,6 +454025,28 @@ public virtual string msdyn_EntityLogicalName partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -454069,6 +454091,50 @@ public virtual string msdyn_EntityLogicalName partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// /// There are no comments for Property msdyn_EntityOTC in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -456006,28 +456072,6 @@ public static msdyn_databaseversion Createmsdyn_databaseversion(global::EMBC.ESS partial void Onmsdyn_databaseversionidChanging(global::System.Nullable value); partial void Onmsdyn_databaseversionidChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -456072,28 +456116,6 @@ public static msdyn_databaseversion Createmsdyn_databaseversion(global::EMBC.ESS partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property msdyn_dbversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_dbversion - { - get - { - return this._msdyn_dbversion; - } - set - { - this.Onmsdyn_dbversionChanging(value); - this._msdyn_dbversion = value; - this.Onmsdyn_dbversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_dbversion; - partial void Onmsdyn_dbversionChanging(global::System.Nullable value); - partial void Onmsdyn_dbversionChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -456160,6 +456182,28 @@ public static msdyn_databaseversion Createmsdyn_databaseversion(global::EMBC.ESS partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property msdyn_dbversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_dbversion + { + get + { + return this._msdyn_dbversion; + } + set + { + this.Onmsdyn_dbversionChanging(value); + this._msdyn_dbversion = value; + this.Onmsdyn_dbversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_dbversion; + partial void Onmsdyn_dbversionChanging(global::System.Nullable value); + partial void Onmsdyn_dbversionChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -456292,6 +456336,28 @@ public virtual string msdyn_solutionname partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -457019,93 +457085,93 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property msdyn_enabled in the schema. + /// There are no comments for Property msdyn_entityrankingruleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_enabled + public virtual global::System.Nullable msdyn_entityrankingruleid { get { - return this._msdyn_enabled; + return this._msdyn_entityrankingruleid; } set { - this.Onmsdyn_enabledChanging(value); - this._msdyn_enabled = value; - this.Onmsdyn_enabledChanged(); + this.Onmsdyn_entityrankingruleidChanging(value); + this._msdyn_entityrankingruleid = value; + this.Onmsdyn_entityrankingruleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_enabled; - partial void Onmsdyn_enabledChanging(global::System.Nullable value); - partial void Onmsdyn_enabledChanged(); + private global::System.Nullable _msdyn_entityrankingruleid; + partial void Onmsdyn_entityrankingruleidChanging(global::System.Nullable value); + partial void Onmsdyn_entityrankingruleidChanged(); /// - /// There are no comments for Property msdyn_objecttypecode in the schema. + /// There are no comments for Property msdyn_oobrule in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_objecttypecode + public virtual global::System.Nullable msdyn_oobrule { get { - return this._msdyn_objecttypecode; + return this._msdyn_oobrule; } set { - this.Onmsdyn_objecttypecodeChanging(value); - this._msdyn_objecttypecode = value; - this.Onmsdyn_objecttypecodeChanged(); + this.Onmsdyn_oobruleChanging(value); + this._msdyn_oobrule = value; + this.Onmsdyn_oobruleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_objecttypecode; - partial void Onmsdyn_objecttypecodeChanging(global::System.Nullable value); - partial void Onmsdyn_objecttypecodeChanged(); + private global::System.Nullable _msdyn_oobrule; + partial void Onmsdyn_oobruleChanging(global::System.Nullable value); + partial void Onmsdyn_oobruleChanged(); /// - /// There are no comments for Property msdyn_overriddenrank in the schema. + /// There are no comments for Property msdyn_enabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_overriddenrank + public virtual global::System.Nullable msdyn_enabled { get { - return this._msdyn_overriddenrank; + return this._msdyn_enabled; } set { - this.Onmsdyn_overriddenrankChanging(value); - this._msdyn_overriddenrank = value; - this.Onmsdyn_overriddenrankChanged(); + this.Onmsdyn_enabledChanging(value); + this._msdyn_enabled = value; + this.Onmsdyn_enabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_overriddenrank; - partial void Onmsdyn_overriddenrankChanging(global::System.Nullable value); - partial void Onmsdyn_overriddenrankChanged(); + private global::System.Nullable _msdyn_enabled; + partial void Onmsdyn_enabledChanging(global::System.Nullable value); + partial void Onmsdyn_enabledChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property msdyn_overriddenrank in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable msdyn_overriddenrank { get { - return this.__modifiedby_value; + return this._msdyn_overriddenrank; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.Onmsdyn_overriddenrankChanging(value); + this._msdyn_overriddenrank = value; + this.Onmsdyn_overriddenrankChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _msdyn_overriddenrank; + partial void Onmsdyn_overriddenrankChanging(global::System.Nullable value); + partial void Onmsdyn_overriddenrankChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -457173,27 +457239,27 @@ public virtual string msdyn_name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property msdyn_oobrule in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_oobrule + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._msdyn_oobrule; + return this.__owningbusinessunit_value; } set { - this.Onmsdyn_oobruleChanging(value); - this._msdyn_oobrule = value; - this.Onmsdyn_oobruleChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_oobrule; - partial void Onmsdyn_oobruleChanging(global::System.Nullable value); - partial void Onmsdyn_oobruleChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -457217,6 +457283,28 @@ public virtual string msdyn_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -457327,71 +457415,49 @@ public virtual string msdyn_fetchxmlrule partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property msdyn_objecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable msdyn_objecttypecode { get { - return this._overriddencreatedon; + return this._msdyn_objecttypecode; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onmsdyn_objecttypecodeChanging(value); + this._msdyn_objecttypecode = value; + this.Onmsdyn_objecttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _msdyn_objecttypecode; + partial void Onmsdyn_objecttypecodeChanging(global::System.Nullable value); + partial void Onmsdyn_objecttypecodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable versionnumber { get { - return this._importsequencenumber; + return this._versionnumber; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -457415,27 +457481,27 @@ public virtual string msdyn_fetchxmlrule partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__owninguser_value; + return this._overriddencreatedon; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -457459,6 +457525,28 @@ public virtual string msdyn_fetchxmlrule partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -457481,27 +457569,27 @@ public virtual string msdyn_fetchxmlrule partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__owningbusinessunit_value; + return this.__modifiedby_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -457547,28 +457635,6 @@ public virtual string msdyn_fetchxmlrule partial void Onmsdyn_rulepriorityChanging(global::System.Nullable value); partial void Onmsdyn_rulepriorityChanged(); /// - /// There are no comments for Property msdyn_entityrankingruleid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_entityrankingruleid - { - get - { - return this._msdyn_entityrankingruleid; - } - set - { - this.Onmsdyn_entityrankingruleidChanging(value); - this._msdyn_entityrankingruleid = value; - this.Onmsdyn_entityrankingruleidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_entityrankingruleid; - partial void Onmsdyn_entityrankingruleidChanging(global::System.Nullable value); - partial void Onmsdyn_entityrankingruleidChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -458313,49 +458379,27 @@ public static msdyn_federatedarticleincident Createmsdyn_federatedarticleinciden partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__createdby_value; + return this._timezoneruleversionnumber; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _msdyn_federatedarticleid_value in the schema. /// @@ -458445,71 +458489,93 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._timezoneruleversionnumber; + return this._utcconversiontimezonecode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _msdyn_incidentid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _msdyn_incidentid_value { get { - return this.__modifiedonbehalfby_value; + return this.__msdyn_incidentid_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_msdyn_incidentid_valueChanging(value); + this.__msdyn_incidentid_value = value; + this.On_msdyn_incidentid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __msdyn_incidentid_value; + partial void On_msdyn_incidentid_valueChanging(global::System.Nullable value); + partial void On_msdyn_incidentid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable overriddencreatedon { get { - return this._utcconversiontimezonecode; + return this._overriddencreatedon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -458533,27 +458599,27 @@ public virtual string msdyn_name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _createdby_value { get { - return this._overriddencreatedon; + return this.__createdby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -458621,49 +458687,49 @@ public virtual string msdyn_searchproviderarticleid partial void Onmsdyn_searchproviderarticleidChanging(string value); partial void Onmsdyn_searchproviderarticleidChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _organizationid_value { get { - return this._createdon; + return this.__organizationid_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _msdyn_incidentid_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_incidentid_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__msdyn_incidentid_value; + return this.__modifiedonbehalfby_value; } set { - this.On_msdyn_incidentid_valueChanging(value); - this.__msdyn_incidentid_value = value; - this.On_msdyn_incidentid_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_incidentid_value; - partial void On_msdyn_incidentid_valueChanging(global::System.Nullable value); - partial void On_msdyn_incidentid_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -458687,27 +458753,27 @@ public virtual string msdyn_searchproviderarticleid partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__organizationid_value; + return this.__createdonbehalfby_value; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -459529,6 +459595,50 @@ public static msdyn_federatedarticle Createmsdyn_federatedarticle(global::EMBC.E return msdyn_federatedarticle; } /// + /// There are no comments for Property _msdyn_searchproviderid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _msdyn_searchproviderid_value + { + get + { + return this.__msdyn_searchproviderid_value; + } + set + { + this.On_msdyn_searchproviderid_valueChanging(value); + this.__msdyn_searchproviderid_value = value; + this.On_msdyn_searchproviderid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __msdyn_searchproviderid_value; + partial void On_msdyn_searchproviderid_valueChanging(global::System.Nullable value); + partial void On_msdyn_searchproviderid_valueChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -459573,27 +459683,27 @@ public static msdyn_federatedarticle Createmsdyn_federatedarticle(global::EMBC.E partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _msdyn_searchproviderid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_searchproviderid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__msdyn_searchproviderid_value; + return this._importsequencenumber; } set { - this.On_msdyn_searchproviderid_valueChanging(value); - this.__msdyn_searchproviderid_value = value; - this.On_msdyn_searchproviderid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_searchproviderid_value; - partial void On_msdyn_searchproviderid_valueChanging(global::System.Nullable value); - partial void On_msdyn_searchproviderid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -459617,28 +459727,6 @@ public static msdyn_federatedarticle Createmsdyn_federatedarticle(global::EMBC.E partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property msdyn_url in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_url - { - get - { - return this._msdyn_url; - } - set - { - this.Onmsdyn_urlChanging(value); - this._msdyn_url = value; - this.Onmsdyn_urlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_url; - partial void Onmsdyn_urlChanging(string value); - partial void Onmsdyn_urlChanged(); - /// /// There are no comments for Property msdyn_searchproviderarticleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -459683,6 +459771,28 @@ public virtual string msdyn_searchproviderarticleid partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property msdyn_url in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_url + { + get + { + return this._msdyn_url; + } + set + { + this.Onmsdyn_urlChanging(value); + this._msdyn_url = value; + this.Onmsdyn_urlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_url; + partial void Onmsdyn_urlChanging(string value); + partial void Onmsdyn_urlChanged(); + /// /// There are no comments for Property msdyn_title in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -459815,28 +459925,6 @@ public virtual string msdyn_title partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -459859,28 +459947,6 @@ public virtual string msdyn_title partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -460852,27 +460918,27 @@ public static msdyn_flowcardtype Createmsdyn_flowcardtype(global::EMBC.ESS.Utili return msdyn_flowcardtype; } /// - /// There are no comments for Property msdyn_samplebody in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_samplebody + public virtual global::System.Nullable _ownerid_value { get { - return this._msdyn_samplebody; + return this.__ownerid_value; } set { - this.Onmsdyn_samplebodyChanging(value); - this._msdyn_samplebody = value; - this.Onmsdyn_samplebodyChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_samplebody; - partial void Onmsdyn_samplebodyChanging(string value); - partial void Onmsdyn_samplebodyChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _msdyn_cardtypeid_value in the schema. /// @@ -460896,6 +460962,28 @@ public virtual string msdyn_samplebody partial void On_msdyn_cardtypeid_valueChanging(global::System.Nullable value); partial void On_msdyn_cardtypeid_valueChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -460940,27 +461028,27 @@ public virtual string msdyn_name partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property msdyn_iscdsflow in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_iscdsflow + public virtual global::System.Nullable _createdby_value { get { - return this._msdyn_iscdsflow; + return this.__createdby_value; } set { - this.Onmsdyn_iscdsflowChanging(value); - this._msdyn_iscdsflow = value; - this.Onmsdyn_iscdsflowChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_iscdsflow; - partial void Onmsdyn_iscdsflowChanging(global::System.Nullable value); - partial void Onmsdyn_iscdsflowChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -461006,28 +461094,6 @@ public virtual string msdyn_description partial void Onmsdyn_descriptionChanging(string value); partial void Onmsdyn_descriptionChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property msdyn_cardname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -461050,27 +461116,27 @@ public virtual string msdyn_cardname partial void Onmsdyn_cardnameChanging(string value); partial void Onmsdyn_cardnameChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property msdyn_actionname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string msdyn_actionname { get { - return this._statecode; + return this._msdyn_actionname; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onmsdyn_actionnameChanging(value); + this._msdyn_actionname = value; + this.Onmsdyn_actionnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _msdyn_actionname; + partial void Onmsdyn_actionnameChanging(string value); + partial void Onmsdyn_actionnameChanged(); /// /// There are no comments for Property msdyn_isdeleted in the schema. /// @@ -461160,6 +461226,28 @@ public virtual string msdyn_actioncommand partial void Onmsdyn_actioncommandChanging(string value); partial void Onmsdyn_actioncommandChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -461248,28 +461336,6 @@ public virtual string msdyn_workflowid partial void Onmsdyn_workflowidChanging(string value); partial void Onmsdyn_workflowidChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -461446,71 +461512,71 @@ public virtual string msdyn_sampletitle partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable statecode { get { - return this._modifiedon; + return this._statecode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property msdyn_actionname in the schema. + /// There are no comments for Property msdyn_samplebody in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_actionname + public virtual string msdyn_samplebody { get { - return this._msdyn_actionname; + return this._msdyn_samplebody; } set { - this.Onmsdyn_actionnameChanging(value); - this._msdyn_actionname = value; - this.Onmsdyn_actionnameChanged(); + this.Onmsdyn_samplebodyChanging(value); + this._msdyn_samplebody = value; + this.Onmsdyn_samplebodyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_actionname; - partial void Onmsdyn_actionnameChanging(string value); - partial void Onmsdyn_actionnameChanged(); + private string _msdyn_samplebody; + partial void Onmsdyn_samplebodyChanging(string value); + partial void Onmsdyn_samplebodyChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property msdyn_iscdsflow in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable msdyn_iscdsflow { get { - return this.__ownerid_value; + return this._msdyn_iscdsflow; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.Onmsdyn_iscdsflowChanging(value); + this._msdyn_iscdsflow = value; + this.Onmsdyn_iscdsflowChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _msdyn_iscdsflow; + partial void Onmsdyn_iscdsflowChanging(global::System.Nullable value); + partial void Onmsdyn_iscdsflowChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -462198,71 +462264,49 @@ public static msdyn_helppage Createmsdyn_helppage(global::EMBC.ESS.Utilities.Dyn partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__modifiedby_value; + return this._importsequencenumber; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable componentstate { get { - return this._overriddencreatedon; + return this._componentstate; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -462286,28 +462330,6 @@ public static msdyn_helppage Createmsdyn_helppage(global::EMBC.ESS.Utilities.Dyn partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -462374,71 +462396,71 @@ public virtual string msdyn_contenttype partial void Onmsdyn_contenttypeChanging(string value); partial void Onmsdyn_contenttypeChanged(); /// - /// There are no comments for Property componentidunique in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentidunique + public virtual global::System.Nullable _organizationid_value { get { - return this._componentidunique; + return this.__organizationid_value; } set { - this.OncomponentiduniqueChanging(value); - this._componentidunique = value; - this.OncomponentiduniqueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentidunique; - partial void OncomponentiduniqueChanging(global::System.Nullable value); - partial void OncomponentiduniqueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable modifiedon { get { - return this.__modifiedonbehalfby_value; + return this._modifiedon; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable overriddencreatedon { get { - return this._solutionid; + return this._overriddencreatedon; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property msdyn_content in the schema. /// @@ -462462,49 +462484,49 @@ public virtual string msdyn_content partial void Onmsdyn_contentChanging(string value); partial void Onmsdyn_contentChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property componentidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable componentidunique { get { - return this._ismanaged; + return this._componentidunique; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.OncomponentiduniqueChanging(value); + this._componentidunique = value; + this.OncomponentiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable _componentidunique; + partial void OncomponentiduniqueChanging(global::System.Nullable value); + partial void OncomponentiduniqueChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable ismanaged { get { - return this._iscustomizable; + return this._ismanaged; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property msdyn_displayname in the schema. /// @@ -462550,27 +462572,27 @@ public virtual string msdyn_displayname partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this._modifiedon; + return this._iscustomizable; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// /// There are no comments for Property msdyn_path in the schema. /// @@ -462594,49 +462616,49 @@ public virtual string msdyn_path partial void Onmsdyn_pathChanging(string value); partial void Onmsdyn_pathChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property msdyn_helppageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable msdyn_helppageid { get { - return this.__organizationid_value; + return this._msdyn_helppageid; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.Onmsdyn_helppageidChanging(value); + this._msdyn_helppageid = value; + this.Onmsdyn_helppageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _msdyn_helppageid; + partial void Onmsdyn_helppageidChanging(global::System.Nullable value); + partial void Onmsdyn_helppageidChanged(); /// - /// There are no comments for Property msdyn_helppageid in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_helppageid + public virtual global::System.Nullable versionnumber { get { - return this._msdyn_helppageid; + return this._versionnumber; } set { - this.Onmsdyn_helppageidChanging(value); - this._msdyn_helppageid = value; - this.Onmsdyn_helppageidChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_helppageid; - partial void Onmsdyn_helppageidChanging(global::System.Nullable value); - partial void Onmsdyn_helppageidChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -462660,71 +462682,115 @@ public virtual string msdyn_path partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable statecode { get { - return this._versionnumber; + return this._statecode; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _modifiedby_value { get { - return this._statecode; + return this.__modifiedby_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable solutionid { get { - return this._importsequencenumber; + return this._solutionid; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property msdyn_locale in the schema. /// @@ -463429,27 +463495,27 @@ public static msdyn_icebreakersconfig Createmsdyn_icebreakersconfig(global::EMBC return msdyn_icebreakersconfig; } /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__owningbusinessunit_value; + return this.__owningteam_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -463495,6 +463561,28 @@ public static msdyn_icebreakersconfig Createmsdyn_icebreakersconfig(global::EMBC partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -463517,6 +463605,50 @@ public static msdyn_icebreakersconfig Createmsdyn_icebreakersconfig(global::EMBC partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property msdyn_icebreakersconfigid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_icebreakersconfigid + { + get + { + return this._msdyn_icebreakersconfigid; + } + set + { + this.Onmsdyn_icebreakersconfigidChanging(value); + this._msdyn_icebreakersconfigid = value; + this.Onmsdyn_icebreakersconfigidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_icebreakersconfigid; + partial void Onmsdyn_icebreakersconfigidChanging(global::System.Nullable value); + partial void Onmsdyn_icebreakersconfigidChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -463539,6 +463671,72 @@ public static msdyn_icebreakersconfig Createmsdyn_icebreakersconfig(global::EMBC partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property msdyn_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_name + { + get + { + return this._msdyn_name; + } + set + { + this.Onmsdyn_nameChanging(value); + this._msdyn_name = value; + this.Onmsdyn_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_name; + partial void Onmsdyn_nameChanging(string value); + partial void Onmsdyn_nameChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -463561,159 +463759,71 @@ public static msdyn_icebreakersconfig Createmsdyn_icebreakersconfig(global::EMBC partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// - /// There are no comments for Property msdyn_isentertainmentcategoryenabled in the schema. + /// There are no comments for Property msdyn_aretermsaccepted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isentertainmentcategoryenabled + public virtual global::System.Nullable msdyn_aretermsaccepted { get { - return this._msdyn_isentertainmentcategoryenabled; + return this._msdyn_aretermsaccepted; } set { - this.Onmsdyn_isentertainmentcategoryenabledChanging(value); - this._msdyn_isentertainmentcategoryenabled = value; - this.Onmsdyn_isentertainmentcategoryenabledChanged(); + this.Onmsdyn_aretermsacceptedChanging(value); + this._msdyn_aretermsaccepted = value; + this.Onmsdyn_aretermsacceptedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isentertainmentcategoryenabled; - partial void Onmsdyn_isentertainmentcategoryenabledChanging(global::System.Nullable value); - partial void Onmsdyn_isentertainmentcategoryenabledChanged(); + private global::System.Nullable _msdyn_aretermsaccepted; + partial void Onmsdyn_aretermsacceptedChanging(global::System.Nullable value); + partial void Onmsdyn_aretermsacceptedChanged(); /// - /// There are no comments for Property msdyn_name in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_name + public virtual global::System.Nullable _modifiedby_value { get { - return this._msdyn_name; + return this.__modifiedby_value; } set { - this.Onmsdyn_nameChanging(value); - this._msdyn_name = value; - this.Onmsdyn_nameChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_name; - partial void Onmsdyn_nameChanging(string value); - partial void Onmsdyn_nameChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _owninguser_value { get { - return this._statecode; + return this.__owninguser_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -463737,28 +463847,6 @@ public virtual string msdyn_name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property msdyn_aretermsaccepted in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_aretermsaccepted - { - get - { - return this._msdyn_aretermsaccepted; - } - set - { - this.Onmsdyn_aretermsacceptedChanging(value); - this._msdyn_aretermsaccepted = value; - this.Onmsdyn_aretermsacceptedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_aretermsaccepted; - partial void Onmsdyn_aretermsacceptedChanging(global::System.Nullable value); - partial void Onmsdyn_aretermsacceptedChanged(); - /// /// There are no comments for Property msdyn_isadminsettingenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -463781,93 +463869,49 @@ public virtual string msdyn_name partial void Onmsdyn_isadminsettingenabledChanging(global::System.Nullable value); partial void Onmsdyn_isadminsettingenabledChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property msdyn_issportscategoryenabled in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_issportscategoryenabled + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._msdyn_issportscategoryenabled; + return this.__owningbusinessunit_value; } set { - this.Onmsdyn_issportscategoryenabledChanging(value); - this._msdyn_issportscategoryenabled = value; - this.Onmsdyn_issportscategoryenabledChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_issportscategoryenabled; - partial void Onmsdyn_issportscategoryenabledChanging(global::System.Nullable value); - partial void Onmsdyn_issportscategoryenabledChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property msdyn_isentertainmentcategoryenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable msdyn_isentertainmentcategoryenabled { get { - return this.__createdonbehalfby_value; + return this._msdyn_isentertainmentcategoryenabled; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onmsdyn_isentertainmentcategoryenabledChanging(value); + this._msdyn_isentertainmentcategoryenabled = value; + this.Onmsdyn_isentertainmentcategoryenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _msdyn_isentertainmentcategoryenabled; + partial void Onmsdyn_isentertainmentcategoryenabledChanging(global::System.Nullable value); + partial void Onmsdyn_isentertainmentcategoryenabledChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -463913,27 +463957,49 @@ public virtual string msdyn_name partial void Onmsdyn_isfamilycategoryenabledChanging(global::System.Nullable value); partial void Onmsdyn_isfamilycategoryenabledChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _ownerid_value { get { - return this._modifiedon; + return this.__ownerid_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// + /// There are no comments for Property msdyn_issportscategoryenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_issportscategoryenabled + { + get + { + return this._msdyn_issportscategoryenabled; + } + set + { + this.Onmsdyn_issportscategoryenabledChanging(value); + this._msdyn_issportscategoryenabled = value; + this.Onmsdyn_issportscategoryenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_issportscategoryenabled; + partial void Onmsdyn_issportscategoryenabledChanging(global::System.Nullable value); + partial void Onmsdyn_issportscategoryenabledChanged(); /// /// There are no comments for Property msdyn_ishealthcategoryenabled in the schema. /// @@ -463957,27 +464023,27 @@ public virtual string msdyn_name partial void Onmsdyn_ishealthcategoryenabledChanging(global::System.Nullable value); partial void Onmsdyn_ishealthcategoryenabledChanged(); /// - /// There are no comments for Property msdyn_icebreakersconfigid in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_icebreakersconfigid + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._msdyn_icebreakersconfigid; + return this._utcconversiontimezonecode; } set { - this.Onmsdyn_icebreakersconfigidChanging(value); - this._msdyn_icebreakersconfigid = value; - this.Onmsdyn_icebreakersconfigidChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_icebreakersconfigid; - partial void Onmsdyn_icebreakersconfigidChanging(global::System.Nullable value); - partial void Onmsdyn_icebreakersconfigidChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -464794,71 +464860,27 @@ public static msdyn_kmfederatedsearchconfig Createmsdyn_kmfederatedsearchconfig( return msdyn_kmfederatedsearchconfig; } /// - /// There are no comments for Property searchtype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable searchtype - { - get - { - return this._searchtype; - } - set - { - this.OnsearchtypeChanging(value); - this._searchtype = value; - this.OnsearchtypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _searchtype; - partial void OnsearchtypeChanging(global::System.Nullable value); - partial void OnsearchtypeChanged(); - /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable createdon { get { - return this.__modifiedby_value; + return this._createdon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -464904,28 +464926,6 @@ public static msdyn_kmfederatedsearchconfig Createmsdyn_kmfederatedsearchconfig( partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -464948,71 +464948,27 @@ public static msdyn_kmfederatedsearchconfig Createmsdyn_kmfederatedsearchconfig( partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property organization in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string organization - { - get - { - return this._organization; - } - set - { - this.OnorganizationChanging(value); - this._organization = value; - this.OnorganizationChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _organization; - partial void OnorganizationChanging(string value); - partial void OnorganizationChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property msdyn_kmfederatedsearchconfigid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable msdyn_kmfederatedsearchconfigid { get { - return this.__ownerid_value; + return this._msdyn_kmfederatedsearchconfigid; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.Onmsdyn_kmfederatedsearchconfigidChanging(value); + this._msdyn_kmfederatedsearchconfigid = value; + this.Onmsdyn_kmfederatedsearchconfigidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _msdyn_kmfederatedsearchconfigid; + partial void Onmsdyn_kmfederatedsearchconfigidChanging(global::System.Nullable value); + partial void Onmsdyn_kmfederatedsearchconfigidChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -465058,6 +465014,28 @@ public virtual string organization partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -465102,27 +465080,27 @@ public virtual string organization partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property msdyn_kmfederatedsearchconfigid in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_kmfederatedsearchconfigid + public virtual global::System.Nullable _ownerid_value { get { - return this._msdyn_kmfederatedsearchconfigid; + return this.__ownerid_value; } set { - this.Onmsdyn_kmfederatedsearchconfigidChanging(value); - this._msdyn_kmfederatedsearchconfigid = value; - this.Onmsdyn_kmfederatedsearchconfigidChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_kmfederatedsearchconfigid; - partial void Onmsdyn_kmfederatedsearchconfigidChanging(global::System.Nullable value); - partial void Onmsdyn_kmfederatedsearchconfigidChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -465212,6 +465190,28 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// + /// There are no comments for Property organization in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string organization + { + get + { + return this._organization; + } + set + { + this.OnorganizationChanging(value); + this._organization = value; + this.OnorganizationChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _organization; + partial void OnorganizationChanging(string value); + partial void OnorganizationChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -465256,27 +465256,49 @@ public virtual string connectionid partial void OnconnectionidChanging(string value); partial void OnconnectionidChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property searchtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable searchtype { get { - return this._statuscode; + return this._searchtype; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnsearchtypeChanging(value); + this._searchtype = value; + this.OnsearchtypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _searchtype; + partial void OnsearchtypeChanging(global::System.Nullable value); + partial void OnsearchtypeChanged(); + /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property sharepointurl in the schema. /// @@ -465300,6 +465322,50 @@ public virtual string sharepointurl partial void OnsharepointurlChanging(string value); partial void OnsharepointurlChanged(); /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property msdyn_description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -466203,49 +466269,49 @@ public static msdyn_knowledgearticleimage Createmsdyn_knowledgearticleimage(glob partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property msdyn_knowledgearticleimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable msdyn_knowledgearticleimageid { get { - return this._timezoneruleversionnumber; + return this._msdyn_knowledgearticleimageid; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onmsdyn_knowledgearticleimageidChanging(value); + this._msdyn_knowledgearticleimageid = value; + this.Onmsdyn_knowledgearticleimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _msdyn_knowledgearticleimageid; + partial void Onmsdyn_knowledgearticleimageidChanging(global::System.Nullable value); + partial void Onmsdyn_knowledgearticleimageidChanged(); /// - /// There are no comments for Property msdyn_filename in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_filename + public virtual global::System.Nullable _ownerid_value { get { - return this._msdyn_filename; + return this.__ownerid_value; } set { - this.Onmsdyn_filenameChanging(value); - this._msdyn_filename = value; - this.Onmsdyn_filenameChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_filename; - partial void Onmsdyn_filenameChanging(string value); - partial void Onmsdyn_filenameChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -466291,115 +466357,93 @@ public virtual string msdyn_filename partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property msdyn_knowledgearticleimageid in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_knowledgearticleimageid + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._msdyn_knowledgearticleimageid; + return this._timezoneruleversionnumber; } set { - this.Onmsdyn_knowledgearticleimageidChanging(value); - this._msdyn_knowledgearticleimageid = value; - this.Onmsdyn_knowledgearticleimageidChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_knowledgearticleimageid; - partial void Onmsdyn_knowledgearticleimageidChanging(global::System.Nullable value); - partial void Onmsdyn_knowledgearticleimageidChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__ownerid_value; + return this.__owningbusinessunit_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__owningbusinessunit_value; + return this._importsequencenumber; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property msdyn_filename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string msdyn_filename { get { - return this.__owningteam_value; + return this._msdyn_filename; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.Onmsdyn_filenameChanging(value); + this._msdyn_filename = value; + this.Onmsdyn_filenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private string _msdyn_filename; + partial void Onmsdyn_filenameChanging(string value); + partial void Onmsdyn_filenameChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -466643,6 +466687,28 @@ public virtual string msdyn_blobfile_name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property _owningteam_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningteam_value + { + get + { + return this.__owningteam_value; + } + set + { + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// /// There are no comments for Property msdyn_blobfile in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -467551,6 +467617,28 @@ public static msdyn_knowledgearticletemplate Createmsdyn_knowledgearticletemplat return msdyn_knowledgearticletemplate; } /// + /// There are no comments for Property msdyn_title in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_title + { + get + { + return this._msdyn_title; + } + set + { + this.Onmsdyn_titleChanging(value); + this._msdyn_title = value; + this.Onmsdyn_titleChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_title; + partial void Onmsdyn_titleChanging(string value); + partial void Onmsdyn_titleChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -467617,28 +467705,6 @@ public virtual string msdyn_content partial void Onmsdyn_contentChanging(string value); partial void Onmsdyn_contentChanged(); /// - /// There are no comments for Property msdyn_title in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_title - { - get - { - return this._msdyn_title; - } - set - { - this.Onmsdyn_titleChanging(value); - this._msdyn_title = value; - this.Onmsdyn_titleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_title; - partial void Onmsdyn_titleChanging(string value); - partial void Onmsdyn_titleChanged(); - /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -469006,49 +469072,71 @@ public static msdyn_knowledgeinteractioninsight Createmsdyn_knowledgeinteraction return msdyn_knowledgeinteractioninsight; } /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _modifiedby_value { get { - return this._createdon; + return this.__modifiedby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property msdyn_timestamp in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_timestamp + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._msdyn_timestamp; + return this._utcconversiontimezonecode; } set { - this.Onmsdyn_timestampChanging(value); - this._msdyn_timestamp = value; - this.Onmsdyn_timestampChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_timestamp; - partial void Onmsdyn_timestampChanging(global::System.Nullable value); - partial void Onmsdyn_timestampChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// + /// There are no comments for Property msdyn_articlerelevance in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_articlerelevance + { + get + { + return this._msdyn_articlerelevance; + } + set + { + this.Onmsdyn_articlerelevanceChanging(value); + this._msdyn_articlerelevance = value; + this.Onmsdyn_articlerelevanceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_articlerelevance; + partial void Onmsdyn_articlerelevanceChanging(global::System.Nullable value); + partial void Onmsdyn_articlerelevanceChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -469072,6 +469160,72 @@ public static msdyn_knowledgeinteractioninsight Createmsdyn_knowledgeinteraction partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// + /// There are no comments for Property msdyn_knowledgeoperationid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_knowledgeoperationid + { + get + { + return this._msdyn_knowledgeoperationid; + } + set + { + this.Onmsdyn_knowledgeoperationidChanging(value); + this._msdyn_knowledgeoperationid = value; + this.Onmsdyn_knowledgeoperationidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_knowledgeoperationid; + partial void Onmsdyn_knowledgeoperationidChanging(string value); + partial void Onmsdyn_knowledgeoperationidChanged(); + /// + /// There are no comments for Property msdyn_timestamp in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_timestamp + { + get + { + return this._msdyn_timestamp; + } + set + { + this.Onmsdyn_timestampChanging(value); + this._msdyn_timestamp = value; + this.Onmsdyn_timestampChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_timestamp; + partial void Onmsdyn_timestampChanging(global::System.Nullable value); + partial void Onmsdyn_timestampChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -469094,115 +469248,115 @@ public static msdyn_knowledgeinteractioninsight Createmsdyn_knowledgeinteraction partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__owninguser_value; + return this.__owningteam_value; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property msdyn_interactiontype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string msdyn_interactiontype { get { - return this._statecode; + return this._msdyn_interactiontype; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onmsdyn_interactiontypeChanging(value); + this._msdyn_interactiontype = value; + this.Onmsdyn_interactiontypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _msdyn_interactiontype; + partial void Onmsdyn_interactiontypeChanging(string value); + partial void Onmsdyn_interactiontypeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable createdon { get { - return this._utcconversiontimezonecode; + return this._createdon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property msdyn_articlerelevance in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_articlerelevance + public virtual global::System.Nullable _owninguser_value { get { - return this._msdyn_articlerelevance; + return this.__owninguser_value; } set { - this.Onmsdyn_articlerelevanceChanging(value); - this._msdyn_articlerelevance = value; - this.Onmsdyn_articlerelevanceChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_articlerelevance; - partial void Onmsdyn_articlerelevanceChanging(global::System.Nullable value); - partial void Onmsdyn_articlerelevanceChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property msdyn_articlerank in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_articlerank + public virtual global::System.Nullable importsequencenumber { get { - return this._msdyn_articlerank; + return this._importsequencenumber; } set { - this.Onmsdyn_articlerankChanging(value); - this._msdyn_articlerank = value; - this.Onmsdyn_articlerankChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_articlerank; - partial void Onmsdyn_articlerankChanging(global::System.Nullable value); - partial void Onmsdyn_articlerankChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -469226,27 +469380,27 @@ public static msdyn_knowledgeinteractioninsight Createmsdyn_knowledgeinteraction partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable statuscode { get { - return this._importsequencenumber; + return this._statuscode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property msdyn_knowledgeoperationtype in the schema. /// @@ -469292,6 +469446,28 @@ public virtual string msdyn_knowledgeoperationtype partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// /// There are no comments for Property msdyn_interactioncontext in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -469314,27 +469490,27 @@ public virtual string msdyn_interactioncontext partial void Onmsdyn_interactioncontextChanging(string value); partial void Onmsdyn_interactioncontextChanged(); /// - /// There are no comments for Property msdyn_knowledgeoperationid in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_knowledgeoperationid + public virtual global::System.Nullable versionnumber { get { - return this._msdyn_knowledgeoperationid; + return this._versionnumber; } set { - this.Onmsdyn_knowledgeoperationidChanging(value); - this._msdyn_knowledgeoperationid = value; - this.Onmsdyn_knowledgeoperationidChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_knowledgeoperationid; - partial void Onmsdyn_knowledgeoperationidChanging(string value); - partial void Onmsdyn_knowledgeoperationidChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property msdyn_knowledgeinteractioninsightid in the schema. /// @@ -469380,28 +469556,6 @@ public virtual string msdyn_knowledgeoperationid partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property msdyn_interactiontype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_interactiontype - { - get - { - return this._msdyn_interactiontype; - } - set - { - this.Onmsdyn_interactiontypeChanging(value); - this._msdyn_interactiontype = value; - this.Onmsdyn_interactiontypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_interactiontype; - partial void Onmsdyn_interactiontypeChanging(string value); - partial void Onmsdyn_interactiontypeChanged(); - /// /// There are no comments for Property msdyn_articlerecordid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -469446,93 +469600,27 @@ public virtual string msdyn_articlerecordid partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property msdyn_articlerank in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable msdyn_articlerank { get { - return this._statuscode; + return this._msdyn_articlerank; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onmsdyn_articlerankChanging(value); + this._msdyn_articlerank = value; + this.Onmsdyn_articlerankChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _msdyn_articlerank; + partial void Onmsdyn_articlerankChanging(global::System.Nullable value); + partial void Onmsdyn_articlerankChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -469556,28 +469644,6 @@ public virtual string msdyn_articlerecordid partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -470482,71 +470548,27 @@ public virtual string msdyn_searchprovidername partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property msdyn_entitytype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_entitytype - { - get - { - return this._msdyn_entitytype; - } - set - { - this.Onmsdyn_entitytypeChanging(value); - this._msdyn_entitytype = value; - this.Onmsdyn_entitytypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_entitytype; - partial void Onmsdyn_entitytypeChanging(string value); - partial void Onmsdyn_entitytypeChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property msdyn_searchterm in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string msdyn_searchterm { get { - return this._overriddencreatedon; + return this._msdyn_searchterm; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onmsdyn_searchtermChanging(value); + this._msdyn_searchterm = value; + this.Onmsdyn_searchtermChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _msdyn_searchterm; + partial void Onmsdyn_searchtermChanging(string value); + partial void Onmsdyn_searchtermChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -470592,27 +470614,27 @@ public virtual string msdyn_searchproviderid partial void Onmsdyn_searchprovideridChanging(string value); partial void Onmsdyn_searchprovideridChanged(); /// - /// There are no comments for Property msdyn_searchterm in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_searchterm + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._msdyn_searchterm; + return this.__modifiedonbehalfby_value; } set { - this.Onmsdyn_searchtermChanging(value); - this._msdyn_searchterm = value; - this.Onmsdyn_searchtermChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_searchterm; - partial void Onmsdyn_searchtermChanging(string value); - partial void Onmsdyn_searchtermChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -470636,71 +470658,71 @@ public virtual string msdyn_searchterm partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property msdyn_initiatedby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string msdyn_initiatedby { get { - return this.__modifiedonbehalfby_value; + return this._msdyn_initiatedby; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onmsdyn_initiatedbyChanging(value); + this._msdyn_initiatedby = value; + this.Onmsdyn_initiatedbyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _msdyn_initiatedby; + partial void Onmsdyn_initiatedbyChanging(string value); + partial void Onmsdyn_initiatedbyChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property msdyn_entitytype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string msdyn_entitytype { get { - return this._importsequencenumber; + return this._msdyn_entitytype; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.Onmsdyn_entitytypeChanging(value); + this._msdyn_entitytype = value; + this.Onmsdyn_entitytypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _msdyn_entitytype; + partial void Onmsdyn_entitytypeChanging(string value); + partial void Onmsdyn_entitytypeChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__ownerid_value; + return this._importsequencenumber; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property msdyn_searchtype in the schema. /// @@ -470724,6 +470746,28 @@ public virtual string msdyn_searchtype partial void Onmsdyn_searchtypeChanging(string value); partial void Onmsdyn_searchtypeChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property msdyn_knowledgesearchinsightid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -470746,49 +470790,49 @@ public virtual string msdyn_searchtype partial void Onmsdyn_knowledgesearchinsightidChanging(global::System.Nullable value); partial void Onmsdyn_knowledgesearchinsightidChanged(); /// - /// There are no comments for Property msdyn_entityrecordid in the schema. + /// There are no comments for Property msdyn_responsetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_entityrecordid + public virtual global::System.Nullable msdyn_responsetime { get { - return this._msdyn_entityrecordid; + return this._msdyn_responsetime; } set { - this.Onmsdyn_entityrecordidChanging(value); - this._msdyn_entityrecordid = value; - this.Onmsdyn_entityrecordidChanged(); + this.Onmsdyn_responsetimeChanging(value); + this._msdyn_responsetime = value; + this.Onmsdyn_responsetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_entityrecordid; - partial void Onmsdyn_entityrecordidChanging(string value); - partial void Onmsdyn_entityrecordidChanged(); + private global::System.Nullable _msdyn_responsetime; + partial void Onmsdyn_responsetimeChanging(global::System.Nullable value); + partial void Onmsdyn_responsetimeChanged(); /// - /// There are no comments for Property msdyn_initiatedby in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_initiatedby + public virtual global::System.Nullable _ownerid_value { get { - return this._msdyn_initiatedby; + return this.__ownerid_value; } set { - this.Onmsdyn_initiatedbyChanging(value); - this._msdyn_initiatedby = value; - this.Onmsdyn_initiatedbyChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_initiatedby; - partial void Onmsdyn_initiatedbyChanging(string value); - partial void Onmsdyn_initiatedbyChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -470834,6 +470878,28 @@ public virtual string msdyn_initiatedby partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -470966,71 +471032,27 @@ public virtual string msdyn_correlationid partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property msdyn_timestamp in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_timestamp - { - get - { - return this._msdyn_timestamp; - } - set - { - this.Onmsdyn_timestampChanging(value); - this._msdyn_timestamp = value; - this.Onmsdyn_timestampChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_timestamp; - partial void Onmsdyn_timestampChanging(global::System.Nullable value); - partial void Onmsdyn_timestampChanged(); - /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property msdyn_responsetime in the schema. + /// There are no comments for Property msdyn_entityrecordid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_responsetime + public virtual string msdyn_entityrecordid { get { - return this._msdyn_responsetime; + return this._msdyn_entityrecordid; } set { - this.Onmsdyn_responsetimeChanging(value); - this._msdyn_responsetime = value; - this.Onmsdyn_responsetimeChanged(); + this.Onmsdyn_entityrecordidChanging(value); + this._msdyn_entityrecordid = value; + this.Onmsdyn_entityrecordidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_responsetime; - partial void Onmsdyn_responsetimeChanging(global::System.Nullable value); - partial void Onmsdyn_responsetimeChanged(); + private string _msdyn_entityrecordid; + partial void Onmsdyn_entityrecordidChanging(string value); + partial void Onmsdyn_entityrecordidChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -471098,6 +471120,50 @@ public virtual string msdyn_applicationname partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property msdyn_timestamp in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_timestamp + { + get + { + return this._msdyn_timestamp; + } + set + { + this.Onmsdyn_timestampChanging(value); + this._msdyn_timestamp = value; + this.Onmsdyn_timestampChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_timestamp; + partial void Onmsdyn_timestampChanging(global::System.Nullable value); + partial void Onmsdyn_timestampChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -471894,6 +471960,28 @@ public static msdyn_msteamssetting Createmsdyn_msteamssetting(global::EMBC.ESS.U partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -471960,50 +472048,6 @@ public static msdyn_msteamssetting Createmsdyn_msteamssetting(global::EMBC.ESS.U partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property msdyn_msteamssettingsname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_msteamssettingsname - { - get - { - return this._msdyn_msteamssettingsname; - } - set - { - this.Onmsdyn_msteamssettingsnameChanging(value); - this._msdyn_msteamssettingsname = value; - this.Onmsdyn_msteamssettingsnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_msteamssettingsname; - partial void Onmsdyn_msteamssettingsnameChanging(string value); - partial void Onmsdyn_msteamssettingsnameChanged(); - /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property msdyn_tabserviceurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -472026,27 +472070,27 @@ public virtual string msdyn_tabserviceurl partial void Onmsdyn_tabserviceurlChanging(string value); partial void Onmsdyn_tabserviceurlChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable statecode { get { - return this.__owninguser_value; + return this._statecode; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -472070,27 +472114,27 @@ public virtual string msdyn_tabserviceurl partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _owninguser_value { get { - return this._timezoneruleversionnumber; + return this.__owninguser_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -472136,27 +472180,27 @@ public virtual string msdyn_tabserviceurl partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable versionnumber { get { - return this._createdon; + return this._versionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -472202,49 +472246,71 @@ public virtual string msdyn_tabserviceurl partial void Onmsdyn_msteamssettingidChanging(global::System.Nullable value); partial void Onmsdyn_msteamssettingidChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable modifiedon { get { - return this._versionnumber; + return this._modifiedon; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._modifiedon; + return this._timezoneruleversionnumber; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property msdyn_msteamssettingsname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_msteamssettingsname + { + get + { + return this._msdyn_msteamssettingsname; + } + set + { + this.Onmsdyn_msteamssettingsnameChanging(value); + this._msdyn_msteamssettingsname = value; + this.Onmsdyn_msteamssettingsnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_msteamssettingsname; + partial void Onmsdyn_msteamssettingsnameChanging(string value); + partial void Onmsdyn_msteamssettingsnameChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -473917,28 +473983,6 @@ public static msdyn_notesanalysisconfig Createmsdyn_notesanalysisconfig(global:: partial void Onmsdyn_isadminsettingenabledChanging(global::System.Nullable value); partial void Onmsdyn_isadminsettingenabledChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -473961,27 +474005,27 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable createdon { get { - return this._utcconversiontimezonecode; + return this._createdon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property msdyn_aretermsaccepted in the schema. /// @@ -474027,6 +474071,50 @@ public virtual string msdyn_name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property msdyn_notesanalysisconfigid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_notesanalysisconfigid + { + get + { + return this._msdyn_notesanalysisconfigid; + } + set + { + this.Onmsdyn_notesanalysisconfigidChanging(value); + this._msdyn_notesanalysisconfigid = value; + this.Onmsdyn_notesanalysisconfigidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_notesanalysisconfigid; + partial void Onmsdyn_notesanalysisconfigidChanging(global::System.Nullable value); + partial void Onmsdyn_notesanalysisconfigidChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -474071,27 +474159,49 @@ public virtual string msdyn_name partial void Onmsdyn_throttlelimitChanging(global::System.Nullable value); partial void Onmsdyn_throttlelimitChanged(); /// - /// There are no comments for Property msdyn_notesanalysisconfigid in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_notesanalysisconfigid + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._msdyn_notesanalysisconfigid; + return this._utcconversiontimezonecode; } set { - this.Onmsdyn_notesanalysisconfigidChanging(value); - this._msdyn_notesanalysisconfigid = value; - this.Onmsdyn_notesanalysisconfigidChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_notesanalysisconfigid; - partial void Onmsdyn_notesanalysisconfigidChanging(global::System.Nullable value); - partial void Onmsdyn_notesanalysisconfigidChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -474181,28 +474291,6 @@ public virtual string msdyn_name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -474291,28 +474379,6 @@ public virtual string msdyn_name partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -474335,49 +474401,49 @@ public virtual string msdyn_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable statuscode { get { - return this.__modifiedby_value; + return this._statuscode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _modifiedby_value { get { - return this._createdon; + return this.__modifiedby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -474839,28 +474905,6 @@ public virtual string msdyn_parameter5value partial void Onmsdyn_parameter5valueChanging(string value); partial void Onmsdyn_parameter5valueChanged(); /// - /// There are no comments for Property msdyn_paginationmode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_paginationmode - { - get - { - return this._msdyn_paginationmode; - } - set - { - this.Onmsdyn_paginationmodeChanging(value); - this._msdyn_paginationmode = value; - this.Onmsdyn_paginationmodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_paginationmode; - partial void Onmsdyn_paginationmodeChanging(global::System.Nullable value); - partial void Onmsdyn_paginationmodeChanged(); - /// /// There are no comments for Property msdyn_description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -474883,49 +474927,49 @@ public virtual string msdyn_description partial void Onmsdyn_descriptionChanging(string value); partial void Onmsdyn_descriptionChanged(); /// - /// There are no comments for Property msdyn_parameter4value in the schema. + /// There are no comments for Property msdyn_parameter3name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter4value + public virtual string msdyn_parameter3name { get { - return this._msdyn_parameter4value; + return this._msdyn_parameter3name; } set { - this.Onmsdyn_parameter4valueChanging(value); - this._msdyn_parameter4value = value; - this.Onmsdyn_parameter4valueChanged(); + this.Onmsdyn_parameter3nameChanging(value); + this._msdyn_parameter3name = value; + this.Onmsdyn_parameter3nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter4value; - partial void Onmsdyn_parameter4valueChanging(string value); - partial void Onmsdyn_parameter4valueChanged(); + private string _msdyn_parameter3name; + partial void Onmsdyn_parameter3nameChanging(string value); + partial void Onmsdyn_parameter3nameChanged(); /// - /// There are no comments for Property msdyn_parameter6name in the schema. + /// There are no comments for Property msdyn_parameter8value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter6name + public virtual string msdyn_parameter8value { get { - return this._msdyn_parameter6name; + return this._msdyn_parameter8value; } set { - this.Onmsdyn_parameter6nameChanging(value); - this._msdyn_parameter6name = value; - this.Onmsdyn_parameter6nameChanged(); + this.Onmsdyn_parameter8valueChanging(value); + this._msdyn_parameter8value = value; + this.Onmsdyn_parameter8valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter6name; - partial void Onmsdyn_parameter6nameChanging(string value); - partial void Onmsdyn_parameter6nameChanged(); + private string _msdyn_parameter8value; + partial void Onmsdyn_parameter8valueChanging(string value); + partial void Onmsdyn_parameter8valueChanged(); /// /// There are no comments for Property msdyn_parameter9name in the schema. /// @@ -474949,6 +474993,28 @@ public virtual string msdyn_parameter9name partial void Onmsdyn_parameter9nameChanging(string value); partial void Onmsdyn_parameter9nameChanged(); /// + /// There are no comments for Property msdyn_isparameter6header in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_isparameter6header + { + get + { + return this._msdyn_isparameter6header; + } + set + { + this.Onmsdyn_isparameter6headerChanging(value); + this._msdyn_isparameter6header = value; + this.Onmsdyn_isparameter6headerChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_isparameter6header; + partial void Onmsdyn_isparameter6headerChanging(global::System.Nullable value); + partial void Onmsdyn_isparameter6headerChanged(); + /// /// There are no comments for Property msdyn_isparameter2header in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -474971,6 +475037,28 @@ public virtual string msdyn_parameter9name partial void Onmsdyn_isparameter2headerChanging(global::System.Nullable value); partial void Onmsdyn_isparameter2headerChanged(); /// + /// There are no comments for Property msdyn_returninlinecount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_returninlinecount + { + get + { + return this._msdyn_returninlinecount; + } + set + { + this.Onmsdyn_returninlinecountChanging(value); + this._msdyn_returninlinecount = value; + this.Onmsdyn_returninlinecountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_returninlinecount; + partial void Onmsdyn_returninlinecountChanging(global::System.Nullable value); + partial void Onmsdyn_returninlinecountChanged(); + /// /// There are no comments for Property msdyn_parameter2name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -474993,71 +475081,71 @@ public virtual string msdyn_parameter2name partial void Onmsdyn_parameter2nameChanging(string value); partial void Onmsdyn_parameter2nameChanged(); /// - /// There are no comments for Property msdyn_parameter9value in the schema. + /// There are no comments for Property msdyn_parameter10name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter9value + public virtual string msdyn_parameter10name { get { - return this._msdyn_parameter9value; + return this._msdyn_parameter10name; } set { - this.Onmsdyn_parameter9valueChanging(value); - this._msdyn_parameter9value = value; - this.Onmsdyn_parameter9valueChanged(); + this.Onmsdyn_parameter10nameChanging(value); + this._msdyn_parameter10name = value; + this.Onmsdyn_parameter10nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter9value; - partial void Onmsdyn_parameter9valueChanging(string value); - partial void Onmsdyn_parameter9valueChanged(); + private string _msdyn_parameter10name; + partial void Onmsdyn_parameter10nameChanging(string value); + partial void Onmsdyn_parameter10nameChanged(); /// - /// There are no comments for Property msdyn_parameter10name in the schema. + /// There are no comments for Property msdyn_parameter1name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter10name + public virtual string msdyn_parameter1name { get { - return this._msdyn_parameter10name; + return this._msdyn_parameter1name; } set { - this.Onmsdyn_parameter10nameChanging(value); - this._msdyn_parameter10name = value; - this.Onmsdyn_parameter10nameChanged(); + this.Onmsdyn_parameter1nameChanging(value); + this._msdyn_parameter1name = value; + this.Onmsdyn_parameter1nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter10name; - partial void Onmsdyn_parameter10nameChanging(string value); - partial void Onmsdyn_parameter10nameChanged(); + private string _msdyn_parameter1name; + partial void Onmsdyn_parameter1nameChanging(string value); + partial void Onmsdyn_parameter1nameChanged(); /// - /// There are no comments for Property msdyn_returninlinecount in the schema. + /// There are no comments for Property msdyn_isparameter7header in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_returninlinecount + public virtual global::System.Nullable msdyn_isparameter7header { get { - return this._msdyn_returninlinecount; + return this._msdyn_isparameter7header; } set { - this.Onmsdyn_returninlinecountChanging(value); - this._msdyn_returninlinecount = value; - this.Onmsdyn_returninlinecountChanged(); + this.Onmsdyn_isparameter7headerChanging(value); + this._msdyn_isparameter7header = value; + this.Onmsdyn_isparameter7headerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_returninlinecount; - partial void Onmsdyn_returninlinecountChanging(global::System.Nullable value); - partial void Onmsdyn_returninlinecountChanged(); + private global::System.Nullable _msdyn_isparameter7header; + partial void Onmsdyn_isparameter7headerChanging(global::System.Nullable value); + partial void Onmsdyn_isparameter7headerChanged(); /// /// There are no comments for Property msdyn_parameter4name in the schema. /// @@ -475081,27 +475169,27 @@ public virtual string msdyn_parameter4name partial void Onmsdyn_parameter4nameChanging(string value); partial void Onmsdyn_parameter4nameChanged(); /// - /// There are no comments for Property msdyn_name in the schema. + /// There are no comments for Property msdyn_isparameter10header in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_name + public virtual global::System.Nullable msdyn_isparameter10header { get { - return this._msdyn_name; + return this._msdyn_isparameter10header; } set { - this.Onmsdyn_nameChanging(value); - this._msdyn_name = value; - this.Onmsdyn_nameChanged(); + this.Onmsdyn_isparameter10headerChanging(value); + this._msdyn_isparameter10header = value; + this.Onmsdyn_isparameter10headerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_name; - partial void Onmsdyn_nameChanging(string value); - partial void Onmsdyn_nameChanged(); + private global::System.Nullable _msdyn_isparameter10header; + partial void Onmsdyn_isparameter10headerChanging(global::System.Nullable value); + partial void Onmsdyn_isparameter10headerChanged(); /// /// There are no comments for Property msdyn_parameter3value in the schema. /// @@ -475147,27 +475235,27 @@ public virtual string msdyn_parameter3value partial void Onmsdyn_isparameter3headerChanging(global::System.Nullable value); partial void Onmsdyn_isparameter3headerChanged(); /// - /// There are no comments for Property msdyn_paginationtype in the schema. + /// There are no comments for Property msdyn_parameter9value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_paginationtype + public virtual string msdyn_parameter9value { get { - return this._msdyn_paginationtype; + return this._msdyn_parameter9value; } set { - this.Onmsdyn_paginationtypeChanging(value); - this._msdyn_paginationtype = value; - this.Onmsdyn_paginationtypeChanged(); + this.Onmsdyn_parameter9valueChanging(value); + this._msdyn_parameter9value = value; + this.Onmsdyn_parameter9valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_paginationtype; - partial void Onmsdyn_paginationtypeChanging(global::System.Nullable value); - partial void Onmsdyn_paginationtypeChanged(); + private string _msdyn_parameter9value; + partial void Onmsdyn_parameter9valueChanging(string value); + partial void Onmsdyn_parameter9valueChanged(); /// /// There are no comments for Property msdyn_odatav4dsid in the schema. /// @@ -475235,49 +475323,49 @@ public virtual string msdyn_parameter7name partial void Onmsdyn_parameter7nameChanging(string value); partial void Onmsdyn_parameter7nameChanged(); /// - /// There are no comments for Property msdyn_timeout in the schema. + /// There are no comments for Property msdyn_parameter6name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_timeout + public virtual string msdyn_parameter6name { get { - return this._msdyn_timeout; + return this._msdyn_parameter6name; } set { - this.Onmsdyn_timeoutChanging(value); - this._msdyn_timeout = value; - this.Onmsdyn_timeoutChanged(); + this.Onmsdyn_parameter6nameChanging(value); + this._msdyn_parameter6name = value; + this.Onmsdyn_parameter6nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_timeout; - partial void Onmsdyn_timeoutChanging(global::System.Nullable value); - partial void Onmsdyn_timeoutChanged(); + private string _msdyn_parameter6name; + partial void Onmsdyn_parameter6nameChanging(string value); + partial void Onmsdyn_parameter6nameChanged(); /// - /// There are no comments for Property msdyn_parameter8value in the schema. + /// There are no comments for Property msdyn_isparameter1header in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter8value + public virtual global::System.Nullable msdyn_isparameter1header { get { - return this._msdyn_parameter8value; + return this._msdyn_isparameter1header; } set { - this.Onmsdyn_parameter8valueChanging(value); - this._msdyn_parameter8value = value; - this.Onmsdyn_parameter8valueChanged(); + this.Onmsdyn_isparameter1headerChanging(value); + this._msdyn_isparameter1header = value; + this.Onmsdyn_isparameter1headerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter8value; - partial void Onmsdyn_parameter8valueChanging(string value); - partial void Onmsdyn_parameter8valueChanged(); + private global::System.Nullable _msdyn_isparameter1header; + partial void Onmsdyn_isparameter1headerChanging(global::System.Nullable value); + partial void Onmsdyn_isparameter1headerChanged(); /// /// There are no comments for Property msdyn_parameter8name in the schema. /// @@ -475301,71 +475389,71 @@ public virtual string msdyn_parameter8name partial void Onmsdyn_parameter8nameChanging(string value); partial void Onmsdyn_parameter8nameChanged(); /// - /// There are no comments for Property msdyn_parameter3name in the schema. + /// There are no comments for Property msdyn_parameter4value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter3name + public virtual string msdyn_parameter4value { get { - return this._msdyn_parameter3name; + return this._msdyn_parameter4value; } set { - this.Onmsdyn_parameter3nameChanging(value); - this._msdyn_parameter3name = value; - this.Onmsdyn_parameter3nameChanged(); + this.Onmsdyn_parameter4valueChanging(value); + this._msdyn_parameter4value = value; + this.Onmsdyn_parameter4valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter3name; - partial void Onmsdyn_parameter3nameChanging(string value); - partial void Onmsdyn_parameter3nameChanged(); + private string _msdyn_parameter4value; + partial void Onmsdyn_parameter4valueChanging(string value); + partial void Onmsdyn_parameter4valueChanged(); /// - /// There are no comments for Property msdyn_isparameter10header in the schema. + /// There are no comments for Property msdyn_parameter5name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isparameter10header + public virtual string msdyn_parameter5name { get { - return this._msdyn_isparameter10header; + return this._msdyn_parameter5name; } set { - this.Onmsdyn_isparameter10headerChanging(value); - this._msdyn_isparameter10header = value; - this.Onmsdyn_isparameter10headerChanged(); + this.Onmsdyn_parameter5nameChanging(value); + this._msdyn_parameter5name = value; + this.Onmsdyn_parameter5nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isparameter10header; - partial void Onmsdyn_isparameter10headerChanging(global::System.Nullable value); - partial void Onmsdyn_isparameter10headerChanged(); + private string _msdyn_parameter5name; + partial void Onmsdyn_parameter5nameChanging(string value); + partial void Onmsdyn_parameter5nameChanged(); /// - /// There are no comments for Property msdyn_isparameter7header in the schema. + /// There are no comments for Property msdyn_isparameter5header in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isparameter7header + public virtual global::System.Nullable msdyn_isparameter5header { get { - return this._msdyn_isparameter7header; + return this._msdyn_isparameter5header; } set { - this.Onmsdyn_isparameter7headerChanging(value); - this._msdyn_isparameter7header = value; - this.Onmsdyn_isparameter7headerChanged(); + this.Onmsdyn_isparameter5headerChanging(value); + this._msdyn_isparameter5header = value; + this.Onmsdyn_isparameter5headerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isparameter7header; - partial void Onmsdyn_isparameter7headerChanging(global::System.Nullable value); - partial void Onmsdyn_isparameter7headerChanged(); + private global::System.Nullable _msdyn_isparameter5header; + partial void Onmsdyn_isparameter5headerChanging(global::System.Nullable value); + partial void Onmsdyn_isparameter5headerChanged(); /// /// There are no comments for Property msdyn_parameter10value in the schema. /// @@ -475389,181 +475477,159 @@ public virtual string msdyn_parameter10value partial void Onmsdyn_parameter10valueChanging(string value); partial void Onmsdyn_parameter10valueChanged(); /// - /// There are no comments for Property msdyn_isparameter5header in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_isparameter5header - { - get - { - return this._msdyn_isparameter5header; - } - set - { - this.Onmsdyn_isparameter5headerChanging(value); - this._msdyn_isparameter5header = value; - this.Onmsdyn_isparameter5headerChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isparameter5header; - partial void Onmsdyn_isparameter5headerChanging(global::System.Nullable value); - partial void Onmsdyn_isparameter5headerChanged(); - /// - /// There are no comments for Property msdyn_isparameter4header in the schema. + /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isparameter4header + public virtual string msdyn_name { get { - return this._msdyn_isparameter4header; + return this._msdyn_name; } set { - this.Onmsdyn_isparameter4headerChanging(value); - this._msdyn_isparameter4header = value; - this.Onmsdyn_isparameter4headerChanged(); + this.Onmsdyn_nameChanging(value); + this._msdyn_name = value; + this.Onmsdyn_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isparameter4header; - partial void Onmsdyn_isparameter4headerChanging(global::System.Nullable value); - partial void Onmsdyn_isparameter4headerChanged(); + private string _msdyn_name; + partial void Onmsdyn_nameChanging(string value); + partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property msdyn_parameter5name in the schema. + /// There are no comments for Property msdyn_parameter1value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter5name + public virtual string msdyn_parameter1value { get { - return this._msdyn_parameter5name; + return this._msdyn_parameter1value; } set { - this.Onmsdyn_parameter5nameChanging(value); - this._msdyn_parameter5name = value; - this.Onmsdyn_parameter5nameChanged(); + this.Onmsdyn_parameter1valueChanging(value); + this._msdyn_parameter1value = value; + this.Onmsdyn_parameter1valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter5name; - partial void Onmsdyn_parameter5nameChanging(string value); - partial void Onmsdyn_parameter5nameChanged(); + private string _msdyn_parameter1value; + partial void Onmsdyn_parameter1valueChanging(string value); + partial void Onmsdyn_parameter1valueChanged(); /// - /// There are no comments for Property msdyn_parameter1name in the schema. + /// There are no comments for Property msdyn_parameter2value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter1name + public virtual string msdyn_parameter2value { get { - return this._msdyn_parameter1name; + return this._msdyn_parameter2value; } set { - this.Onmsdyn_parameter1nameChanging(value); - this._msdyn_parameter1name = value; - this.Onmsdyn_parameter1nameChanged(); + this.Onmsdyn_parameter2valueChanging(value); + this._msdyn_parameter2value = value; + this.Onmsdyn_parameter2valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter1name; - partial void Onmsdyn_parameter1nameChanging(string value); - partial void Onmsdyn_parameter1nameChanged(); + private string _msdyn_parameter2value; + partial void Onmsdyn_parameter2valueChanging(string value); + partial void Onmsdyn_parameter2valueChanged(); /// - /// There are no comments for Property msdyn_parameter2value in the schema. + /// There are no comments for Property msdyn_paginationtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter2value + public virtual global::System.Nullable msdyn_paginationtype { get { - return this._msdyn_parameter2value; + return this._msdyn_paginationtype; } set { - this.Onmsdyn_parameter2valueChanging(value); - this._msdyn_parameter2value = value; - this.Onmsdyn_parameter2valueChanged(); + this.Onmsdyn_paginationtypeChanging(value); + this._msdyn_paginationtype = value; + this.Onmsdyn_paginationtypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter2value; - partial void Onmsdyn_parameter2valueChanging(string value); - partial void Onmsdyn_parameter2valueChanged(); + private global::System.Nullable _msdyn_paginationtype; + partial void Onmsdyn_paginationtypeChanging(global::System.Nullable value); + partial void Onmsdyn_paginationtypeChanged(); /// - /// There are no comments for Property msdyn_isparameter1header in the schema. + /// There are no comments for Property msdyn_timeout in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isparameter1header + public virtual global::System.Nullable msdyn_timeout { get { - return this._msdyn_isparameter1header; + return this._msdyn_timeout; } set { - this.Onmsdyn_isparameter1headerChanging(value); - this._msdyn_isparameter1header = value; - this.Onmsdyn_isparameter1headerChanged(); + this.Onmsdyn_timeoutChanging(value); + this._msdyn_timeout = value; + this.Onmsdyn_timeoutChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isparameter1header; - partial void Onmsdyn_isparameter1headerChanging(global::System.Nullable value); - partial void Onmsdyn_isparameter1headerChanged(); + private global::System.Nullable _msdyn_timeout; + partial void Onmsdyn_timeoutChanging(global::System.Nullable value); + partial void Onmsdyn_timeoutChanged(); /// - /// There are no comments for Property msdyn_isparameter6header in the schema. + /// There are no comments for Property msdyn_isparameter4header in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isparameter6header + public virtual global::System.Nullable msdyn_isparameter4header { get { - return this._msdyn_isparameter6header; + return this._msdyn_isparameter4header; } set { - this.Onmsdyn_isparameter6headerChanging(value); - this._msdyn_isparameter6header = value; - this.Onmsdyn_isparameter6headerChanged(); + this.Onmsdyn_isparameter4headerChanging(value); + this._msdyn_isparameter4header = value; + this.Onmsdyn_isparameter4headerChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isparameter6header; - partial void Onmsdyn_isparameter6headerChanging(global::System.Nullable value); - partial void Onmsdyn_isparameter6headerChanged(); + private global::System.Nullable _msdyn_isparameter4header; + partial void Onmsdyn_isparameter4headerChanging(global::System.Nullable value); + partial void Onmsdyn_isparameter4headerChanged(); /// - /// There are no comments for Property msdyn_parameter1value in the schema. + /// There are no comments for Property msdyn_paginationmode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parameter1value + public virtual global::System.Nullable msdyn_paginationmode { get { - return this._msdyn_parameter1value; + return this._msdyn_paginationmode; } set { - this.Onmsdyn_parameter1valueChanging(value); - this._msdyn_parameter1value = value; - this.Onmsdyn_parameter1valueChanged(); + this.Onmsdyn_paginationmodeChanging(value); + this._msdyn_paginationmode = value; + this.Onmsdyn_paginationmodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parameter1value; - partial void Onmsdyn_parameter1valueChanging(string value); - partial void Onmsdyn_parameter1valueChanged(); + private global::System.Nullable _msdyn_paginationmode; + partial void Onmsdyn_paginationmodeChanging(global::System.Nullable value); + partial void Onmsdyn_paginationmodeChanged(); } /// /// There are no comments for msdyn_playbookactivitySingle in the schema. @@ -476069,6 +476135,28 @@ public static msdyn_playbookactivity Createmsdyn_playbookactivity(global::EMBC.E return msdyn_playbookactivity; } /// + /// There are no comments for Property msdyn_playbookactivity_json in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_playbookactivity_json + { + get + { + return this._msdyn_playbookactivity_json; + } + set + { + this.Onmsdyn_playbookactivity_jsonChanging(value); + this._msdyn_playbookactivity_json = value; + this.Onmsdyn_playbookactivity_jsonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_playbookactivity_json; + partial void Onmsdyn_playbookactivity_jsonChanging(string value); + partial void Onmsdyn_playbookactivity_jsonChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -476113,27 +476201,27 @@ public static msdyn_playbookactivity Createmsdyn_playbookactivity(global::EMBC.E partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property msdyn_activityType in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_activityType + public virtual global::System.Nullable _ownerid_value { get { - return this._msdyn_activityType; + return this.__ownerid_value; } set { - this.Onmsdyn_activityTypeChanging(value); - this._msdyn_activityType = value; - this.Onmsdyn_activityTypeChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_activityType; - partial void Onmsdyn_activityTypeChanging(global::System.Nullable value); - partial void Onmsdyn_activityTypeChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -476157,27 +476245,27 @@ public static msdyn_playbookactivity Createmsdyn_playbookactivity(global::EMBC.E partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__createdonbehalfby_value; + return this._utcconversiontimezonecode; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -476245,6 +476333,28 @@ public virtual string msdyn_activityLogicalName partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -476289,27 +476399,27 @@ public virtual string msdyn_activityLogicalName partial void On_msdyn_playbooktemplateid_valueChanging(global::System.Nullable value); partial void On_msdyn_playbooktemplateid_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property msdyn_subject in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string msdyn_subject { get { - return this._overriddencreatedon; + return this._msdyn_subject; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onmsdyn_subjectChanging(value); + this._msdyn_subject = value; + this.Onmsdyn_subjectChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _msdyn_subject; + partial void Onmsdyn_subjectChanging(string value); + partial void Onmsdyn_subjectChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -476355,71 +476465,71 @@ public virtual string msdyn_activityLogicalName partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property msdyn_subject in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_subject + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._msdyn_subject; + return this.__owningbusinessunit_value; } set { - this.Onmsdyn_subjectChanging(value); - this._msdyn_subject = value; - this.Onmsdyn_subjectChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_subject; - partial void Onmsdyn_subjectChanging(string value); - partial void Onmsdyn_subjectChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property msdyn_activityType in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable msdyn_activityType { get { - return this.__ownerid_value; + return this._msdyn_activityType; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.Onmsdyn_activityTypeChanging(value); + this._msdyn_activityType = value; + this.Onmsdyn_activityTypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _msdyn_activityType; + partial void Onmsdyn_activityTypeChanging(global::System.Nullable value); + partial void Onmsdyn_activityTypeChanged(); /// - /// There are no comments for Property msdyn_playbookactivity_json in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_playbookactivity_json + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._msdyn_playbookactivity_json; + return this.__createdonbehalfby_value; } set { - this.Onmsdyn_playbookactivity_jsonChanging(value); - this._msdyn_playbookactivity_json = value; - this.Onmsdyn_playbookactivity_jsonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_playbookactivity_json; - partial void Onmsdyn_playbookactivity_jsonChanging(string value); - partial void Onmsdyn_playbookactivity_jsonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -476443,28 +476553,6 @@ public virtual string msdyn_playbookactivity_json partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -476487,28 +476575,6 @@ public virtual string msdyn_playbookactivity_json partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -477486,71 +477552,49 @@ public static msdyn_playbookactivityattribute Createmsdyn_playbookactivityattrib partial void Onmsdyn_attributeTypeChanging(global::System.Nullable value); partial void Onmsdyn_attributeTypeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property msdyn_playbookactivityattributeid in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_playbookactivityattributeid + public virtual global::System.Nullable _owningteam_value { get { - return this._msdyn_playbookactivityattributeid; + return this.__owningteam_value; } set { - this.Onmsdyn_playbookactivityattributeidChanging(value); - this._msdyn_playbookactivityattributeid = value; - this.Onmsdyn_playbookactivityattributeidChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_playbookactivityattributeid; - partial void Onmsdyn_playbookactivityattributeidChanging(global::System.Nullable value); - partial void Onmsdyn_playbookactivityattributeidChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__modifiedonbehalfby_value; + return this._utcconversiontimezonecode; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -477574,28 +477618,6 @@ public static msdyn_playbookactivityattribute Createmsdyn_playbookactivityattrib partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _msdyn_playbookactivityid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _msdyn_playbookactivityid_value - { - get - { - return this.__msdyn_playbookactivityid_value; - } - set - { - this.On_msdyn_playbookactivityid_valueChanging(value); - this.__msdyn_playbookactivityid_value = value; - this.On_msdyn_playbookactivityid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_playbookactivityid_value; - partial void On_msdyn_playbookactivityid_valueChanging(global::System.Nullable value); - partial void On_msdyn_playbookactivityid_valueChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -477640,27 +477662,49 @@ public static msdyn_playbookactivityattribute Createmsdyn_playbookactivityattrib partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property msdyn_attributeValue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string msdyn_attributeValue { get { - return this._modifiedon; + return this._msdyn_attributeValue; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.Onmsdyn_attributeValueChanging(value); + this._msdyn_attributeValue = value; + this.Onmsdyn_attributeValueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private string _msdyn_attributeValue; + partial void Onmsdyn_attributeValueChanging(string value); + partial void Onmsdyn_attributeValueChanged(); + /// + /// There are no comments for Property _msdyn_playbookactivityid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _msdyn_playbookactivityid_value + { + get + { + return this.__msdyn_playbookactivityid_value; + } + set + { + this.On_msdyn_playbookactivityid_valueChanging(value); + this.__msdyn_playbookactivityid_value = value; + this.On_msdyn_playbookactivityid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __msdyn_playbookactivityid_value; + partial void On_msdyn_playbookactivityid_valueChanging(global::System.Nullable value); + partial void On_msdyn_playbookactivityid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -477684,6 +477728,28 @@ public static msdyn_playbookactivityattribute Createmsdyn_playbookactivityattrib partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -477794,27 +477860,49 @@ public static msdyn_playbookactivityattribute Createmsdyn_playbookactivityattrib partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__owningteam_value; + return this.__owningbusinessunit_value; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property msdyn_playbookactivityattributeid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_playbookactivityattributeid + { + get + { + return this._msdyn_playbookactivityattributeid; + } + set + { + this.Onmsdyn_playbookactivityattributeidChanging(value); + this._msdyn_playbookactivityattributeid = value; + this.Onmsdyn_playbookactivityattributeidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_playbookactivityattributeid; + partial void Onmsdyn_playbookactivityattributeidChanging(global::System.Nullable value); + partial void Onmsdyn_playbookactivityattributeidChanged(); /// /// There are no comments for Property msdyn_attributeLogicalName in the schema. /// @@ -477860,28 +477948,6 @@ public virtual string msdyn_attributeLogicalName partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property msdyn_attributeValue in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_attributeValue - { - get - { - return this._msdyn_attributeValue; - } - set - { - this.Onmsdyn_attributeValueChanging(value); - this._msdyn_attributeValue = value; - this.Onmsdyn_attributeValueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_attributeValue; - partial void Onmsdyn_attributeValueChanging(string value); - partial void Onmsdyn_attributeValueChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -477904,27 +477970,27 @@ public virtual string msdyn_attributeValue partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable modifiedon { get { - return this.__owningbusinessunit_value; + return this._modifiedon; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -478851,27 +478917,27 @@ public virtual string msdyn_description partial void Onmsdyn_descriptionChanging(string value); partial void Onmsdyn_descriptionChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__modifiedby_value; + return this._overriddencreatedon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -478917,6 +478983,28 @@ public virtual string msdyn_description partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -479181,28 +479269,6 @@ public virtual string msdyn_name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -479225,27 +479291,27 @@ public virtual string msdyn_name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _modifiedby_value { get { - return this._utcconversiontimezonecode; + return this.__modifiedby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -480611,49 +480677,71 @@ public static msdyn_playbookinstance Createmsdyn_playbookinstance(global::EMBC.E partial void Onmsdyn_estimatedcloseChanging(global::System.Nullable value); partial void Onmsdyn_estimatedcloseChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._createdon; + return this.__createdonbehalfby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable statecode { get { - return this.__owninguser_value; + return this._statecode; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property msdyn_activitiesclosed in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_activitiesclosed + { + get + { + return this._msdyn_activitiesclosed; + } + set + { + this.Onmsdyn_activitiesclosedChanging(value); + this._msdyn_activitiesclosed = value; + this.Onmsdyn_activitiesclosedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_activitiesclosed; + partial void Onmsdyn_activitiesclosedChanging(global::System.Nullable value); + partial void Onmsdyn_activitiesclosedChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -480765,28 +480853,6 @@ public virtual string msdyn_name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property _msdyn_playbooktemplateid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -480831,28 +480897,6 @@ public virtual string msdyn_name partial void Onmsdyn_evaluateactivityclosureChanging(global::System.Nullable value); partial void Onmsdyn_evaluateactivityclosureChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -480875,49 +480919,49 @@ public virtual string msdyn_name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property msdyn_activitiesassociated in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_activitiesassociated + public virtual global::System.Nullable overriddencreatedon { get { - return this._msdyn_activitiesassociated; + return this._overriddencreatedon; } set { - this.Onmsdyn_activitiesassociatedChanging(value); - this._msdyn_activitiesassociated = value; - this.Onmsdyn_activitiesassociatedChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_activitiesassociated; - partial void Onmsdyn_activitiesassociatedChanging(global::System.Nullable value); - partial void Onmsdyn_activitiesassociatedChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _createdby_value { get { - return this._overriddencreatedon; + return this.__createdby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -480941,27 +480985,27 @@ public virtual string msdyn_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__createdonbehalfby_value; + return this.__modifiedonbehalfby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -481051,49 +481095,49 @@ public virtual string msdyn_name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _owninguser_value { get { - return this._timezoneruleversionnumber; + return this.__owninguser_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__createdby_value; + return this._timezoneruleversionnumber; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property msdyn_playbookinstanceid in the schema. /// @@ -481161,27 +481205,49 @@ public virtual string msdyn_name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property msdyn_activitiesclosed in the schema. + /// There are no comments for Property msdyn_activitiesassociated in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_activitiesclosed + public virtual global::System.Nullable msdyn_activitiesassociated { get { - return this._msdyn_activitiesclosed; + return this._msdyn_activitiesassociated; } set { - this.Onmsdyn_activitiesclosedChanging(value); - this._msdyn_activitiesclosed = value; - this.Onmsdyn_activitiesclosedChanged(); + this.Onmsdyn_activitiesassociatedChanging(value); + this._msdyn_activitiesassociated = value; + this.Onmsdyn_activitiesassociatedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_activitiesclosed; - partial void Onmsdyn_activitiesclosedChanging(global::System.Nullable value); - partial void Onmsdyn_activitiesclosedChanged(); + private global::System.Nullable _msdyn_activitiesassociated; + partial void Onmsdyn_activitiesassociatedChanging(global::System.Nullable value); + partial void Onmsdyn_activitiesassociatedChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -482560,28 +482626,6 @@ public static msdyn_playbooktemplate Createmsdyn_playbooktemplate(global::EMBC.E return msdyn_playbooktemplate; } /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -482604,27 +482648,27 @@ public virtual string msdyn_name partial void Onmsdyn_nameChanging(string value); partial void Onmsdyn_nameChanged(); /// - /// There are no comments for Property msdyn_playbooktemplateid in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_playbooktemplateid + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._msdyn_playbooktemplateid; + return this._utcconversiontimezonecode; } set { - this.Onmsdyn_playbooktemplateidChanging(value); - this._msdyn_playbooktemplateid = value; - this.Onmsdyn_playbooktemplateidChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_playbooktemplateid; - partial void Onmsdyn_playbooktemplateidChanging(global::System.Nullable value); - partial void Onmsdyn_playbooktemplateidChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _msdyn_categoryid_value in the schema. /// @@ -482648,27 +482692,27 @@ public virtual string msdyn_name partial void On_msdyn_categoryid_valueChanging(global::System.Nullable value); partial void On_msdyn_categoryid_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property msdyn_playbooktemplateid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable msdyn_playbooktemplateid { get { - return this._importsequencenumber; + return this._msdyn_playbooktemplateid; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.Onmsdyn_playbooktemplateidChanging(value); + this._msdyn_playbooktemplateid = value; + this.Onmsdyn_playbooktemplateidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _msdyn_playbooktemplateid; + partial void Onmsdyn_playbooktemplateidChanging(global::System.Nullable value); + partial void Onmsdyn_playbooktemplateidChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -482736,49 +482780,27 @@ public virtual string msdyn_fullentitylist partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// - /// There are no comments for Property msdyn_relatedentitylist in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_relatedentitylist + public virtual global::System.Nullable modifiedon { get { - return this._msdyn_relatedentitylist; + return this._modifiedon; } set { - this.Onmsdyn_relatedentitylistChanging(value); - this._msdyn_relatedentitylist = value; - this.Onmsdyn_relatedentitylistChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_relatedentitylist; - partial void Onmsdyn_relatedentitylistChanging(string value); - partial void Onmsdyn_relatedentitylistChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -482802,115 +482824,115 @@ public virtual string msdyn_relatedentitylist partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__modifiedonbehalfby_value; + return this.__ownerid_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property msdyn_estimatedduration in the schema. + /// There are no comments for Property msdyn_description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_estimatedduration + public virtual string msdyn_description { get { - return this._msdyn_estimatedduration; + return this._msdyn_description; } set { - this.Onmsdyn_estimateddurationChanging(value); - this._msdyn_estimatedduration = value; - this.Onmsdyn_estimateddurationChanged(); + this.Onmsdyn_descriptionChanging(value); + this._msdyn_description = value; + this.Onmsdyn_descriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_estimatedduration; - partial void Onmsdyn_estimateddurationChanging(global::System.Nullable value); - partial void Onmsdyn_estimateddurationChanged(); + private string _msdyn_description; + partial void Onmsdyn_descriptionChanging(string value); + partial void Onmsdyn_descriptionChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property msdyn_estimatedduration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable msdyn_estimatedduration { get { - return this._utcconversiontimezonecode; + return this._msdyn_estimatedduration; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onmsdyn_estimateddurationChanging(value); + this._msdyn_estimatedduration = value; + this.Onmsdyn_estimateddurationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _msdyn_estimatedduration; + partial void Onmsdyn_estimateddurationChanging(global::System.Nullable value); + partial void Onmsdyn_estimateddurationChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _owningteam_value { get { - return this._createdon; + return this.__owningteam_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property msdyn_description in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_description + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._msdyn_description; + return this.__createdonbehalfby_value; } set { - this.Onmsdyn_descriptionChanging(value); - this._msdyn_description = value; - this.Onmsdyn_descriptionChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_description; - partial void Onmsdyn_descriptionChanging(string value); - partial void Onmsdyn_descriptionChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -482934,49 +482956,27 @@ public virtual string msdyn_description partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property msdyn_relatedentitylist in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual string msdyn_relatedentitylist { get { - return this.__ownerid_value; + return this._msdyn_relatedentitylist; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.Onmsdyn_relatedentitylistChanging(value); + this._msdyn_relatedentitylist = value; + this.Onmsdyn_relatedentitylistChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private string _msdyn_relatedentitylist; + partial void Onmsdyn_relatedentitylistChanging(string value); + partial void Onmsdyn_relatedentitylistChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -483022,49 +483022,71 @@ public virtual string msdyn_description partial void Onmsdyn_trackprogressChanging(global::System.Nullable value); partial void Onmsdyn_trackprogressChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__createdby_value; + return this._overriddencreatedon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__createdonbehalfby_value; + return this.__modifiedonbehalfby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -483088,27 +483110,71 @@ public virtual string msdyn_description partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _createdby_value { get { - return this._overriddencreatedon; + return this.__createdby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -484331,28 +484397,6 @@ public static msdyn_postalbum Createmsdyn_postalbum(global::EMBC.ESS.Utilities.D partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -484463,28 +484507,6 @@ public static msdyn_postalbum Createmsdyn_postalbum(global::EMBC.ESS.Utilities.D partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -484595,6 +484617,28 @@ public virtual string msdyn_name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -484617,6 +484661,28 @@ public virtual string msdyn_name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -485961,71 +486027,71 @@ public virtual string msdyn_entityname partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property msdyn_status in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_status + public virtual global::System.Nullable createdon { get { - return this._msdyn_status; + return this._createdon; } set { - this.Onmsdyn_statusChanging(value); - this._msdyn_status = value; - this.Onmsdyn_statusChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_status; - partial void Onmsdyn_statusChanging(string value); - partial void Onmsdyn_statusChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable versionnumber { get { - return this.__modifiedby_value; + return this._versionnumber; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _modifiedby_value { get { - return this._versionnumber; + return this.__modifiedby_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -486203,27 +486269,27 @@ public virtual string msdyn_followingviewid partial void Onmsdyn_otcChanging(global::System.Nullable value); partial void Onmsdyn_otcChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property msdyn_status in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual string msdyn_status { get { - return this._createdon; + return this._msdyn_status; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.Onmsdyn_statusChanging(value); + this._msdyn_status = value; + this.Onmsdyn_statusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private string _msdyn_status; + partial void Onmsdyn_statusChanging(string value); + partial void Onmsdyn_statusChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -486852,28 +486918,6 @@ public static msdyn_postruleconfig Createmsdyn_postruleconfig(global::EMBC.ESS.U return msdyn_postruleconfig; } /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -486918,28 +486962,6 @@ public virtual string msdyn_name partial void Onmsdyn_posttoyammerChanging(global::System.Nullable value); partial void Onmsdyn_posttoyammerChanged(); /// - /// There are no comments for Property msdyn_postruleconfigid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_postruleconfigid - { - get - { - return this._msdyn_postruleconfigid; - } - set - { - this.Onmsdyn_postruleconfigidChanging(value); - this._msdyn_postruleconfigid = value; - this.Onmsdyn_postruleconfigidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_postruleconfigid; - partial void Onmsdyn_postruleconfigidChanging(global::System.Nullable value); - partial void Onmsdyn_postruleconfigidChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -487006,6 +487028,28 @@ public virtual string msdyn_ruleid partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property _msdyn_postconfigid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -487028,6 +487072,28 @@ public virtual string msdyn_ruleid partial void On_msdyn_postconfigid_valueChanging(global::System.Nullable value); partial void On_msdyn_postconfigid_valueChanged(); /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -487072,28 +487138,6 @@ public virtual string msdyn_rulesource partial void Onmsdyn_rulesourceChanging(string value); partial void Onmsdyn_rulesourceChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property msdyn_formatid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -487138,27 +487182,49 @@ public virtual string msdyn_formatid partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _createdby_value { get { - return this._timezoneruleversionnumber; + return this.__createdby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property msdyn_stepid in the schema. /// @@ -487204,71 +487270,71 @@ public virtual string msdyn_stepid partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property msdyn_postruleconfigid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable msdyn_postruleconfigid { get { - return this.__createdby_value; + return this._msdyn_postruleconfigid; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Onmsdyn_postruleconfigidChanging(value); + this._msdyn_postruleconfigid = value; + this.Onmsdyn_postruleconfigidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _msdyn_postruleconfigid; + partial void Onmsdyn_postruleconfigidChanging(global::System.Nullable value); + partial void Onmsdyn_postruleconfigidChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__modifiedonbehalfby_value; + return this.__organizationid_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._createdon; + return this._timezoneruleversionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -488084,6 +488150,28 @@ public static msdyn_relationshipinsightsunifiedconfig Createmsdyn_relationshipin partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// + /// There are no comments for Property new_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string new_name + { + get + { + return this._new_name; + } + set + { + this.Onnew_nameChanging(value); + this._new_name = value; + this.Onnew_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _new_name; + partial void Onnew_nameChanging(string value); + partial void Onnew_nameChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -488150,49 +488238,49 @@ public static msdyn_relationshipinsightsunifiedconfig Createmsdyn_relationshipin partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property new_name in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string new_name + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._new_name; + return this._timezoneruleversionnumber; } set { - this.Onnew_nameChanging(value); - this._new_name = value; - this.Onnew_nameChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _new_name; - partial void Onnew_nameChanging(string value); - partial void Onnew_nameChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable importsequencenumber { get { - return this._timezoneruleversionnumber; + return this._importsequencenumber; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -488326,27 +488414,27 @@ public virtual string new_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._importsequencenumber; + return this._utcconversiontimezonecode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property msdyn_usenewconfigexperience in the schema. /// @@ -488414,28 +488502,6 @@ public virtual string new_name partial void Onmsdyn_relationshipinsightsunifiedconfigidChanging(global::System.Nullable value); partial void Onmsdyn_relationshipinsightsunifiedconfigidChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -489517,27 +489583,27 @@ public virtual string msdyn_fileblob_name partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property msdyn_parententity_fieldname in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_parententity_fieldname + public virtual global::System.Nullable overriddencreatedon { get { - return this._msdyn_parententity_fieldname; + return this._overriddencreatedon; } set { - this.Onmsdyn_parententity_fieldnameChanging(value); - this._msdyn_parententity_fieldname = value; - this.Onmsdyn_parententity_fieldnameChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_parententity_fieldname; - partial void Onmsdyn_parententity_fieldnameChanging(string value); - partial void Onmsdyn_parententity_fieldnameChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property msdyn_imageblob in the schema. /// @@ -489605,6 +489671,28 @@ public virtual string msdyn_parentid partial void Onmsdyn_richtextfileidChanging(global::System.Nullable value); partial void Onmsdyn_richtextfileidChanged(); /// + /// There are no comments for Property msdyn_parententity_fieldname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_parententity_fieldname + { + get + { + return this._msdyn_parententity_fieldname; + } + set + { + this.Onmsdyn_parententity_fieldnameChanging(value); + this._msdyn_parententity_fieldname = value; + this.Onmsdyn_parententity_fieldnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_parententity_fieldname; + partial void Onmsdyn_parententity_fieldnameChanging(string value); + partial void Onmsdyn_parententity_fieldnameChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -489847,28 +489935,6 @@ public virtual string msdyn_parententityname partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -490685,27 +490751,27 @@ public static msdyn_salesinsightssettings Createmsdyn_salesinsightssettings(glob partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property msdyn_salesinsightssettingsid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable msdyn_salesinsightssettingsid { get { - return this.__createdby_value; + return this._msdyn_salesinsightssettingsid; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Onmsdyn_salesinsightssettingsidChanging(value); + this._msdyn_salesinsightssettingsid = value; + this.Onmsdyn_salesinsightssettingsidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _msdyn_salesinsightssettingsid; + partial void Onmsdyn_salesinsightssettingsidChanging(global::System.Nullable value); + partial void Onmsdyn_salesinsightssettingsidChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -490751,27 +490817,49 @@ public static msdyn_salesinsightssettings Createmsdyn_salesinsightssettings(glob partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable versionnumber { get { - return this.__ownerid_value; + return this._versionnumber; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property msdyn_ispreviewenabled in the schema. /// @@ -490795,71 +490883,71 @@ public static msdyn_salesinsightssettings Createmsdyn_salesinsightssettings(glob partial void Onmsdyn_ispreviewenabledChanging(global::System.Nullable value); partial void Onmsdyn_ispreviewenabledChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable createdon { get { - return this.__createdonbehalfby_value; + return this._createdon; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _ownerid_value { get { - return this._overriddencreatedon; + return this.__ownerid_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property msdyn_salesinsightssettingsid in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_salesinsightssettingsid + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._msdyn_salesinsightssettingsid; + return this.__createdonbehalfby_value; } set { - this.Onmsdyn_salesinsightssettingsidChanging(value); - this._msdyn_salesinsightssettingsid = value; - this.Onmsdyn_salesinsightssettingsidChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_salesinsightssettingsid; - partial void Onmsdyn_salesinsightssettingsidChanging(global::System.Nullable value); - partial void Onmsdyn_salesinsightssettingsidChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -490949,49 +491037,49 @@ public static msdyn_salesinsightssettings Createmsdyn_salesinsightssettings(glob partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property msdyn_islicensepurchased in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_islicensepurchased + public virtual global::System.Nullable _createdby_value { get { - return this._msdyn_islicensepurchased; + return this.__createdby_value; } set { - this.Onmsdyn_islicensepurchasedChanging(value); - this._msdyn_islicensepurchased = value; - this.Onmsdyn_islicensepurchasedChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_islicensepurchased; - partial void Onmsdyn_islicensepurchasedChanging(global::System.Nullable value); - partial void Onmsdyn_islicensepurchasedChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property msdyn_islicensepurchased in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable msdyn_islicensepurchased { get { - return this._versionnumber; + return this._msdyn_islicensepurchased; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.Onmsdyn_islicensepurchasedChanging(value); + this._msdyn_islicensepurchased = value; + this.Onmsdyn_islicensepurchasedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _msdyn_islicensepurchased; + partial void Onmsdyn_islicensepurchasedChanging(global::System.Nullable value); + partial void Onmsdyn_islicensepurchasedChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -491037,28 +491125,6 @@ public static msdyn_salesinsightssettings Createmsdyn_salesinsightssettings(glob partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -491919,93 +491985,93 @@ public static msdyn_siconfig Createmsdyn_siconfig(global::EMBC.ESS.Utilities.Dyn return msdyn_siconfig; } /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property msdyn_siconfigid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable msdyn_siconfigid { get { - return this.__createdonbehalfby_value; + return this._msdyn_siconfigid; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onmsdyn_siconfigidChanging(value); + this._msdyn_siconfigid = value; + this.Onmsdyn_siconfigidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _msdyn_siconfigid; + partial void Onmsdyn_siconfigidChanging(global::System.Nullable value); + partial void Onmsdyn_siconfigidChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable statuscode { get { - return this.__owningteam_value; + return this._statuscode; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._statecode; + return this._utcconversiontimezonecode; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable createdon { get { - return this.__owninguser_value; + return this._createdon; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -492029,27 +492095,71 @@ public static msdyn_siconfig Createmsdyn_siconfig(global::EMBC.ESS.Utilities.Dyn partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _owningteam_value { get { - return this._statuscode; + return this.__owningteam_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -492183,71 +492293,27 @@ public virtual string msdyn_version partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property msdyn_siconfigid in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_siconfigid + public virtual global::System.Nullable _ownerid_value { get { - return this._msdyn_siconfigid; + return this.__ownerid_value; } set { - this.Onmsdyn_siconfigidChanging(value); - this._msdyn_siconfigid = value; - this.Onmsdyn_siconfigidChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_siconfigid; - partial void Onmsdyn_siconfigidChanging(global::System.Nullable value); - partial void Onmsdyn_siconfigidChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -492271,49 +492337,49 @@ public virtual string msdyn_version partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable modifiedon { get { - return this.__ownerid_value; + return this._modifiedon; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._modifiedon; + return this.__createdonbehalfby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -493023,27 +493089,27 @@ public static msdyn_sikeyvalueconfig Createmsdyn_sikeyvalueconfig(global::EMBC.E partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable statecode { get { - return this.__createdby_value; + return this._statecode; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -493111,28 +493177,6 @@ public static msdyn_sikeyvalueconfig Createmsdyn_sikeyvalueconfig(global::EMBC.E partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -493155,27 +493199,27 @@ public static msdyn_sikeyvalueconfig Createmsdyn_sikeyvalueconfig(global::EMBC.E partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable createdon { get { - return this._overriddencreatedon; + return this._createdon; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -493265,49 +493309,71 @@ public virtual string msdyn_configvalue partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property msdyn_configkey in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string msdyn_configkey { get { - return this._statecode; + return this._msdyn_configkey; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.Onmsdyn_configkeyChanging(value); + this._msdyn_configkey = value; + this.Onmsdyn_configkeyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private string _msdyn_configkey; + partial void Onmsdyn_configkeyChanging(string value); + partial void Onmsdyn_configkeyChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__modifiedonbehalfby_value; + return this.__modifiedby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property statuscode in the schema. /// @@ -493331,49 +493397,49 @@ public virtual string msdyn_configvalue partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable overriddencreatedon { get { - return this._createdon; + return this._overriddencreatedon; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property msdyn_configkey in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_configkey + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._msdyn_configkey; + return this.__modifiedonbehalfby_value; } set { - this.Onmsdyn_configkeyChanging(value); - this._msdyn_configkey = value; - this.Onmsdyn_configkeyChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_configkey; - partial void Onmsdyn_configkeyChanging(string value); - partial void Onmsdyn_configkeyChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -493953,27 +494019,27 @@ public virtual string msdyn_displayname partial void Onmsdyn_displaynameChanging(string value); partial void Onmsdyn_displaynameChanged(); /// - /// There are no comments for Property msdyn_ismanagedname in the schema. + /// There are no comments for Property msdyn_componenttypename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_ismanagedname + public virtual string msdyn_componenttypename { get { - return this._msdyn_ismanagedname; + return this._msdyn_componenttypename; } set { - this.Onmsdyn_ismanagednameChanging(value); - this._msdyn_ismanagedname = value; - this.Onmsdyn_ismanagednameChanged(); + this.Onmsdyn_componenttypenameChanging(value); + this._msdyn_componenttypename = value; + this.Onmsdyn_componenttypenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_ismanagedname; - partial void Onmsdyn_ismanagednameChanging(string value); - partial void Onmsdyn_ismanagednameChanged(); + private string _msdyn_componenttypename; + partial void Onmsdyn_componenttypenameChanging(string value); + partial void Onmsdyn_componenttypenameChanged(); /// /// There are no comments for Property msdyn_uniquename in the schema. /// @@ -494063,6 +494129,28 @@ public virtual string msdyn_istableenabled partial void Onmsdyn_componenttypeChanging(global::System.Nullable value); partial void Onmsdyn_componenttypeChanged(); /// + /// There are no comments for Property msdyn_ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_ismanaged + { + get + { + return this._msdyn_ismanaged; + } + set + { + this.Onmsdyn_ismanagedChanging(value); + this._msdyn_ismanaged = value; + this.Onmsdyn_ismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_ismanaged; + partial void Onmsdyn_ismanagedChanging(string value); + partial void Onmsdyn_ismanagedChanged(); + /// /// There are no comments for Property msdyn_fieldtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -494173,6 +494261,28 @@ public virtual string msdyn_deployment partial void Onmsdyn_deploymentChanging(string value); partial void Onmsdyn_deploymentChanged(); /// + /// There are no comments for Property msdyn_total in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_total + { + get + { + return this._msdyn_total; + } + set + { + this.Onmsdyn_totalChanging(value); + this._msdyn_total = value; + this.Onmsdyn_totalChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_total; + partial void Onmsdyn_totalChanging(global::System.Nullable value); + partial void Onmsdyn_totalChanged(); + /// /// There are no comments for Property msdyn_owner in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -494415,28 +494525,6 @@ public virtual string msdyn_typename partial void Onmsdyn_typenameChanging(string value); partial void Onmsdyn_typenameChanged(); /// - /// There are no comments for Property msdyn_componenttypename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_componenttypename - { - get - { - return this._msdyn_componenttypename; - } - set - { - this.Onmsdyn_componenttypenameChanging(value); - this._msdyn_componenttypename = value; - this.Onmsdyn_componenttypenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_componenttypename; - partial void Onmsdyn_componenttypenameChanging(string value); - partial void Onmsdyn_componenttypenameChanged(); - /// /// There are no comments for Property msdyn_relatedentity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -494503,28 +494591,6 @@ public virtual string msdyn_synctoexternalsearchindex partial void Onmsdyn_synctoexternalsearchindexChanging(string value); partial void Onmsdyn_synctoexternalsearchindexChanged(); /// - /// There are no comments for Property msdyn_ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_ismanaged - { - get - { - return this._msdyn_ismanaged; - } - set - { - this.Onmsdyn_ismanagedChanging(value); - this._msdyn_ismanaged = value; - this.Onmsdyn_ismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_ismanaged; - partial void Onmsdyn_ismanagedChanging(string value); - partial void Onmsdyn_ismanagedChanged(); - /// /// There are no comments for Property msdyn_canvasappuniqueid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -494613,27 +494679,27 @@ public virtual string msdyn_iscustomizable partial void Onmsdyn_iscustomizableChanging(string value); partial void Onmsdyn_iscustomizableChanged(); /// - /// There are no comments for Property msdyn_total in the schema. + /// There are no comments for Property msdyn_ismanagedname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_total + public virtual string msdyn_ismanagedname { get { - return this._msdyn_total; + return this._msdyn_ismanagedname; } set { - this.Onmsdyn_totalChanging(value); - this._msdyn_total = value; - this.Onmsdyn_totalChanged(); + this.Onmsdyn_ismanagednameChanging(value); + this._msdyn_ismanagedname = value; + this.Onmsdyn_ismanagednameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_total; - partial void Onmsdyn_totalChanging(global::System.Nullable value); - partial void Onmsdyn_totalChanged(); + private string _msdyn_ismanagedname; + partial void Onmsdyn_ismanagednameChanging(string value); + partial void Onmsdyn_ismanagednameChanged(); /// /// There are no comments for Property msdyn_subtype in the schema. /// @@ -495043,49 +495109,49 @@ public partial class msdyn_solutionhistory : crmbaseentity partial void Onmsdyn_resultChanging(global::System.Nullable value); partial void Onmsdyn_resultChanged(); /// - /// There are no comments for Property msdyn_status in the schema. + /// There are no comments for Property msdyn_solutionhistoryid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_status + public virtual global::System.Nullable msdyn_solutionhistoryid { get { - return this._msdyn_status; + return this._msdyn_solutionhistoryid; } set { - this.Onmsdyn_statusChanging(value); - this._msdyn_status = value; - this.Onmsdyn_statusChanged(); + this.Onmsdyn_solutionhistoryidChanging(value); + this._msdyn_solutionhistoryid = value; + this.Onmsdyn_solutionhistoryidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_status; - partial void Onmsdyn_statusChanging(global::System.Nullable value); - partial void Onmsdyn_statusChanged(); + private global::System.Nullable _msdyn_solutionhistoryid; + partial void Onmsdyn_solutionhistoryidChanging(global::System.Nullable value); + partial void Onmsdyn_solutionhistoryidChanged(); /// - /// There are no comments for Property msdyn_correlationid in the schema. + /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_correlationid + public virtual string msdyn_name { get { - return this._msdyn_correlationid; + return this._msdyn_name; } set { - this.Onmsdyn_correlationidChanging(value); - this._msdyn_correlationid = value; - this.Onmsdyn_correlationidChanged(); + this.Onmsdyn_nameChanging(value); + this._msdyn_name = value; + this.Onmsdyn_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_correlationid; - partial void Onmsdyn_correlationidChanging(string value); - partial void Onmsdyn_correlationidChanged(); + private string _msdyn_name; + partial void Onmsdyn_nameChanging(string value); + partial void Onmsdyn_nameChanged(); /// /// There are no comments for Property msdyn_ismanaged in the schema. /// @@ -495109,6 +495175,28 @@ public virtual string msdyn_correlationid partial void Onmsdyn_ismanagedChanging(global::System.Nullable value); partial void Onmsdyn_ismanagedChanged(); /// + /// There are no comments for Property msdyn_ispatch in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_ispatch + { + get + { + return this._msdyn_ispatch; + } + set + { + this.Onmsdyn_ispatchChanging(value); + this._msdyn_ispatch = value; + this.Onmsdyn_ispatchChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_ispatch; + partial void Onmsdyn_ispatchChanging(global::System.Nullable value); + partial void Onmsdyn_ispatchChanged(); + /// /// There are no comments for Property msdyn_activityid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -495131,6 +495219,28 @@ public virtual string msdyn_activityid partial void Onmsdyn_activityidChanging(string value); partial void Onmsdyn_activityidChanged(); /// + /// There are no comments for Property msdyn_correlationid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_correlationid + { + get + { + return this._msdyn_correlationid; + } + set + { + this.Onmsdyn_correlationidChanging(value); + this._msdyn_correlationid = value; + this.Onmsdyn_correlationidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_correlationid; + partial void Onmsdyn_correlationidChanging(string value); + partial void Onmsdyn_correlationidChanged(); + /// /// There are no comments for Property msdyn_starttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -495197,49 +495307,27 @@ public virtual string msdyn_errorcode partial void Onmsdyn_errorcodeChanging(string value); partial void Onmsdyn_errorcodeChanged(); /// - /// There are no comments for Property msdyn_totaltime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_totaltime - { - get - { - return this._msdyn_totaltime; - } - set - { - this.Onmsdyn_totaltimeChanging(value); - this._msdyn_totaltime = value; - this.Onmsdyn_totaltimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_totaltime; - partial void Onmsdyn_totaltimeChanging(global::System.Nullable value); - partial void Onmsdyn_totaltimeChanged(); - /// - /// There are no comments for Property msdyn_name in the schema. + /// There are no comments for Property msdyn_suboperation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_name + public virtual global::System.Nullable msdyn_suboperation { get { - return this._msdyn_name; + return this._msdyn_suboperation; } set { - this.Onmsdyn_nameChanging(value); - this._msdyn_name = value; - this.Onmsdyn_nameChanged(); + this.Onmsdyn_suboperationChanging(value); + this._msdyn_suboperation = value; + this.Onmsdyn_suboperationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_name; - partial void Onmsdyn_nameChanging(string value); - partial void Onmsdyn_nameChanged(); + private global::System.Nullable _msdyn_suboperation; + partial void Onmsdyn_suboperationChanging(global::System.Nullable value); + partial void Onmsdyn_suboperationChanged(); /// /// There are no comments for Property msdyn_exceptionmessage in the schema. /// @@ -495285,27 +495373,27 @@ public virtual string msdyn_publishername partial void Onmsdyn_publishernameChanging(string value); partial void Onmsdyn_publishernameChanged(); /// - /// There are no comments for Property msdyn_packageversion in the schema. + /// There are no comments for Property msdyn_packagename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_packageversion + public virtual string msdyn_packagename { get { - return this._msdyn_packageversion; + return this._msdyn_packagename; } set { - this.Onmsdyn_packageversionChanging(value); - this._msdyn_packageversion = value; - this.Onmsdyn_packageversionChanged(); + this.Onmsdyn_packagenameChanging(value); + this._msdyn_packagename = value; + this.Onmsdyn_packagenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_packageversion; - partial void Onmsdyn_packageversionChanging(string value); - partial void Onmsdyn_packageversionChanged(); + private string _msdyn_packagename; + partial void Onmsdyn_packagenameChanging(string value); + partial void Onmsdyn_packagenameChanged(); /// /// There are no comments for Property msdyn_exceptionstack in the schema. /// @@ -495329,49 +495417,27 @@ public virtual string msdyn_exceptionstack partial void Onmsdyn_exceptionstackChanging(string value); partial void Onmsdyn_exceptionstackChanged(); /// - /// There are no comments for Property msdyn_packagename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_packagename - { - get - { - return this._msdyn_packagename; - } - set - { - this.Onmsdyn_packagenameChanging(value); - this._msdyn_packagename = value; - this.Onmsdyn_packagenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_packagename; - partial void Onmsdyn_packagenameChanging(string value); - partial void Onmsdyn_packagenameChanged(); - /// - /// There are no comments for Property msdyn_ispatch in the schema. + /// There are no comments for Property msdyn_packageversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_ispatch + public virtual string msdyn_packageversion { get { - return this._msdyn_ispatch; + return this._msdyn_packageversion; } set { - this.Onmsdyn_ispatchChanging(value); - this._msdyn_ispatch = value; - this.Onmsdyn_ispatchChanged(); + this.Onmsdyn_packageversionChanging(value); + this._msdyn_packageversion = value; + this.Onmsdyn_packageversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_ispatch; - partial void Onmsdyn_ispatchChanging(global::System.Nullable value); - partial void Onmsdyn_ispatchChanged(); + private string _msdyn_packageversion; + partial void Onmsdyn_packageversionChanging(string value); + partial void Onmsdyn_packageversionChanged(); /// /// There are no comments for Property msdyn_publisherid in the schema. /// @@ -495395,50 +495461,6 @@ public virtual string msdyn_publisherid partial void Onmsdyn_publisheridChanging(string value); partial void Onmsdyn_publisheridChanged(); /// - /// There are no comments for Property msdyn_solutionhistoryid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_solutionhistoryid - { - get - { - return this._msdyn_solutionhistoryid; - } - set - { - this.Onmsdyn_solutionhistoryidChanging(value); - this._msdyn_solutionhistoryid = value; - this.Onmsdyn_solutionhistoryidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_solutionhistoryid; - partial void Onmsdyn_solutionhistoryidChanging(global::System.Nullable value); - partial void Onmsdyn_solutionhistoryidChanged(); - /// - /// There are no comments for Property msdyn_solutionversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_solutionversion - { - get - { - return this._msdyn_solutionversion; - } - set - { - this.Onmsdyn_solutionversionChanging(value); - this._msdyn_solutionversion = value; - this.Onmsdyn_solutionversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_solutionversion; - partial void Onmsdyn_solutionversionChanging(string value); - partial void Onmsdyn_solutionversionChanged(); - /// /// There are no comments for Property msdyn_endtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -495461,49 +495483,93 @@ public virtual string msdyn_solutionversion partial void Onmsdyn_endtimeChanging(global::System.Nullable value); partial void Onmsdyn_endtimeChanged(); /// - /// There are no comments for Property msdyn_isoverwritecustomizations in the schema. + /// There are no comments for Property msdyn_solutionversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isoverwritecustomizations + public virtual string msdyn_solutionversion { get { - return this._msdyn_isoverwritecustomizations; + return this._msdyn_solutionversion; } set { - this.Onmsdyn_isoverwritecustomizationsChanging(value); - this._msdyn_isoverwritecustomizations = value; - this.Onmsdyn_isoverwritecustomizationsChanged(); + this.Onmsdyn_solutionversionChanging(value); + this._msdyn_solutionversion = value; + this.Onmsdyn_solutionversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isoverwritecustomizations; - partial void Onmsdyn_isoverwritecustomizationsChanging(global::System.Nullable value); - partial void Onmsdyn_isoverwritecustomizationsChanged(); + private string _msdyn_solutionversion; + partial void Onmsdyn_solutionversionChanging(string value); + partial void Onmsdyn_solutionversionChanged(); /// - /// There are no comments for Property msdyn_suboperation in the schema. + /// There are no comments for Property msdyn_totaltime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_suboperation + public virtual global::System.Nullable msdyn_totaltime { get { - return this._msdyn_suboperation; + return this._msdyn_totaltime; } set { - this.Onmsdyn_suboperationChanging(value); - this._msdyn_suboperation = value; - this.Onmsdyn_suboperationChanged(); + this.Onmsdyn_totaltimeChanging(value); + this._msdyn_totaltime = value; + this.Onmsdyn_totaltimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_suboperation; - partial void Onmsdyn_suboperationChanging(global::System.Nullable value); - partial void Onmsdyn_suboperationChanged(); + private global::System.Nullable _msdyn_totaltime; + partial void Onmsdyn_totaltimeChanging(global::System.Nullable value); + partial void Onmsdyn_totaltimeChanged(); + /// + /// There are no comments for Property msdyn_status in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_status + { + get + { + return this._msdyn_status; + } + set + { + this.Onmsdyn_statusChanging(value); + this._msdyn_status = value; + this.Onmsdyn_statusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_status; + partial void Onmsdyn_statusChanging(global::System.Nullable value); + partial void Onmsdyn_statusChanged(); + /// + /// There are no comments for Property msdyn_isoverwritecustomizations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_isoverwritecustomizations + { + get + { + return this._msdyn_isoverwritecustomizations; + } + set + { + this.Onmsdyn_isoverwritecustomizationsChanging(value); + this._msdyn_isoverwritecustomizations = value; + this.Onmsdyn_isoverwritecustomizationsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_isoverwritecustomizations; + partial void Onmsdyn_isoverwritecustomizationsChanging(global::System.Nullable value); + partial void Onmsdyn_isoverwritecustomizationsChanged(); /// /// There are no comments for Property msdyn_operation in the schema. /// @@ -495639,27 +495705,27 @@ public msdyn_suggestedactivitySingle(global::Microsoft.OData.Client.DataServiceQ public partial class msdyn_suggestedactivity : crmbaseentity { /// - /// There are no comments for Property msdyn_regardingname in the schema. + /// There are no comments for Property msdyn_importance in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_regardingname + public virtual string msdyn_importance { get { - return this._msdyn_regardingname; + return this._msdyn_importance; } set { - this.Onmsdyn_regardingnameChanging(value); - this._msdyn_regardingname = value; - this.Onmsdyn_regardingnameChanged(); + this.Onmsdyn_importanceChanging(value); + this._msdyn_importance = value; + this.Onmsdyn_importanceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_regardingname; - partial void Onmsdyn_regardingnameChanging(string value); - partial void Onmsdyn_regardingnameChanged(); + private string _msdyn_importance; + partial void Onmsdyn_importanceChanging(string value); + partial void Onmsdyn_importanceChanged(); /// /// There are no comments for Property msdyn_sendername in the schema. /// @@ -495705,6 +495771,28 @@ public virtual string msdyn_subject partial void Onmsdyn_subjectChanging(string value); partial void Onmsdyn_subjectChanged(); /// + /// There are no comments for Property msdyn_activitytype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_activitytype + { + get + { + return this._msdyn_activitytype; + } + set + { + this.Onmsdyn_activitytypeChanging(value); + this._msdyn_activitytype = value; + this.Onmsdyn_activitytypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_activitytype; + partial void Onmsdyn_activitytypeChanging(string value); + partial void Onmsdyn_activitytypeChanged(); + /// /// There are no comments for Property msdyn_location in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -495749,49 +495837,27 @@ public virtual string msdyn_location partial void Onmsdyn_suggestedactivityidChanging(global::System.Nullable value); partial void Onmsdyn_suggestedactivityidChanged(); /// - /// There are no comments for Property msdyn_activitytype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_activitytype - { - get - { - return this._msdyn_activitytype; - } - set - { - this.Onmsdyn_activitytypeChanging(value); - this._msdyn_activitytype = value; - this.Onmsdyn_activitytypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_activitytype; - partial void Onmsdyn_activitytypeChanging(string value); - partial void Onmsdyn_activitytypeChanged(); - /// - /// There are no comments for Property msdyn_starttime in the schema. + /// There are no comments for Property _msdyn_regardingid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_starttime + public virtual global::System.Nullable _msdyn_regardingid_value { get { - return this._msdyn_starttime; + return this.__msdyn_regardingid_value; } set { - this.Onmsdyn_starttimeChanging(value); - this._msdyn_starttime = value; - this.Onmsdyn_starttimeChanged(); + this.On_msdyn_regardingid_valueChanging(value); + this.__msdyn_regardingid_value = value; + this.On_msdyn_regardingid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_starttime; - partial void Onmsdyn_starttimeChanging(global::System.Nullable value); - partial void Onmsdyn_starttimeChanged(); + private global::System.Nullable __msdyn_regardingid_value; + partial void On_msdyn_regardingid_valueChanging(global::System.Nullable value); + partial void On_msdyn_regardingid_valueChanged(); /// /// There are no comments for Property msdyn_to in the schema. /// @@ -495815,49 +495881,49 @@ public virtual string msdyn_to partial void Onmsdyn_toChanging(string value); partial void Onmsdyn_toChanged(); /// - /// There are no comments for Property _msdyn_regardingid_value in the schema. + /// There are no comments for Property msdyn_sender in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_regardingid_value + public virtual string msdyn_sender { get { - return this.__msdyn_regardingid_value; + return this._msdyn_sender; } set { - this.On_msdyn_regardingid_valueChanging(value); - this.__msdyn_regardingid_value = value; - this.On_msdyn_regardingid_valueChanged(); + this.Onmsdyn_senderChanging(value); + this._msdyn_sender = value; + this.Onmsdyn_senderChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_regardingid_value; - partial void On_msdyn_regardingid_valueChanging(global::System.Nullable value); - partial void On_msdyn_regardingid_valueChanged(); + private string _msdyn_sender; + partial void Onmsdyn_senderChanging(string value); + partial void Onmsdyn_senderChanged(); /// - /// There are no comments for Property msdyn_sender in the schema. + /// There are no comments for Property msdyn_createddate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_sender + public virtual global::System.Nullable msdyn_createddate { get { - return this._msdyn_sender; + return this._msdyn_createddate; } set { - this.Onmsdyn_senderChanging(value); - this._msdyn_sender = value; - this.Onmsdyn_senderChanged(); + this.Onmsdyn_createddateChanging(value); + this._msdyn_createddate = value; + this.Onmsdyn_createddateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_sender; - partial void Onmsdyn_senderChanging(string value); - partial void Onmsdyn_senderChanged(); + private global::System.Nullable _msdyn_createddate; + partial void Onmsdyn_createddateChanging(global::System.Nullable value); + partial void Onmsdyn_createddateChanged(); /// /// There are no comments for Property msdyn_exchangeweblink in the schema. /// @@ -495925,71 +495991,71 @@ public virtual string msdyn_duration partial void Onmsdyn_durationChanging(string value); partial void Onmsdyn_durationChanged(); /// - /// There are no comments for Property msdyn_importance in the schema. + /// There are no comments for Property msdyn_regardingname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_importance + public virtual string msdyn_regardingname { get { - return this._msdyn_importance; + return this._msdyn_regardingname; } set { - this.Onmsdyn_importanceChanging(value); - this._msdyn_importance = value; - this.Onmsdyn_importanceChanged(); + this.Onmsdyn_regardingnameChanging(value); + this._msdyn_regardingname = value; + this.Onmsdyn_regardingnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_importance; - partial void Onmsdyn_importanceChanging(string value); - partial void Onmsdyn_importanceChanged(); + private string _msdyn_regardingname; + partial void Onmsdyn_regardingnameChanging(string value); + partial void Onmsdyn_regardingnameChanged(); /// - /// There are no comments for Property msdyn_bodypreview in the schema. + /// There are no comments for Property msdyn_starttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_bodypreview + public virtual global::System.Nullable msdyn_starttime { get { - return this._msdyn_bodypreview; + return this._msdyn_starttime; } set { - this.Onmsdyn_bodypreviewChanging(value); - this._msdyn_bodypreview = value; - this.Onmsdyn_bodypreviewChanged(); + this.Onmsdyn_starttimeChanging(value); + this._msdyn_starttime = value; + this.Onmsdyn_starttimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_bodypreview; - partial void Onmsdyn_bodypreviewChanging(string value); - partial void Onmsdyn_bodypreviewChanged(); + private global::System.Nullable _msdyn_starttime; + partial void Onmsdyn_starttimeChanging(global::System.Nullable value); + partial void Onmsdyn_starttimeChanged(); /// - /// There are no comments for Property msdyn_createddate in the schema. + /// There are no comments for Property msdyn_bodypreview in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_createddate + public virtual string msdyn_bodypreview { get { - return this._msdyn_createddate; + return this._msdyn_bodypreview; } set { - this.Onmsdyn_createddateChanging(value); - this._msdyn_createddate = value; - this.Onmsdyn_createddateChanged(); + this.Onmsdyn_bodypreviewChanging(value); + this._msdyn_bodypreview = value; + this.Onmsdyn_bodypreviewChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_createddate; - partial void Onmsdyn_createddateChanging(global::System.Nullable value); - partial void Onmsdyn_createddateChanged(); + private string _msdyn_bodypreview; + partial void Onmsdyn_bodypreviewChanging(string value); + partial void Onmsdyn_bodypreviewChanged(); } /// /// There are no comments for msdyn_suggestedactivitydatasourceSingle in the schema. @@ -496125,27 +496191,27 @@ public virtual string msdyn_firstname partial void Onmsdyn_firstnameChanging(string value); partial void Onmsdyn_firstnameChanged(); /// - /// There are no comments for Property msdyn_suggestedcontactid in the schema. + /// There are no comments for Property msdyn_companyname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_suggestedcontactid + public virtual string msdyn_companyname { get { - return this._msdyn_suggestedcontactid; + return this._msdyn_companyname; } set { - this.Onmsdyn_suggestedcontactidChanging(value); - this._msdyn_suggestedcontactid = value; - this.Onmsdyn_suggestedcontactidChanged(); + this.Onmsdyn_companynameChanging(value); + this._msdyn_companyname = value; + this.Onmsdyn_companynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_suggestedcontactid; - partial void Onmsdyn_suggestedcontactidChanging(global::System.Nullable value); - partial void Onmsdyn_suggestedcontactidChanged(); + private string _msdyn_companyname; + partial void Onmsdyn_companynameChanging(string value); + partial void Onmsdyn_companynameChanged(); /// /// There are no comments for Property msdyn_createdon in the schema. /// @@ -496213,6 +496279,28 @@ public virtual string msdyn_email partial void Onmsdyn_emailChanging(string value); partial void Onmsdyn_emailChanged(); /// + /// There are no comments for Property msdyn_suggestedcontactid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_suggestedcontactid + { + get + { + return this._msdyn_suggestedcontactid; + } + set + { + this.Onmsdyn_suggestedcontactidChanging(value); + this._msdyn_suggestedcontactid = value; + this.Onmsdyn_suggestedcontactidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_suggestedcontactid; + partial void Onmsdyn_suggestedcontactidChanging(global::System.Nullable value); + partial void Onmsdyn_suggestedcontactidChanged(); + /// /// There are no comments for Property msdyn_addressline1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -496235,115 +496323,115 @@ public virtual string msdyn_addressline1 partial void Onmsdyn_addressline1Changing(string value); partial void Onmsdyn_addressline1Changed(); /// - /// There are no comments for Property msdyn_addressline2 in the schema. + /// There are no comments for Property _msdyn_accountid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_addressline2 + public virtual global::System.Nullable _msdyn_accountid_value { get { - return this._msdyn_addressline2; + return this.__msdyn_accountid_value; } set { - this.Onmsdyn_addressline2Changing(value); - this._msdyn_addressline2 = value; - this.Onmsdyn_addressline2Changed(); + this.On_msdyn_accountid_valueChanging(value); + this.__msdyn_accountid_value = value; + this.On_msdyn_accountid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_addressline2; - partial void Onmsdyn_addressline2Changing(string value); - partial void Onmsdyn_addressline2Changed(); + private global::System.Nullable __msdyn_accountid_value; + partial void On_msdyn_accountid_valueChanging(global::System.Nullable value); + partial void On_msdyn_accountid_valueChanged(); /// - /// There are no comments for Property msdyn_telephone in the schema. + /// There are no comments for Property msdyn_addresspostalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_telephone + public virtual string msdyn_addresspostalcode { get { - return this._msdyn_telephone; + return this._msdyn_addresspostalcode; } set { - this.Onmsdyn_telephoneChanging(value); - this._msdyn_telephone = value; - this.Onmsdyn_telephoneChanged(); + this.Onmsdyn_addresspostalcodeChanging(value); + this._msdyn_addresspostalcode = value; + this.Onmsdyn_addresspostalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_telephone; - partial void Onmsdyn_telephoneChanging(string value); - partial void Onmsdyn_telephoneChanged(); + private string _msdyn_addresspostalcode; + partial void Onmsdyn_addresspostalcodeChanging(string value); + partial void Onmsdyn_addresspostalcodeChanged(); /// - /// There are no comments for Property msdyn_lastname in the schema. + /// There are no comments for Property msdyn_description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_lastname + public virtual string msdyn_description { get { - return this._msdyn_lastname; + return this._msdyn_description; } set { - this.Onmsdyn_lastnameChanging(value); - this._msdyn_lastname = value; - this.Onmsdyn_lastnameChanged(); + this.Onmsdyn_descriptionChanging(value); + this._msdyn_description = value; + this.Onmsdyn_descriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_lastname; - partial void Onmsdyn_lastnameChanging(string value); - partial void Onmsdyn_lastnameChanged(); + private string _msdyn_description; + partial void Onmsdyn_descriptionChanging(string value); + partial void Onmsdyn_descriptionChanged(); /// - /// There are no comments for Property msdyn_addresscity in the schema. + /// There are no comments for Property msdyn_accountidname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_addresscity + public virtual string msdyn_accountidname { get { - return this._msdyn_addresscity; + return this._msdyn_accountidname; } set { - this.Onmsdyn_addresscityChanging(value); - this._msdyn_addresscity = value; - this.Onmsdyn_addresscityChanged(); + this.Onmsdyn_accountidnameChanging(value); + this._msdyn_accountidname = value; + this.Onmsdyn_accountidnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_addresscity; - partial void Onmsdyn_addresscityChanging(string value); - partial void Onmsdyn_addresscityChanged(); + private string _msdyn_accountidname; + partial void Onmsdyn_accountidnameChanging(string value); + partial void Onmsdyn_accountidnameChanged(); /// - /// There are no comments for Property msdyn_companyname in the schema. + /// There are no comments for Property msdyn_addresscity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_companyname + public virtual string msdyn_addresscity { get { - return this._msdyn_companyname; + return this._msdyn_addresscity; } set { - this.Onmsdyn_companynameChanging(value); - this._msdyn_companyname = value; - this.Onmsdyn_companynameChanged(); + this.Onmsdyn_addresscityChanging(value); + this._msdyn_addresscity = value; + this.Onmsdyn_addresscityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_companyname; - partial void Onmsdyn_companynameChanging(string value); - partial void Onmsdyn_companynameChanged(); + private string _msdyn_addresscity; + partial void Onmsdyn_addresscityChanging(string value); + partial void Onmsdyn_addresscityChanged(); /// /// There are no comments for Property msdyn_jobtitle in the schema. /// @@ -496367,71 +496455,49 @@ public virtual string msdyn_jobtitle partial void Onmsdyn_jobtitleChanging(string value); partial void Onmsdyn_jobtitleChanged(); /// - /// There are no comments for Property _msdyn_accountid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _msdyn_accountid_value - { - get - { - return this.__msdyn_accountid_value; - } - set - { - this.On_msdyn_accountid_valueChanging(value); - this.__msdyn_accountid_value = value; - this.On_msdyn_accountid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_accountid_value; - partial void On_msdyn_accountid_valueChanging(global::System.Nullable value); - partial void On_msdyn_accountid_valueChanged(); - /// - /// There are no comments for Property msdyn_description in the schema. + /// There are no comments for Property msdyn_telephone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_description + public virtual string msdyn_telephone { get { - return this._msdyn_description; + return this._msdyn_telephone; } set { - this.Onmsdyn_descriptionChanging(value); - this._msdyn_description = value; - this.Onmsdyn_descriptionChanged(); + this.Onmsdyn_telephoneChanging(value); + this._msdyn_telephone = value; + this.Onmsdyn_telephoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_description; - partial void Onmsdyn_descriptionChanging(string value); - partial void Onmsdyn_descriptionChanged(); + private string _msdyn_telephone; + partial void Onmsdyn_telephoneChanging(string value); + partial void Onmsdyn_telephoneChanged(); /// - /// There are no comments for Property msdyn_addresspostalcode in the schema. + /// There are no comments for Property msdyn_mobilephone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_addresspostalcode + public virtual string msdyn_mobilephone { get { - return this._msdyn_addresspostalcode; + return this._msdyn_mobilephone; } set { - this.Onmsdyn_addresspostalcodeChanging(value); - this._msdyn_addresspostalcode = value; - this.Onmsdyn_addresspostalcodeChanged(); + this.Onmsdyn_mobilephoneChanging(value); + this._msdyn_mobilephone = value; + this.Onmsdyn_mobilephoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_addresspostalcode; - partial void Onmsdyn_addresspostalcodeChanging(string value); - partial void Onmsdyn_addresspostalcodeChanged(); + private string _msdyn_mobilephone; + partial void Onmsdyn_mobilephoneChanging(string value); + partial void Onmsdyn_mobilephoneChanged(); /// /// There are no comments for Property msdyn_accountname in the schema. /// @@ -496455,71 +496521,71 @@ public virtual string msdyn_accountname partial void Onmsdyn_accountnameChanging(string value); partial void Onmsdyn_accountnameChanged(); /// - /// There are no comments for Property msdyn_mobilephone in the schema. + /// There are no comments for Property msdyn_lastname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_mobilephone + public virtual string msdyn_lastname { get { - return this._msdyn_mobilephone; + return this._msdyn_lastname; } set { - this.Onmsdyn_mobilephoneChanging(value); - this._msdyn_mobilephone = value; - this.Onmsdyn_mobilephoneChanged(); + this.Onmsdyn_lastnameChanging(value); + this._msdyn_lastname = value; + this.Onmsdyn_lastnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_mobilephone; - partial void Onmsdyn_mobilephoneChanging(string value); - partial void Onmsdyn_mobilephoneChanged(); + private string _msdyn_lastname; + partial void Onmsdyn_lastnameChanging(string value); + partial void Onmsdyn_lastnameChanged(); /// - /// There are no comments for Property msdyn_fullname in the schema. + /// There are no comments for Property msdyn_addressline2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_fullname + public virtual string msdyn_addressline2 { get { - return this._msdyn_fullname; + return this._msdyn_addressline2; } set { - this.Onmsdyn_fullnameChanging(value); - this._msdyn_fullname = value; - this.Onmsdyn_fullnameChanged(); + this.Onmsdyn_addressline2Changing(value); + this._msdyn_addressline2 = value; + this.Onmsdyn_addressline2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_fullname; - partial void Onmsdyn_fullnameChanging(string value); - partial void Onmsdyn_fullnameChanged(); + private string _msdyn_addressline2; + partial void Onmsdyn_addressline2Changing(string value); + partial void Onmsdyn_addressline2Changed(); /// - /// There are no comments for Property msdyn_accountidname in the schema. + /// There are no comments for Property msdyn_fullname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_accountidname + public virtual string msdyn_fullname { get { - return this._msdyn_accountidname; + return this._msdyn_fullname; } set { - this.Onmsdyn_accountidnameChanging(value); - this._msdyn_accountidname = value; - this.Onmsdyn_accountidnameChanged(); + this.Onmsdyn_fullnameChanging(value); + this._msdyn_fullname = value; + this.Onmsdyn_fullnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_accountidname; - partial void Onmsdyn_accountidnameChanging(string value); - partial void Onmsdyn_accountidnameChanged(); + private string _msdyn_fullname; + partial void Onmsdyn_fullnameChanging(string value); + partial void Onmsdyn_fullnameChanged(); } /// /// There are no comments for msdyn_suggestedcontactsdatasourceSingle in the schema. @@ -496876,6 +496942,28 @@ public static msdyn_teamscollaboration Createmsdyn_teamscollaboration(global::EM return msdyn_teamscollaboration; } /// + /// There are no comments for Property regardingobjecttypename in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string regardingobjecttypename + { + get + { + return this._regardingobjecttypename; + } + set + { + this.OnregardingobjecttypenameChanging(value); + this._regardingobjecttypename = value; + this.OnregardingobjecttypenameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _regardingobjecttypename; + partial void OnregardingobjecttypenameChanging(string value); + partial void OnregardingobjecttypenameChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -497030,27 +497118,27 @@ public virtual string msdyn_channelfolderrelativeurl partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property msdyn_teamscollaborationid in the schema. + /// There are no comments for Property msdyn_channelname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_teamscollaborationid + public virtual string msdyn_channelname { get { - return this._msdyn_teamscollaborationid; + return this._msdyn_channelname; } set { - this.Onmsdyn_teamscollaborationidChanging(value); - this._msdyn_teamscollaborationid = value; - this.Onmsdyn_teamscollaborationidChanged(); + this.Onmsdyn_channelnameChanging(value); + this._msdyn_channelname = value; + this.Onmsdyn_channelnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_teamscollaborationid; - partial void Onmsdyn_teamscollaborationidChanging(global::System.Nullable value); - partial void Onmsdyn_teamscollaborationidChanged(); + private string _msdyn_channelname; + partial void Onmsdyn_channelnameChanging(string value); + partial void Onmsdyn_channelnameChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -497096,50 +497184,6 @@ public virtual string msdyn_channelfolderrelativeurl partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property msdyn_channelid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_channelid - { - get - { - return this._msdyn_channelid; - } - set - { - this.Onmsdyn_channelidChanging(value); - this._msdyn_channelid = value; - this.Onmsdyn_channelidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_channelid; - partial void Onmsdyn_channelidChanging(string value); - partial void Onmsdyn_channelidChanged(); - /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -497184,27 +497228,27 @@ public virtual string msdyn_channelid partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property msdyn_contenturl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string msdyn_contenturl { get { - return this._timezoneruleversionnumber; + return this._msdyn_contenturl; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onmsdyn_contenturlChanging(value); + this._msdyn_contenturl = value; + this.Onmsdyn_contenturlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _msdyn_contenturl; + partial void Onmsdyn_contenturlChanging(string value); + partial void Onmsdyn_contenturlChanged(); /// /// There are no comments for Property regardingobjectid in the schema. /// @@ -497250,71 +497294,27 @@ public virtual string msdyn_channelid partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property msdyn_channelname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_channelname - { - get - { - return this._msdyn_channelname; - } - set - { - this.Onmsdyn_channelnameChanging(value); - this._msdyn_channelname = value; - this.Onmsdyn_channelnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_channelname; - partial void Onmsdyn_channelnameChanging(string value); - partial void Onmsdyn_channelnameChanged(); - /// - /// There are no comments for Property msdyn_tenantid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_tenantid - { - get - { - return this._msdyn_tenantid; - } - set - { - this.Onmsdyn_tenantidChanging(value); - this._msdyn_tenantid = value; - this.Onmsdyn_tenantidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_tenantid; - partial void Onmsdyn_tenantidChanging(global::System.Nullable value); - partial void Onmsdyn_tenantidChanged(); - /// - /// There are no comments for Property msdyn_contenturl in the schema. + /// There are no comments for Property msdyn_teamid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_contenturl + public virtual string msdyn_teamid { get { - return this._msdyn_contenturl; + return this._msdyn_teamid; } set { - this.Onmsdyn_contenturlChanging(value); - this._msdyn_contenturl = value; - this.Onmsdyn_contenturlChanged(); + this.Onmsdyn_teamidChanging(value); + this._msdyn_teamid = value; + this.Onmsdyn_teamidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_contenturl; - partial void Onmsdyn_contenturlChanging(string value); - partial void Onmsdyn_contenturlChanged(); + private string _msdyn_teamid; + partial void Onmsdyn_teamidChanging(string value); + partial void Onmsdyn_teamidChanged(); /// /// There are no comments for Property regardingobjecttypecode in the schema. /// @@ -497404,27 +497404,27 @@ public virtual string msdyn_appid partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property msdyn_teamid in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_teamid + public virtual global::System.Nullable importsequencenumber { get { - return this._msdyn_teamid; + return this._importsequencenumber; } set { - this.Onmsdyn_teamidChanging(value); - this._msdyn_teamid = value; - this.Onmsdyn_teamidChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_teamid; - partial void Onmsdyn_teamidChanging(string value); - partial void Onmsdyn_teamidChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property msdyn_teamname in the schema. /// @@ -497470,6 +497470,28 @@ public virtual string msdyn_pipedentityid partial void Onmsdyn_pipedentityidChanging(string value); partial void Onmsdyn_pipedentityidChanged(); /// + /// There are no comments for Property msdyn_tenantid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_tenantid + { + get + { + return this._msdyn_tenantid; + } + set + { + this.Onmsdyn_tenantidChanging(value); + this._msdyn_tenantid = value; + this.Onmsdyn_tenantidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_tenantid; + partial void Onmsdyn_tenantidChanging(global::System.Nullable value); + partial void Onmsdyn_tenantidChanged(); + /// /// There are no comments for Property msdyn_teamsiteurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -497492,27 +497514,27 @@ public virtual string msdyn_teamsiteurl partial void Onmsdyn_teamsiteurlChanging(string value); partial void Onmsdyn_teamsiteurlChanged(); /// - /// There are no comments for Property regardingobjecttypename in the schema. + /// There are no comments for Property msdyn_teamscollaborationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string regardingobjecttypename + public virtual global::System.Nullable msdyn_teamscollaborationid { get { - return this._regardingobjecttypename; + return this._msdyn_teamscollaborationid; } set { - this.OnregardingobjecttypenameChanging(value); - this._regardingobjecttypename = value; - this.OnregardingobjecttypenameChanged(); + this.Onmsdyn_teamscollaborationidChanging(value); + this._msdyn_teamscollaborationid = value; + this.Onmsdyn_teamscollaborationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _regardingobjecttypename; - partial void OnregardingobjecttypenameChanging(string value); - partial void OnregardingobjecttypenameChanged(); + private global::System.Nullable _msdyn_teamscollaborationid; + partial void Onmsdyn_teamscollaborationidChanging(global::System.Nullable value); + partial void Onmsdyn_teamscollaborationidChanged(); /// /// There are no comments for Property msdyn_weburl in the schema. /// @@ -497536,6 +497558,50 @@ public virtual string msdyn_weburl partial void Onmsdyn_weburlChanging(string value); partial void Onmsdyn_weburlChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property msdyn_channelid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_channelid + { + get + { + return this._msdyn_channelid; + } + set + { + this.Onmsdyn_channelidChanging(value); + this._msdyn_channelid = value; + this.Onmsdyn_channelidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_channelid; + partial void Onmsdyn_channelidChanging(string value); + partial void Onmsdyn_channelidChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -498086,49 +498152,49 @@ public static msdyn_tour Createmsdyn_tour(global::EMBC.ESS.Utilities.Dynamics.Mi return msdyn_tour; } /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable createdon { get { - return this._modifiedon; + return this._createdon; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property msdyn_tourid in the schema. + /// There are no comments for Property msdyn_tourdefinition in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_tourid + public virtual string msdyn_tourdefinition { get { - return this._msdyn_tourid; + return this._msdyn_tourdefinition; } set { - this.Onmsdyn_touridChanging(value); - this._msdyn_tourid = value; - this.Onmsdyn_touridChanged(); + this.Onmsdyn_tourdefinitionChanging(value); + this._msdyn_tourdefinition = value; + this.Onmsdyn_tourdefinitionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_tourid; - partial void Onmsdyn_touridChanging(global::System.Nullable value); - partial void Onmsdyn_touridChanged(); + private string _msdyn_tourdefinition; + partial void Onmsdyn_tourdefinitionChanging(string value); + partial void Onmsdyn_tourdefinitionChanged(); /// /// There are no comments for Property componentidunique in the schema. /// @@ -498240,6 +498306,28 @@ public virtual string msdyn_labelsresource partial void Onmsdyn_labelsresourceChanging(string value); partial void Onmsdyn_labelsresourceChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -498328,49 +498416,49 @@ public virtual string msdyn_path partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property msdyn_displayname in the schema. + /// There are no comments for Property msdyn_tourid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_displayname + public virtual global::System.Nullable msdyn_tourid { get { - return this._msdyn_displayname; + return this._msdyn_tourid; } set { - this.Onmsdyn_displaynameChanging(value); - this._msdyn_displayname = value; - this.Onmsdyn_displaynameChanged(); + this.Onmsdyn_touridChanging(value); + this._msdyn_tourid = value; + this.Onmsdyn_touridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_displayname; - partial void Onmsdyn_displaynameChanging(string value); - partial void Onmsdyn_displaynameChanged(); + private global::System.Nullable _msdyn_tourid; + partial void Onmsdyn_touridChanging(global::System.Nullable value); + partial void Onmsdyn_touridChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property msdyn_displayname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string msdyn_displayname { get { - return this._utcconversiontimezonecode; + return this._msdyn_displayname; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.Onmsdyn_displaynameChanging(value); + this._msdyn_displayname = value; + this.Onmsdyn_displaynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _msdyn_displayname; + partial void Onmsdyn_displaynameChanging(string value); + partial void Onmsdyn_displaynameChanged(); /// /// There are no comments for Property componentstate in the schema. /// @@ -498416,6 +498504,28 @@ public virtual string msdyn_displayname partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -498482,28 +498592,6 @@ public virtual string msdyn_displayname partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -498548,27 +498636,27 @@ public virtual string msdyn_displayname partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property msdyn_tourdefinition in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_tourdefinition + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this._msdyn_tourdefinition; + return this._iscustomizable; } set { - this.Onmsdyn_tourdefinitionChanging(value); - this._msdyn_tourdefinition = value; - this.Onmsdyn_tourdefinitionChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_tourdefinition; - partial void Onmsdyn_tourdefinitionChanging(string value); - partial void Onmsdyn_tourdefinitionChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -498592,49 +498680,27 @@ public virtual string msdyn_tourdefinition partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable modifiedon { get { - return this._iscustomizable; + return this._modifiedon; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -499317,6 +499383,28 @@ public static msdyn_untrackedappointment Createmsdyn_untrackedappointment(global return msdyn_untrackedappointment; } /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -499339,6 +499427,94 @@ public static msdyn_untrackedappointment Createmsdyn_untrackedappointment(global partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property _owninguser_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owninguser_value + { + get + { + return this.__owninguser_value; + } + set + { + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -499361,72 +499537,6 @@ public static msdyn_untrackedappointment Createmsdyn_untrackedappointment(global partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -499449,137 +499559,71 @@ public static msdyn_untrackedappointment Createmsdyn_untrackedappointment(global partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._statuscode; + return this._timezoneruleversionnumber; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _modifiedby_value { get { - return this._timezoneruleversionnumber; + return this.__modifiedby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property msdyn_name in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_name + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._msdyn_name; + return this.__modifiedonbehalfby_value; } set { - this.Onmsdyn_nameChanging(value); - this._msdyn_name = value; - this.Onmsdyn_nameChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_name; - partial void Onmsdyn_nameChanging(string value); - partial void Onmsdyn_nameChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -499625,27 +499669,27 @@ public virtual string msdyn_name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__modifiedby_value; + return this._overriddencreatedon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -499669,6 +499713,28 @@ public virtual string msdyn_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -499713,27 +499779,27 @@ public virtual string msdyn_name partial void Onmsdyn_untrackedappointmentidChanging(global::System.Nullable value); partial void Onmsdyn_untrackedappointmentidChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property msdyn_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual string msdyn_name { get { - return this._overriddencreatedon; + return this._msdyn_name; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.Onmsdyn_nameChanging(value); + this._msdyn_name = value; + this.Onmsdyn_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private string _msdyn_name; + partial void Onmsdyn_nameChanging(string value); + partial void Onmsdyn_nameChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -500420,27 +500486,71 @@ public static msdyn_upgraderun Createmsdyn_upgraderun(global::EMBC.ESS.Utilities return msdyn_upgraderun; } /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__createdonbehalfby_value; + return this.__modifiedby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -500464,27 +500574,71 @@ public static msdyn_upgraderun Createmsdyn_upgraderun(global::EMBC.ESS.Utilities partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property msdyn_finished in the schema. + /// There are no comments for Property msdyn_solution in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_finished + public virtual string msdyn_solution { get { - return this._msdyn_finished; + return this._msdyn_solution; } set { - this.Onmsdyn_finishedChanging(value); - this._msdyn_finished = value; - this.Onmsdyn_finishedChanged(); + this.Onmsdyn_solutionChanging(value); + this._msdyn_solution = value; + this.Onmsdyn_solutionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_finished; - partial void Onmsdyn_finishedChanging(global::System.Nullable value); - partial void Onmsdyn_finishedChanged(); + private string _msdyn_solution; + partial void Onmsdyn_solutionChanging(string value); + partial void Onmsdyn_solutionChanged(); + /// + /// There are no comments for Property msdyn_targetversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string msdyn_targetversion + { + get + { + return this._msdyn_targetversion; + } + set + { + this.Onmsdyn_targetversionChanging(value); + this._msdyn_targetversion = value; + this.Onmsdyn_targetversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _msdyn_targetversion; + partial void Onmsdyn_targetversionChanging(string value); + partial void Onmsdyn_targetversionChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -500552,27 +500706,49 @@ public virtual string msdyn_error partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property msdyn_solution in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_solution + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._msdyn_solution; + return this.__createdonbehalfby_value; } set { - this.Onmsdyn_solutionChanging(value); - this._msdyn_solution = value; - this.Onmsdyn_solutionChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_solution; - partial void Onmsdyn_solutionChanging(string value); - partial void Onmsdyn_solutionChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property msdyn_status in the schema. /// @@ -500640,49 +500816,27 @@ public virtual string msdyn_solution partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property msdyn_upgraderunid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable msdyn_upgraderunid { get { - return this._timezoneruleversionnumber; + return this._msdyn_upgraderunid; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onmsdyn_upgraderunidChanging(value); + this._msdyn_upgraderunid = value; + this.Onmsdyn_upgraderunidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _msdyn_upgraderunid; + partial void Onmsdyn_upgraderunidChanging(global::System.Nullable value); + partial void Onmsdyn_upgraderunidChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -500706,72 +500860,6 @@ public virtual string msdyn_solution partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// - /// There are no comments for Property msdyn_targetversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string msdyn_targetversion - { - get - { - return this._msdyn_targetversion; - } - set - { - this.Onmsdyn_targetversionChanging(value); - this._msdyn_targetversion = value; - this.Onmsdyn_targetversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_targetversion; - partial void Onmsdyn_targetversionChanging(string value); - partial void Onmsdyn_targetversionChanged(); - /// /// There are no comments for Property msdyn_package in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -500794,50 +500882,6 @@ public virtual string msdyn_package partial void Onmsdyn_packageChanging(string value); partial void Onmsdyn_packageChanged(); /// - /// There are no comments for Property msdyn_upgraderunid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_upgraderunid - { - get - { - return this._msdyn_upgraderunid; - } - set - { - this.Onmsdyn_upgraderunidChanging(value); - this._msdyn_upgraderunid = value; - this.Onmsdyn_upgraderunidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_upgraderunid; - partial void Onmsdyn_upgraderunidChanging(global::System.Nullable value); - partial void Onmsdyn_upgraderunidChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property msdyn_summary in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -500860,27 +500904,27 @@ public virtual string msdyn_summary partial void Onmsdyn_summaryChanging(string value); partial void Onmsdyn_summaryChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__modifiedonbehalfby_value; + return this._overriddencreatedon; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property msdyn_startingversion in the schema. /// @@ -500926,6 +500970,28 @@ public virtual string msdyn_startingversion partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property msdyn_finished in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_finished + { + get + { + return this._msdyn_finished; + } + set + { + this.Onmsdyn_finishedChanging(value); + this._msdyn_finished = value; + this.Onmsdyn_finishedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_finished; + partial void Onmsdyn_finishedChanging(global::System.Nullable value); + partial void Onmsdyn_finishedChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -501531,27 +501597,27 @@ public static msdyn_upgradestep Createmsdyn_upgradestep(global::EMBC.ESS.Utiliti return msdyn_upgradestep; } /// - /// There are no comments for Property msdyn_dbversion in the schema. + /// There are no comments for Property msdyn_details in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_dbversion + public virtual string msdyn_details { get { - return this._msdyn_dbversion; + return this._msdyn_details; } set { - this.Onmsdyn_dbversionChanging(value); - this._msdyn_dbversion = value; - this.Onmsdyn_dbversionChanged(); + this.Onmsdyn_detailsChanging(value); + this._msdyn_details = value; + this.Onmsdyn_detailsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_dbversion; - partial void Onmsdyn_dbversionChanging(global::System.Nullable value); - partial void Onmsdyn_dbversionChanged(); + private string _msdyn_details; + partial void Onmsdyn_detailsChanging(string value); + partial void Onmsdyn_detailsChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -501575,49 +501641,49 @@ public static msdyn_upgradestep Createmsdyn_upgradestep(global::EMBC.ESS.Utiliti partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property msdyn_errors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual string msdyn_errors { get { - return this.__organizationid_value; + return this._msdyn_errors; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.Onmsdyn_errorsChanging(value); + this._msdyn_errors = value; + this.Onmsdyn_errorsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private string _msdyn_errors; + partial void Onmsdyn_errorsChanging(string value); + partial void Onmsdyn_errorsChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property msdyn_stepid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable msdyn_stepid { get { - return this._timezoneruleversionnumber; + return this._msdyn_stepid; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onmsdyn_stepidChanging(value); + this._msdyn_stepid = value; + this.Onmsdyn_stepidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _msdyn_stepid; + partial void Onmsdyn_stepidChanging(global::System.Nullable value); + partial void Onmsdyn_stepidChanged(); /// /// There are no comments for Property msdyn_status in the schema. /// @@ -501663,115 +501729,115 @@ public static msdyn_upgradestep Createmsdyn_upgradestep(global::EMBC.ESS.Utiliti partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._overriddencreatedon; + return this.__modifiedonbehalfby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property msdyn_details in the schema. + /// There are no comments for Property msdyn_dbversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_details + public virtual global::System.Nullable msdyn_dbversion { get { - return this._msdyn_details; + return this._msdyn_dbversion; } set { - this.Onmsdyn_detailsChanging(value); - this._msdyn_details = value; - this.Onmsdyn_detailsChanged(); + this.Onmsdyn_dbversionChanging(value); + this._msdyn_dbversion = value; + this.Onmsdyn_dbversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_details; - partial void Onmsdyn_detailsChanging(string value); - partial void Onmsdyn_detailsChanged(); + private global::System.Nullable _msdyn_dbversion; + partial void Onmsdyn_dbversionChanging(global::System.Nullable value); + partial void Onmsdyn_dbversionChanged(); /// - /// There are no comments for Property _msdyn_upgradeversion_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _msdyn_upgradeversion_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__msdyn_upgradeversion_value; + return this._importsequencenumber; } set { - this.On_msdyn_upgradeversion_valueChanging(value); - this.__msdyn_upgradeversion_value = value; - this.On_msdyn_upgradeversion_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __msdyn_upgradeversion_value; - partial void On_msdyn_upgradeversion_valueChanging(global::System.Nullable value); - partial void On_msdyn_upgradeversion_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._modifiedon; + return this._timezoneruleversionnumber; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property msdyn_errors in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string msdyn_errors + public virtual global::System.Nullable modifiedon { get { - return this._msdyn_errors; + return this._modifiedon; } set { - this.Onmsdyn_errorsChanging(value); - this._msdyn_errors = value; - this.Onmsdyn_errorsChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _msdyn_errors; - partial void Onmsdyn_errorsChanging(string value); - partial void Onmsdyn_errorsChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property msdyn_finished in the schema. /// @@ -501839,49 +501905,49 @@ public virtual string msdyn_errors partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__modifiedonbehalfby_value; + return this._overriddencreatedon; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _msdyn_upgradeversion_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _msdyn_upgradeversion_value { get { - return this._importsequencenumber; + return this.__msdyn_upgradeversion_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_msdyn_upgradeversion_valueChanging(value); + this.__msdyn_upgradeversion_value = value; + this.On_msdyn_upgradeversion_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __msdyn_upgradeversion_value; + partial void On_msdyn_upgradeversion_valueChanging(global::System.Nullable value); + partial void On_msdyn_upgradeversion_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -501905,27 +501971,27 @@ public virtual string msdyn_errors partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _organizationid_value { get { - return this._versionnumber; + return this.__organizationid_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -501993,27 +502059,27 @@ public virtual string msdyn_name partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property msdyn_stepid in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_stepid + public virtual global::System.Nullable versionnumber { get { - return this._msdyn_stepid; + return this._versionnumber; } set { - this.Onmsdyn_stepidChanging(value); - this._msdyn_stepid = value; - this.Onmsdyn_stepidChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_stepid; - partial void Onmsdyn_stepidChanging(global::System.Nullable value); - partial void Onmsdyn_stepidChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property msdyn_upgradestepid in the schema. /// @@ -502818,49 +502884,27 @@ public virtual string msdyn_summary partial void Onmsdyn_statusChanging(global::System.Nullable value); partial void Onmsdyn_statusChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__organizationid_value; + return this.__modifiedonbehalfby_value; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -502906,27 +502950,27 @@ public virtual string msdyn_summary partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property msdyn_finished in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_finished + public virtual global::System.Nullable _organizationid_value { get { - return this._msdyn_finished; + return this.__organizationid_value; } set { - this.Onmsdyn_finishedChanging(value); - this._msdyn_finished = value; - this.Onmsdyn_finishedChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_finished; - partial void Onmsdyn_finishedChanging(global::System.Nullable value); - partial void Onmsdyn_finishedChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property msdyn_targetversion in the schema. /// @@ -502950,27 +502994,27 @@ public virtual string msdyn_targetversion partial void Onmsdyn_targetversionChanging(string value); partial void Onmsdyn_targetversionChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property msdyn_finished in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable msdyn_finished { get { - return this._statuscode; + return this._msdyn_finished; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.Onmsdyn_finishedChanging(value); + this._msdyn_finished = value; + this.Onmsdyn_finishedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _msdyn_finished; + partial void Onmsdyn_finishedChanging(global::System.Nullable value); + partial void Onmsdyn_finishedChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -502994,49 +503038,49 @@ public virtual string msdyn_targetversion partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property msdyn_upgradeversionid in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_upgradeversionid + public virtual global::System.Nullable statuscode { get { - return this._msdyn_upgradeversionid; + return this._statuscode; } set { - this.Onmsdyn_upgradeversionidChanging(value); - this._msdyn_upgradeversionid = value; - this.Onmsdyn_upgradeversionidChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_upgradeversionid; - partial void Onmsdyn_upgradeversionidChanging(global::System.Nullable value); - partial void Onmsdyn_upgradeversionidChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property msdyn_upgradeversionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable msdyn_upgradeversionid { get { - return this.__modifiedonbehalfby_value; + return this._msdyn_upgradeversionid; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onmsdyn_upgradeversionidChanging(value); + this._msdyn_upgradeversionid = value; + this.Onmsdyn_upgradeversionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _msdyn_upgradeversionid; + partial void Onmsdyn_upgradeversionidChanging(global::System.Nullable value); + partial void Onmsdyn_upgradeversionidChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -503126,6 +503170,28 @@ public virtual string msdyn_startingversion partial void Onmsdyn_startingversionChanging(string value); partial void Onmsdyn_startingversionChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -503775,6 +503841,28 @@ public static msdyn_wallsavedquery Createmsdyn_wallsavedquery(global::EMBC.ESS.U return msdyn_wallsavedquery; } /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property msdyn_wallsavedqueryid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -503819,49 +503907,27 @@ public static msdyn_wallsavedquery Createmsdyn_wallsavedquery(global::EMBC.ESS.U partial void Onmsdyn_isvisiblebitChanging(global::System.Nullable value); partial void Onmsdyn_isvisiblebitChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property msdyn_isvirtual in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable msdyn_isvirtual { get { - return this._versionnumber; + return this._msdyn_isvirtual; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.Onmsdyn_isvirtualChanging(value); + this._msdyn_isvirtual = value; + this.Onmsdyn_isvirtualChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _msdyn_isvirtual; + partial void Onmsdyn_isvirtualChanging(global::System.Nullable value); + partial void Onmsdyn_isvirtualChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -503907,28 +503973,6 @@ public static msdyn_wallsavedquery Createmsdyn_wallsavedquery(global::EMBC.ESS.U partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property msdyn_entitydisplayname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -504061,6 +504105,28 @@ public virtual string msdyn_entityname partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _msdyn_postconfigurationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -504105,28 +504171,6 @@ public virtual string msdyn_entityname partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -504193,27 +504237,27 @@ public virtual string msdyn_entityname partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._importsequencenumber; + return this._utcconversiontimezonecode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -504237,49 +504281,71 @@ public virtual string msdyn_entityname partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property msdyn_isvirtual in the schema. + /// There are no comments for Property msdyn_isvisible in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isvirtual + public virtual global::System.Nullable msdyn_isvisible { get { - return this._msdyn_isvirtual; + return this._msdyn_isvisible; } set { - this.Onmsdyn_isvirtualChanging(value); - this._msdyn_isvirtual = value; - this.Onmsdyn_isvirtualChanged(); + this.Onmsdyn_isvisibleChanging(value); + this._msdyn_isvisible = value; + this.Onmsdyn_isvisibleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isvirtual; - partial void Onmsdyn_isvirtualChanging(global::System.Nullable value); - partial void Onmsdyn_isvirtualChanged(); + private global::System.Nullable _msdyn_isvisible; + partial void Onmsdyn_isvisibleChanging(global::System.Nullable value); + partial void Onmsdyn_isvisibleChanged(); /// - /// There are no comments for Property msdyn_isvisible in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_isvisible + public virtual global::System.Nullable _modifiedby_value { get { - return this._msdyn_isvisible; + return this.__modifiedby_value; } set { - this.Onmsdyn_isvisibleChanging(value); - this._msdyn_isvisible = value; - this.Onmsdyn_isvisibleChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isvisible; - partial void Onmsdyn_isvisibleChanging(global::System.Nullable value); - partial void Onmsdyn_isvisibleChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property msdyn_savedqueryid in the schema. /// @@ -505175,6 +505241,28 @@ public static msdyn_wallsavedqueryusersettings Createmsdyn_wallsavedqueryuserset partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// + /// There are no comments for Property msdyn_isvirtual in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable msdyn_isvirtual + { + get + { + return this._msdyn_isvirtual; + } + set + { + this.Onmsdyn_isvirtualChanging(value); + this._msdyn_isvirtual = value; + this.Onmsdyn_isvirtualChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _msdyn_isvirtual; + partial void Onmsdyn_isvirtualChanging(global::System.Nullable value); + partial void Onmsdyn_isvirtualChanged(); + /// /// There are no comments for Property msdyn_default in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -505505,28 +505593,6 @@ public virtual string msdyn_entityname partial void Onmsdyn_typeChanging(global::System.Nullable value); partial void Onmsdyn_typeChanged(); /// - /// There are no comments for Property msdyn_isvirtual in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable msdyn_isvirtual - { - get - { - return this._msdyn_isvirtual; - } - set - { - this.Onmsdyn_isvirtualChanging(value); - this._msdyn_isvirtual = value; - this.Onmsdyn_isvirtualChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_isvirtual; - partial void Onmsdyn_isvirtualChanging(global::System.Nullable value); - partial void Onmsdyn_isvirtualChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -506523,6 +506589,28 @@ public static msdynce_botcontent Createmsdynce_botcontent(global::EMBC.ESS.Utili return msdynce_botcontent; } /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -506611,28 +506699,6 @@ public static msdynce_botcontent Createmsdynce_botcontent(global::EMBC.ESS.Utili partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -506699,6 +506765,28 @@ public virtual string msdynce_botid partial void Onmsdynce_botidChanging(string value); partial void Onmsdynce_botidChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -506721,27 +506809,27 @@ public virtual string msdynce_botid partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__owningbusinessunit_value; + return this._importsequencenumber; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property msdynce_state in the schema. /// @@ -506765,115 +506853,115 @@ public virtual string msdynce_botid partial void Onmsdynce_stateChanging(global::System.Nullable value); partial void Onmsdynce_stateChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable statecode { get { - return this._utcconversiontimezonecode; + return this._statecode; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable createdon { get { - return this._importsequencenumber; + return this._createdon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._statecode; + return this.__owningbusinessunit_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _modifiedby_value { get { - return this._versionnumber; + return this.__modifiedby_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable versionnumber { get { - return this.__modifiedby_value; + return this._versionnumber; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property msdynce_botcontentid in the schema. /// @@ -506963,28 +507051,6 @@ public virtual string msdynce_botid partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -507577,6 +507643,28 @@ public static navigationsetting Createnavigationsetting(global::EMBC.ESS.Utiliti partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -507621,6 +507709,28 @@ public virtual string name partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// + /// There are no comments for Property advancedsettingorder in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable advancedsettingorder + { + get + { + return this._advancedsettingorder; + } + set + { + this.OnadvancedsettingorderChanging(value); + this._advancedsettingorder = value; + this.OnadvancedsettingorderChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _advancedsettingorder; + partial void OnadvancedsettingorderChanging(global::System.Nullable value); + partial void OnadvancedsettingorderChanged(); + /// /// There are no comments for Property settingtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -507687,71 +507797,71 @@ public virtual string name partial void OnresourceidChanging(global::System.Nullable value); partial void OnresourceidChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _appconfigid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _appconfigid_value { get { - return this.__createdonbehalfby_value; + return this.__appconfigid_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_appconfigid_valueChanging(value); + this.__appconfigid_value = value; + this.On_appconfigid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __appconfigid_value; + partial void On_appconfigid_valueChanging(global::System.Nullable value); + partial void On_appconfigid_valueChanged(); /// - /// There are no comments for Property privileges in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable privileges + public virtual global::System.Nullable modifiedon { get { - return this._privileges; + return this._modifiedon; } set { - this.OnprivilegesChanging(value); - this._privileges = value; - this.OnprivilegesChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _privileges; - partial void OnprivilegesChanging(global::System.Nullable value); - partial void OnprivilegesChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable createdon { get { - return this._importsequencenumber; + return this._createdon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -507775,71 +507885,49 @@ public virtual string name partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property advancedsettingorder in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable advancedsettingorder - { - get - { - return this._advancedsettingorder; - } - set - { - this.OnadvancedsettingorderChanging(value); - this._advancedsettingorder = value; - this.OnadvancedsettingorderChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _advancedsettingorder; - partial void OnadvancedsettingorderChanging(global::System.Nullable value); - partial void OnadvancedsettingorderChanged(); - /// - /// There are no comments for Property _appconfigid_value in the schema. + /// There are no comments for Property privileges in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _appconfigid_value + public virtual global::System.Nullable privileges { get { - return this.__appconfigid_value; + return this._privileges; } set { - this.On_appconfigid_valueChanging(value); - this.__appconfigid_value = value; - this.On_appconfigid_valueChanged(); + this.OnprivilegesChanging(value); + this._privileges = value; + this.OnprivilegesChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __appconfigid_value; - partial void On_appconfigid_valueChanging(global::System.Nullable value); - partial void On_appconfigid_valueChanged(); + private global::System.Nullable _privileges; + partial void OnprivilegesChanging(global::System.Nullable value); + partial void OnprivilegesChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property groupname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual string groupname { get { - return this._createdon; + return this._groupname; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OngroupnameChanging(value); + this._groupname = value; + this.OngroupnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private string _groupname; + partial void OngroupnameChanging(string value); + partial void OngroupnameChanged(); /// /// There are no comments for Property iconresourceid in the schema. /// @@ -507863,28 +507951,6 @@ public virtual string name partial void OniconresourceidChanging(global::System.Nullable value); partial void OniconresourceidChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -507929,49 +507995,49 @@ public virtual string name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property quicksettingorder in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable quicksettingorder + public virtual global::System.Nullable _modifiedby_value { get { - return this._quicksettingorder; + return this.__modifiedby_value; } set { - this.OnquicksettingorderChanging(value); - this._quicksettingorder = value; - this.OnquicksettingorderChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quicksettingorder; - partial void OnquicksettingorderChanging(global::System.Nullable value); - partial void OnquicksettingorderChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__modifiedby_value; + return this.__createdonbehalfby_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -507995,27 +508061,27 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._modifiedon; + return this.__modifiedonbehalfby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property pageurl in the schema. /// @@ -508039,27 +508105,27 @@ public virtual string pageurl partial void OnpageurlChanging(string value); partial void OnpageurlChanged(); /// - /// There are no comments for Property groupname in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string groupname + public virtual global::System.Nullable importsequencenumber { get { - return this._groupname; + return this._importsequencenumber; } set { - this.OngroupnameChanging(value); - this._groupname = value; - this.OngroupnameChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _groupname; - partial void OngroupnameChanging(string value); - partial void OngroupnameChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property objecttypecode in the schema. /// @@ -508083,28 +508149,6 @@ public virtual string groupname partial void OnobjecttypecodeChanging(global::System.Nullable value); partial void OnobjecttypecodeChanged(); /// - /// There are no comments for Property introducedversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string introducedversion - { - get - { - return this._introducedversion; - } - set - { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); - /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -508171,6 +508215,28 @@ public virtual string description partial void OnnavigationsettingiduniqueChanging(global::System.Nullable value); partial void OnnavigationsettingiduniqueChanged(); /// + /// There are no comments for Property quicksettingorder in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable quicksettingorder + { + get + { + return this._quicksettingorder; + } + set + { + this.OnquicksettingorderChanging(value); + this._quicksettingorder = value; + this.OnquicksettingorderChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _quicksettingorder; + partial void OnquicksettingorderChanging(global::System.Nullable value); + partial void OnquicksettingorderChanged(); + /// /// There are no comments for Property progressstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -508775,6 +508841,28 @@ public static adminsettingsentity Createadminsettingsentity(global::EMBC.ESS.Uti return adminsettingsentity; } /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -508819,93 +508907,93 @@ public static adminsettingsentity Createadminsettingsentity(global::EMBC.ESS.Uti partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property adminsettingsentityid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable adminsettingsentityid { get { - return this.__createdonbehalfby_value; + return this._adminsettingsentityid; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnadminsettingsentityidChanging(value); + this._adminsettingsentityid = value; + this.OnadminsettingsentityidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _adminsettingsentityid; + partial void OnadminsettingsentityidChanging(global::System.Nullable value); + partial void OnadminsettingsentityidChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable overriddencreatedon { get { - return this._timezoneruleversionnumber; + return this._overriddencreatedon; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__owningbusinessunit_value; + return this.__owningteam_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__owningteam_value; + return this._timezoneruleversionnumber; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -509061,28 +509149,6 @@ public virtual string new_name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -509127,49 +509193,49 @@ public virtual string new_name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property adminsettingsentityid in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable adminsettingsentityid + public virtual global::System.Nullable statuscode { get { - return this._adminsettingsentityid; + return this._statuscode; } set { - this.OnadminsettingsentityidChanging(value); - this._adminsettingsentityid = value; - this.OnadminsettingsentityidChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _adminsettingsentityid; - partial void OnadminsettingsentityidChanging(global::System.Nullable value); - partial void OnadminsettingsentityidChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._statuscode; + return this.__createdonbehalfby_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -509910,28 +509976,6 @@ public static newprocess Createnewprocess(global::EMBC.ESS.Utilities.Dynamics.Mi return newprocess; } /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -509976,28 +510020,6 @@ public static newprocess Createnewprocess(global::EMBC.ESS.Utilities.Dynamics.Mi partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -510020,49 +510042,49 @@ public static newprocess Createnewprocess(global::EMBC.ESS.Utilities.Dynamics.Mi partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property completedon in the schema. + /// There are no comments for Property _activestageid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable completedon + public virtual global::System.Nullable _activestageid_value { get { - return this._completedon; + return this.__activestageid_value; } set { - this.OncompletedonChanging(value); - this._completedon = value; - this.OncompletedonChanged(); + this.On_activestageid_valueChanging(value); + this.__activestageid_value = value; + this.On_activestageid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _completedon; - partial void OncompletedonChanging(global::System.Nullable value); - partial void OncompletedonChanged(); + private global::System.Nullable __activestageid_value; + partial void On_activestageid_valueChanging(global::System.Nullable value); + partial void On_activestageid_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _knowledgearticleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _knowledgearticleid_value { get { - return this._statecode; + return this.__knowledgearticleid_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_knowledgearticleid_valueChanging(value); + this.__knowledgearticleid_value = value; + this.On_knowledgearticleid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __knowledgearticleid_value; + partial void On_knowledgearticleid_valueChanging(global::System.Nullable value); + partial void On_knowledgearticleid_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -510130,6 +510152,28 @@ public static newprocess Createnewprocess(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnactivestagestartedonChanging(global::System.Nullable value); partial void OnactivestagestartedonChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -510240,71 +510284,93 @@ public static newprocess Createnewprocess(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _createdby_value { get { - return this._importsequencenumber; + return this.__createdby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable statecode { get { - return this._name; + return this._statecode; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property traversedpath in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string traversedpath + public virtual global::System.Nullable statuscode { get { - return this._traversedpath; + return this._statuscode; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// + /// There are no comments for Property businessprocessflowinstanceid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable businessprocessflowinstanceid + { + get + { + return this._businessprocessflowinstanceid; + } + set + { + this.OnbusinessprocessflowinstanceidChanging(value); + this._businessprocessflowinstanceid = value; + this.OnbusinessprocessflowinstanceidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _businessprocessflowinstanceid; + partial void OnbusinessprocessflowinstanceidChanging(global::System.Nullable value); + partial void OnbusinessprocessflowinstanceidChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -510328,27 +510394,27 @@ public virtual string traversedpath partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _knowledgearticleid_value in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _knowledgearticleid_value + public virtual string traversedpath { get { - return this.__knowledgearticleid_value; + return this._traversedpath; } set { - this.On_knowledgearticleid_valueChanging(value); - this.__knowledgearticleid_value = value; - this.On_knowledgearticleid_valueChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __knowledgearticleid_value; - partial void On_knowledgearticleid_valueChanging(global::System.Nullable value); - partial void On_knowledgearticleid_valueChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// /// There are no comments for Property _processid_value in the schema. /// @@ -510372,49 +510438,49 @@ public virtual string traversedpath partial void On_processid_valueChanging(global::System.Nullable value); partial void On_processid_valueChanged(); /// - /// There are no comments for Property _activestageid_value in the schema. + /// There are no comments for Property completedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _activestageid_value + public virtual global::System.Nullable completedon { get { - return this.__activestageid_value; + return this._completedon; } set { - this.On_activestageid_valueChanging(value); - this.__activestageid_value = value; - this.On_activestageid_valueChanged(); + this.OncompletedonChanging(value); + this._completedon = value; + this.OncompletedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __activestageid_value; - partial void On_activestageid_valueChanging(global::System.Nullable value); - partial void On_activestageid_valueChanged(); + private global::System.Nullable _completedon; + partial void OncompletedonChanging(global::System.Nullable value); + partial void OncompletedonChanged(); /// - /// There are no comments for Property businessprocessflowinstanceid in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable businessprocessflowinstanceid + public virtual global::System.Nullable importsequencenumber { get { - return this._businessprocessflowinstanceid; + return this._importsequencenumber; } set { - this.OnbusinessprocessflowinstanceidChanging(value); - this._businessprocessflowinstanceid = value; - this.OnbusinessprocessflowinstanceidChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _businessprocessflowinstanceid; - partial void OnbusinessprocessflowinstanceidChanging(global::System.Nullable value); - partial void OnbusinessprocessflowinstanceidChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property createdbyname in the schema. /// @@ -510840,27 +510906,49 @@ public static officegraphdocument Createofficegraphdocument(global::EMBC.ESS.Uti return officegraphdocument; } /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property documentid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string documentid { get { - return this.__modifiedonbehalfby_value; + return this._documentid; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OndocumentidChanging(value); + this._documentid = value; + this.OndocumentidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _documentid; + partial void OndocumentidChanging(string value); + partial void OndocumentidChanged(); + /// + /// There are no comments for Property authornames in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string authornames + { + get + { + return this._authornames; + } + set + { + this.OnauthornamesChanging(value); + this._authornames = value; + this.OnauthornamesChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _authornames; + partial void OnauthornamesChanging(string value); + partial void OnauthornamesChanged(); /// /// There are no comments for Property modifiedby in the schema. /// @@ -510950,27 +511038,27 @@ public virtual string readurl partial void OnreadurlChanging(string value); partial void OnreadurlChanged(); /// - /// There are no comments for Property viewcount in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable viewcount + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._viewcount; + return this.__transactioncurrencyid_value; } set { - this.OnviewcountChanging(value); - this._viewcount = value; - this.OnviewcountChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _viewcount; - partial void OnviewcountChanging(global::System.Nullable value); - partial void OnviewcountChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property sitetitle in the schema. /// @@ -510994,93 +511082,115 @@ public virtual string sitetitle partial void OnsitetitleChanging(string value); partial void OnsitetitleChanged(); /// - /// There are no comments for Property documentid in the schema. + /// There are no comments for Property title in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string documentid + public virtual string title { get { - return this._documentid; + return this._title; } set { - this.OndocumentidChanging(value); - this._documentid = value; - this.OndocumentidChanged(); + this.OntitleChanging(value); + this._title = value; + this.OntitleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _documentid; - partial void OndocumentidChanging(string value); - partial void OndocumentidChanged(); + private string _title; + partial void OntitleChanging(string value); + partial void OntitleChanged(); /// - /// There are no comments for Property authornames in the schema. + /// There are no comments for Property officegraphdocumentid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string authornames + public virtual global::System.Nullable officegraphdocumentid { get { - return this._authornames; + return this._officegraphdocumentid; } set { - this.OnauthornamesChanging(value); - this._authornames = value; - this.OnauthornamesChanged(); + this.OnofficegraphdocumentidChanging(value); + this._officegraphdocumentid = value; + this.OnofficegraphdocumentidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _authornames; - partial void OnauthornamesChanging(string value); - partial void OnauthornamesChanged(); + private global::System.Nullable _officegraphdocumentid; + partial void OnofficegraphdocumentidChanging(global::System.Nullable value); + partial void OnofficegraphdocumentidChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__transactioncurrencyid_value; + return this._timezoneruleversionnumber; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property documentpreviewmetadata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string documentpreviewmetadata { get { - return this.__createdonbehalfby_value; + return this._documentpreviewmetadata; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OndocumentpreviewmetadataChanging(value); + this._documentpreviewmetadata = value; + this.OndocumentpreviewmetadataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _documentpreviewmetadata; + partial void OndocumentpreviewmetadataChanging(string value); + partial void OndocumentpreviewmetadataChanged(); + /// + /// There are no comments for Property modifiedtime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedtime + { + get + { + return this._modifiedtime; + } + set + { + this.OnmodifiedtimeChanging(value); + this._modifiedtime = value; + this.OnmodifiedtimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedtime; + partial void OnmodifiedtimeChanging(global::System.Nullable value); + partial void OnmodifiedtimeChanged(); /// /// There are no comments for Property createdtime in the schema. /// @@ -511104,27 +511214,27 @@ public virtual string authornames partial void OncreatedtimeChanging(global::System.Nullable value); partial void OncreatedtimeChanged(); /// - /// There are no comments for Property documentpreviewmetadata in the schema. + /// There are no comments for Property weblocationurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string documentpreviewmetadata + public virtual string weblocationurl { get { - return this._documentpreviewmetadata; + return this._weblocationurl; } set { - this.OndocumentpreviewmetadataChanging(value); - this._documentpreviewmetadata = value; - this.OndocumentpreviewmetadataChanged(); + this.OnweblocationurlChanging(value); + this._weblocationurl = value; + this.OnweblocationurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _documentpreviewmetadata; - partial void OndocumentpreviewmetadataChanging(string value); - partial void OndocumentpreviewmetadataChanged(); + private string _weblocationurl; + partial void OnweblocationurlChanging(string value); + partial void OnweblocationurlChanged(); /// /// There are no comments for Property documentlastmodifiedon in the schema. /// @@ -511192,71 +511302,27 @@ public virtual string previewimageurl partial void OnrankChanging(global::System.Nullable value); partial void OnrankChanged(); /// - /// There are no comments for Property title in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string title - { - get - { - return this._title; - } - set - { - this.OntitleChanging(value); - this._title = value; - this.OntitleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _title; - partial void OntitleChanging(string value); - partial void OntitleChanged(); - /// - /// There are no comments for Property modifiedtime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedtime - { - get - { - return this._modifiedtime; - } - set - { - this.OnmodifiedtimeChanging(value); - this._modifiedtime = value; - this.OnmodifiedtimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedtime; - partial void OnmodifiedtimeChanging(global::System.Nullable value); - partial void OnmodifiedtimeChanged(); - /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property filetype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string filetype { get { - return this._utcconversiontimezonecode; + return this._filetype; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnfiletypeChanging(value); + this._filetype = value; + this.OnfiletypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _filetype; + partial void OnfiletypeChanging(string value); + partial void OnfiletypeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -511346,115 +511412,115 @@ public virtual string secondaryfileextension partial void OnquerytypeChanging(global::System.Nullable value); partial void OnquerytypeChanged(); /// - /// There are no comments for Property weblocationurl in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string weblocationurl + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._weblocationurl; + return this._utcconversiontimezonecode; } set { - this.OnweblocationurlChanging(value); - this._weblocationurl = value; - this.OnweblocationurlChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _weblocationurl; - partial void OnweblocationurlChanging(string value); - partial void OnweblocationurlChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property filetype in the schema. + /// There are no comments for Property siteurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string filetype + public virtual string siteurl { get { - return this._filetype; + return this._siteurl; } set { - this.OnfiletypeChanging(value); - this._filetype = value; - this.OnfiletypeChanged(); + this.OnsiteurlChanging(value); + this._siteurl = value; + this.OnsiteurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _filetype; - partial void OnfiletypeChanging(string value); - partial void OnfiletypeChanged(); + private string _siteurl; + partial void OnsiteurlChanging(string value); + partial void OnsiteurlChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._timezoneruleversionnumber; + return this.__modifiedonbehalfby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property siteurl in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string siteurl + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._siteurl; + return this.__createdonbehalfby_value; } set { - this.OnsiteurlChanging(value); - this._siteurl = value; - this.OnsiteurlChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _siteurl; - partial void OnsiteurlChanging(string value); - partial void OnsiteurlChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property officegraphdocumentid in the schema. + /// There are no comments for Property viewcount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable officegraphdocumentid + public virtual global::System.Nullable viewcount { get { - return this._officegraphdocumentid; + return this._viewcount; } set { - this.OnofficegraphdocumentidChanging(value); - this._officegraphdocumentid = value; - this.OnofficegraphdocumentidChanged(); + this.OnviewcountChanging(value); + this._viewcount = value; + this.OnviewcountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _officegraphdocumentid; - partial void OnofficegraphdocumentidChanging(global::System.Nullable value); - partial void OnofficegraphdocumentidChanged(); + private global::System.Nullable _viewcount; + partial void OnviewcountChanging(global::System.Nullable value); + partial void OnviewcountChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -513069,27 +513135,49 @@ public static opportunity Createopportunity(global::EMBC.ESS.Utilities.Dynamics. return opportunity; } /// - /// There are no comments for Property discountamount in the schema. + /// There are no comments for Property actualvalue_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable discountamount + public virtual global::System.Nullable actualvalue_base { get { - return this._discountamount; + return this._actualvalue_base; } set { - this.OndiscountamountChanging(value); - this._discountamount = value; - this.OndiscountamountChanged(); + this.Onactualvalue_baseChanging(value); + this._actualvalue_base = value; + this.Onactualvalue_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _discountamount; - partial void OndiscountamountChanging(global::System.Nullable value); - partial void OndiscountamountChanged(); + private global::System.Nullable _actualvalue_base; + partial void Onactualvalue_baseChanging(global::System.Nullable value); + partial void Onactualvalue_baseChanged(); + /// + /// There are no comments for Property _customerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _customerid_value + { + get + { + return this.__customerid_value; + } + set + { + this.On_customerid_valueChanging(value); + this.__customerid_value = value; + this.On_customerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __customerid_value; + partial void On_customerid_valueChanging(global::System.Nullable value); + partial void On_customerid_valueChanged(); /// /// There are no comments for Property decisionmaker in the schema. /// @@ -513135,27 +513223,71 @@ public static opportunity Createopportunity(global::EMBC.ESS.Utilities.Dynamics. partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property purchaseprocess in the schema. + /// There are no comments for Property initialcommunication in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable purchaseprocess + public virtual global::System.Nullable initialcommunication { get { - return this._purchaseprocess; + return this._initialcommunication; } set { - this.OnpurchaseprocessChanging(value); - this._purchaseprocess = value; - this.OnpurchaseprocessChanged(); + this.OninitialcommunicationChanging(value); + this._initialcommunication = value; + this.OninitialcommunicationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _purchaseprocess; - partial void OnpurchaseprocessChanging(global::System.Nullable value); - partial void OnpurchaseprocessChanged(); + private global::System.Nullable _initialcommunication; + partial void OninitialcommunicationChanging(global::System.Nullable value); + partial void OninitialcommunicationChanged(); + /// + /// There are no comments for Property totalamountlessfreight in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable totalamountlessfreight + { + get + { + return this._totalamountlessfreight; + } + set + { + this.OntotalamountlessfreightChanging(value); + this._totalamountlessfreight = value; + this.OntotalamountlessfreightChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _totalamountlessfreight; + partial void OntotalamountlessfreightChanging(global::System.Nullable value); + partial void OntotalamountlessfreightChanged(); + /// + /// There are no comments for Property closeprobability in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable closeprobability + { + get + { + return this._closeprobability; + } + set + { + this.OncloseprobabilityChanging(value); + this._closeprobability = value; + this.OncloseprobabilityChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _closeprobability; + partial void OncloseprobabilityChanging(global::System.Nullable value); + partial void OncloseprobabilityChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -513201,49 +513333,27 @@ public static opportunity Createopportunity(global::EMBC.ESS.Utilities.Dynamics. partial void OnsendthankyounoteChanging(global::System.Nullable value); partial void OnsendthankyounoteChanged(); /// - /// There are no comments for Property actualvalue in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable actualvalue - { - get - { - return this._actualvalue; - } - set - { - this.OnactualvalueChanging(value); - this._actualvalue = value; - this.OnactualvalueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualvalue; - partial void OnactualvalueChanging(global::System.Nullable value); - partial void OnactualvalueChanged(); - /// - /// There are no comments for Property timespentbymeonemailandmeetings in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string timespentbymeonemailandmeetings + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._timespentbymeonemailandmeetings; + return this.__transactioncurrencyid_value; } set { - this.OntimespentbymeonemailandmeetingsChanging(value); - this._timespentbymeonemailandmeetings = value; - this.OntimespentbymeonemailandmeetingsChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _timespentbymeonemailandmeetings; - partial void OntimespentbymeonemailandmeetingsChanging(string value); - partial void OntimespentbymeonemailandmeetingsChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property finaldecisiondate in the schema. /// @@ -513267,71 +513377,49 @@ public virtual string timespentbymeonemailandmeetings partial void OnfinaldecisiondateChanging(global::System.Nullable value); partial void OnfinaldecisiondateChanged(); /// - /// There are no comments for Property lastonholdtime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable lastonholdtime - { - get - { - return this._lastonholdtime; - } - set - { - this.OnlastonholdtimeChanging(value); - this._lastonholdtime = value; - this.OnlastonholdtimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastonholdtime; - partial void OnlastonholdtimeChanging(global::System.Nullable value); - partial void OnlastonholdtimeChanged(); - /// - /// There are no comments for Property budgetstatus in the schema. + /// There are no comments for Property isrevenuesystemcalculated in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable budgetstatus + public virtual global::System.Nullable isrevenuesystemcalculated { get { - return this._budgetstatus; + return this._isrevenuesystemcalculated; } set { - this.OnbudgetstatusChanging(value); - this._budgetstatus = value; - this.OnbudgetstatusChanged(); + this.OnisrevenuesystemcalculatedChanging(value); + this._isrevenuesystemcalculated = value; + this.OnisrevenuesystemcalculatedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _budgetstatus; - partial void OnbudgetstatusChanging(global::System.Nullable value); - partial void OnbudgetstatusChanged(); + private global::System.Nullable _isrevenuesystemcalculated; + partial void OnisrevenuesystemcalculatedChanging(global::System.Nullable value); + partial void OnisrevenuesystemcalculatedChanged(); /// - /// There are no comments for Property _campaignid_value in the schema. + /// There are no comments for Property totalamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _campaignid_value + public virtual global::System.Nullable totalamount_base { get { - return this.__campaignid_value; + return this._totalamount_base; } set { - this.On_campaignid_valueChanging(value); - this.__campaignid_value = value; - this.On_campaignid_valueChanged(); + this.Ontotalamount_baseChanging(value); + this._totalamount_base = value; + this.Ontotalamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __campaignid_value; - partial void On_campaignid_valueChanging(global::System.Nullable value); - partial void On_campaignid_valueChanged(); + private global::System.Nullable _totalamount_base; + partial void Ontotalamount_baseChanging(global::System.Nullable value); + partial void Ontotalamount_baseChanged(); /// /// There are no comments for Property totallineitemamount in the schema. /// @@ -513355,6 +513443,50 @@ public virtual string timespentbymeonemailandmeetings partial void OntotallineitemamountChanging(global::System.Nullable value); partial void OntotallineitemamountChanged(); /// + /// There are no comments for Property presentproposal in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable presentproposal + { + get + { + return this._presentproposal; + } + set + { + this.OnpresentproposalChanging(value); + this._presentproposal = value; + this.OnpresentproposalChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _presentproposal; + partial void OnpresentproposalChanging(global::System.Nullable value); + partial void OnpresentproposalChanged(); + /// + /// There are no comments for Property budgetstatus in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable budgetstatus + { + get + { + return this._budgetstatus; + } + set + { + this.OnbudgetstatusChanging(value); + this._budgetstatus = value; + this.OnbudgetstatusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _budgetstatus; + partial void OnbudgetstatusChanging(global::System.Nullable value); + partial void OnbudgetstatusChanged(); + /// /// There are no comments for Property timeline in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -513377,27 +513509,49 @@ public virtual string timespentbymeonemailandmeetings partial void OntimelineChanging(global::System.Nullable value); partial void OntimelineChanged(); /// - /// There are no comments for Property salesstagecode in the schema. + /// There are no comments for Property customerneed in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable salesstagecode + public virtual string customerneed { get { - return this._salesstagecode; + return this._customerneed; } set { - this.OnsalesstagecodeChanging(value); - this._salesstagecode = value; - this.OnsalesstagecodeChanged(); + this.OncustomerneedChanging(value); + this._customerneed = value; + this.OncustomerneedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _salesstagecode; - partial void OnsalesstagecodeChanging(global::System.Nullable value); - partial void OnsalesstagecodeChanged(); + private string _customerneed; + partial void OncustomerneedChanging(string value); + partial void OncustomerneedChanged(); + /// + /// There are no comments for Property pricingerrorcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable pricingerrorcode + { + get + { + return this._pricingerrorcode; + } + set + { + this.OnpricingerrorcodeChanging(value); + this._pricingerrorcode = value; + this.OnpricingerrorcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _pricingerrorcode; + partial void OnpricingerrorcodeChanging(global::System.Nullable value); + partial void OnpricingerrorcodeChanged(); /// /// There are no comments for Property budgetamount_base in the schema. /// @@ -513421,6 +513575,28 @@ public virtual string timespentbymeonemailandmeetings partial void Onbudgetamount_baseChanging(global::System.Nullable value); partial void Onbudgetamount_baseChanged(); /// + /// There are no comments for Property evaluatefit in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable evaluatefit + { + get + { + return this._evaluatefit; + } + set + { + this.OnevaluatefitChanging(value); + this._evaluatefit = value; + this.OnevaluatefitChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _evaluatefit; + partial void OnevaluatefitChanging(global::System.Nullable value); + partial void OnevaluatefitChanged(); + /// /// There are no comments for Property skippricecalculation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -513575,49 +513751,27 @@ public virtual string timespentbymeonemailandmeetings partial void OncompletefinalproposalChanging(global::System.Nullable value); partial void OncompletefinalproposalChanged(); /// - /// There are no comments for Property participatesinworkflow in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable participatesinworkflow - { - get - { - return this._participatesinworkflow; - } - set - { - this.OnparticipatesinworkflowChanging(value); - this._participatesinworkflow = value; - this.OnparticipatesinworkflowChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _participatesinworkflow; - partial void OnparticipatesinworkflowChanging(global::System.Nullable value); - partial void OnparticipatesinworkflowChanged(); - /// - /// There are no comments for Property _accountid_value in the schema. + /// There are no comments for Property schedulefollowup_qualify in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _accountid_value + public virtual global::System.Nullable schedulefollowup_qualify { get { - return this.__accountid_value; + return this._schedulefollowup_qualify; } set { - this.On_accountid_valueChanging(value); - this.__accountid_value = value; - this.On_accountid_valueChanged(); + this.Onschedulefollowup_qualifyChanging(value); + this._schedulefollowup_qualify = value; + this.Onschedulefollowup_qualifyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __accountid_value; - partial void On_accountid_valueChanging(global::System.Nullable value); - partial void On_accountid_valueChanged(); + private global::System.Nullable _schedulefollowup_qualify; + partial void Onschedulefollowup_qualifyChanging(global::System.Nullable value); + partial void Onschedulefollowup_qualifyChanged(); /// /// There are no comments for Property customerpainpoints in the schema. /// @@ -513641,28 +513795,6 @@ public virtual string customerpainpoints partial void OncustomerpainpointsChanging(string value); partial void OncustomerpainpointsChanged(); /// - /// There are no comments for Property isrevenuesystemcalculated in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isrevenuesystemcalculated - { - get - { - return this._isrevenuesystemcalculated; - } - set - { - this.OnisrevenuesystemcalculatedChanging(value); - this._isrevenuesystemcalculated = value; - this.OnisrevenuesystemcalculatedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isrevenuesystemcalculated; - partial void OnisrevenuesystemcalculatedChanging(global::System.Nullable value); - partial void OnisrevenuesystemcalculatedChanged(); - /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -513685,27 +513817,27 @@ public virtual string customerpainpoints partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property pricingerrorcode in the schema. + /// There are no comments for Property totaltax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pricingerrorcode + public virtual global::System.Nullable totaltax { get { - return this._pricingerrorcode; + return this._totaltax; } set { - this.OnpricingerrorcodeChanging(value); - this._pricingerrorcode = value; - this.OnpricingerrorcodeChanged(); + this.OntotaltaxChanging(value); + this._totaltax = value; + this.OntotaltaxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pricingerrorcode; - partial void OnpricingerrorcodeChanging(global::System.Nullable value); - partial void OnpricingerrorcodeChanged(); + private global::System.Nullable _totaltax; + partial void OntotaltaxChanging(global::System.Nullable value); + partial void OntotaltaxChanged(); /// /// There are no comments for Property identifycompetitors in the schema. /// @@ -513729,28 +513861,6 @@ public virtual string customerpainpoints partial void OnidentifycompetitorsChanging(global::System.Nullable value); partial void OnidentifycompetitorsChanged(); /// - /// There are no comments for Property initialcommunication in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable initialcommunication - { - get - { - return this._initialcommunication; - } - set - { - this.OninitialcommunicationChanging(value); - this._initialcommunication = value; - this.OninitialcommunicationChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _initialcommunication; - partial void OninitialcommunicationChanging(global::System.Nullable value); - partial void OninitialcommunicationChanged(); - /// /// There are no comments for Property totallineitemdiscountamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -513795,50 +513905,6 @@ public virtual string customerpainpoints partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property totallineitemdiscountamount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable totallineitemdiscountamount - { - get - { - return this._totallineitemdiscountamount; - } - set - { - this.OntotallineitemdiscountamountChanging(value); - this._totallineitemdiscountamount = value; - this.OntotallineitemdiscountamountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totallineitemdiscountamount; - partial void OntotallineitemdiscountamountChanging(global::System.Nullable value); - partial void OntotallineitemdiscountamountChanged(); - /// - /// There are no comments for Property totaldiscountamount_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable totaldiscountamount_base - { - get - { - return this._totaldiscountamount_base; - } - set - { - this.Ontotaldiscountamount_baseChanging(value); - this._totaldiscountamount_base = value; - this.Ontotaldiscountamount_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totaldiscountamount_base; - partial void Ontotaldiscountamount_baseChanging(global::System.Nullable value); - partial void Ontotaldiscountamount_baseChanged(); - /// /// There are no comments for Property need in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -513883,49 +513949,27 @@ public virtual string customerpainpoints partial void OncompleteinternalreviewChanging(global::System.Nullable value); partial void OncompleteinternalreviewChanged(); /// - /// There are no comments for Property evaluatefit in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable evaluatefit - { - get - { - return this._evaluatefit; - } - set - { - this.OnevaluatefitChanging(value); - this._evaluatefit = value; - this.OnevaluatefitChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _evaluatefit; - partial void OnevaluatefitChanging(global::System.Nullable value); - partial void OnevaluatefitChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property currentsituation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string currentsituation { get { - return this.__modifiedonbehalfby_value; + return this._currentsituation; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OncurrentsituationChanging(value); + this._currentsituation = value; + this.OncurrentsituationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _currentsituation; + partial void OncurrentsituationChanging(string value); + partial void OncurrentsituationChanged(); /// /// There are no comments for Property freightamount_base in the schema. /// @@ -513971,49 +514015,27 @@ public virtual string customerpainpoints partial void Ondiscountamount_baseChanging(global::System.Nullable value); partial void Ondiscountamount_baseChanged(); /// - /// There are no comments for Property salesstage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable salesstage - { - get - { - return this._salesstage; - } - set - { - this.OnsalesstageChanging(value); - this._salesstage = value; - this.OnsalesstageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _salesstage; - partial void OnsalesstageChanging(global::System.Nullable value); - partial void OnsalesstageChanged(); - /// - /// There are no comments for Property filedebrief in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable filedebrief + public virtual global::System.Nullable importsequencenumber { get { - return this._filedebrief; + return this._importsequencenumber; } set { - this.OnfiledebriefChanging(value); - this._filedebrief = value; - this.OnfiledebriefChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _filedebrief; - partial void OnfiledebriefChanging(global::System.Nullable value); - partial void OnfiledebriefChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _parentcontactid_value in the schema. /// @@ -514037,27 +514059,27 @@ public virtual string customerpainpoints partial void On_parentcontactid_valueChanging(global::System.Nullable value); partial void On_parentcontactid_valueChanged(); /// - /// There are no comments for Property currentsituation in the schema. + /// There are no comments for Property _campaignid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string currentsituation + public virtual global::System.Nullable _campaignid_value { get { - return this._currentsituation; + return this.__campaignid_value; } set { - this.OncurrentsituationChanging(value); - this._currentsituation = value; - this.OncurrentsituationChanged(); + this.On_campaignid_valueChanging(value); + this.__campaignid_value = value; + this.On_campaignid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _currentsituation; - partial void OncurrentsituationChanging(string value); - partial void OncurrentsituationChanged(); + private global::System.Nullable __campaignid_value; + partial void On_campaignid_valueChanging(global::System.Nullable value); + partial void On_campaignid_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -514081,6 +514103,72 @@ public virtual string currentsituation partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property teamsfollowed in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable teamsfollowed + { + get + { + return this._teamsfollowed; + } + set + { + this.OnteamsfollowedChanging(value); + this._teamsfollowed = value; + this.OnteamsfollowedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _teamsfollowed; + partial void OnteamsfollowedChanging(global::System.Nullable value); + partial void OnteamsfollowedChanged(); + /// + /// There are no comments for Property estimatedvalue in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable estimatedvalue + { + get + { + return this._estimatedvalue; + } + set + { + this.OnestimatedvalueChanging(value); + this._estimatedvalue = value; + this.OnestimatedvalueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _estimatedvalue; + partial void OnestimatedvalueChanging(global::System.Nullable value); + partial void OnestimatedvalueChanged(); + /// + /// There are no comments for Property traversedpath in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string traversedpath + { + get + { + return this._traversedpath; + } + set + { + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); + /// /// There are no comments for Property captureproposalfeedback in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514103,27 +514191,49 @@ public virtual string currentsituation partial void OncaptureproposalfeedbackChanging(global::System.Nullable value); partial void OncaptureproposalfeedbackChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable stageid { get { - return this.__ownerid_value; + return this._stageid; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _stageid; + partial void OnstageidChanging(global::System.Nullable value); + partial void OnstageidChanged(); + /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property _contactid_value in the schema. /// @@ -514147,6 +514257,28 @@ public virtual string currentsituation partial void On_contactid_valueChanging(global::System.Nullable value); partial void On_contactid_valueChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514257,28 +514389,6 @@ public virtual string name partial void OnopportunityidChanging(global::System.Nullable value); partial void OnopportunityidChanged(); /// - /// There are no comments for Property _customerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _customerid_value - { - get - { - return this.__customerid_value; - } - set - { - this.On_customerid_valueChanging(value); - this.__customerid_value = value; - this.On_customerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __customerid_value; - partial void On_customerid_valueChanging(global::System.Nullable value); - partial void On_customerid_valueChanged(); - /// /// There are no comments for Property _slaid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514301,50 +514411,6 @@ public virtual string name partial void On_slaid_valueChanging(global::System.Nullable value); partial void On_slaid_valueChanged(); /// - /// There are no comments for Property actualclosedate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable actualclosedate - { - get - { - return this._actualclosedate; - } - set - { - this.OnactualclosedateChanging(value); - this._actualclosedate = value; - this.OnactualclosedateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualclosedate; - partial void OnactualclosedateChanging(global::System.Nullable value); - partial void OnactualclosedateChanged(); - /// - /// There are no comments for Property estimatedvalue in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable estimatedvalue - { - get - { - return this._estimatedvalue; - } - set - { - this.OnestimatedvalueChanging(value); - this._estimatedvalue = value; - this.OnestimatedvalueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _estimatedvalue; - partial void OnestimatedvalueChanging(global::System.Nullable value); - partial void OnestimatedvalueChanged(); - /// /// There are no comments for Property totalamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514367,27 +514433,27 @@ public virtual string name partial void OntotalamountChanging(global::System.Nullable value); partial void OntotalamountChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property totaldiscountamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable totaldiscountamount_base { get { - return this._exchangerate; + return this._totaldiscountamount_base; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.Ontotaldiscountamount_baseChanging(value); + this._totaldiscountamount_base = value; + this.Ontotaldiscountamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _totaldiscountamount_base; + partial void Ontotaldiscountamount_baseChanging(global::System.Nullable value); + partial void Ontotaldiscountamount_baseChanged(); /// /// There are no comments for Property onholdtime in the schema. /// @@ -514411,27 +514477,49 @@ public virtual string name partial void OnonholdtimeChanging(global::System.Nullable value); partial void OnonholdtimeChanged(); /// - /// There are no comments for Property stageid in the schema. + /// There are no comments for Property estimatedclosedate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable stageid + public virtual global::System.Nullable estimatedclosedate { get { - return this._stageid; + return this._estimatedclosedate; } set { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); + this.OnestimatedclosedateChanging(value); + this._estimatedclosedate = value; + this.OnestimatedclosedateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stageid; - partial void OnstageidChanging(global::System.Nullable value); - partial void OnstageidChanged(); + private global::System.Nullable _estimatedclosedate; + partial void OnestimatedclosedateChanging(global::System.Nullable value); + partial void OnestimatedclosedateChanged(); + /// + /// There are no comments for Property discountamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable discountamount + { + get + { + return this._discountamount; + } + set + { + this.OndiscountamountChanging(value); + this._discountamount = value; + this.OndiscountamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _discountamount; + partial void OndiscountamountChanging(global::System.Nullable value); + partial void OndiscountamountChanged(); /// /// There are no comments for Property emailaddress in the schema. /// @@ -514455,6 +514543,28 @@ public virtual string emailaddress partial void OnemailaddressChanging(string value); partial void OnemailaddressChanged(); /// + /// There are no comments for Property actualclosedate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable actualclosedate + { + get + { + return this._actualclosedate; + } + set + { + this.OnactualclosedateChanging(value); + this._actualclosedate = value; + this.OnactualclosedateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _actualclosedate; + partial void OnactualclosedateChanging(global::System.Nullable value); + partial void OnactualclosedateChanged(); + /// /// There are no comments for Property totalamountlessfreight_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514477,6 +514587,28 @@ public virtual string emailaddress partial void Ontotalamountlessfreight_baseChanging(global::System.Nullable value); partial void Ontotalamountlessfreight_baseChanged(); /// + /// There are no comments for Property totallineitemdiscountamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable totallineitemdiscountamount + { + get + { + return this._totallineitemdiscountamount; + } + set + { + this.OntotallineitemdiscountamountChanging(value); + this._totallineitemdiscountamount = value; + this.OntotallineitemdiscountamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _totallineitemdiscountamount; + partial void OntotallineitemdiscountamountChanging(global::System.Nullable value); + partial void OntotallineitemdiscountamountChanged(); + /// /// There are no comments for Property scheduleproposalmeeting in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514499,27 +514631,27 @@ public virtual string emailaddress partial void OnscheduleproposalmeetingChanging(global::System.Nullable value); partial void OnscheduleproposalmeetingChanged(); /// - /// There are no comments for Property presentproposal in the schema. + /// There are no comments for Property purchaseprocess in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable presentproposal + public virtual global::System.Nullable purchaseprocess { get { - return this._presentproposal; + return this._purchaseprocess; } set { - this.OnpresentproposalChanging(value); - this._presentproposal = value; - this.OnpresentproposalChanged(); + this.OnpurchaseprocessChanging(value); + this._purchaseprocess = value; + this.OnpurchaseprocessChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _presentproposal; - partial void OnpresentproposalChanging(global::System.Nullable value); - partial void OnpresentproposalChanged(); + private global::System.Nullable _purchaseprocess; + partial void OnpurchaseprocessChanging(global::System.Nullable value); + partial void OnpurchaseprocessChanged(); /// /// There are no comments for Property _slainvokedid_value in the schema. /// @@ -514543,28 +514675,6 @@ public virtual string emailaddress partial void On_slainvokedid_valueChanging(global::System.Nullable value); partial void On_slainvokedid_valueChanged(); /// - /// There are no comments for Property totalamount_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable totalamount_base - { - get - { - return this._totalamount_base; - } - set - { - this.Ontotalamount_baseChanging(value); - this._totalamount_base = value; - this.Ontotalamount_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totalamount_base; - partial void Ontotalamount_baseChanging(global::System.Nullable value); - partial void Ontotalamount_baseChanged(); - /// /// There are no comments for Property totallineitemamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514609,49 +514719,49 @@ public virtual string emailaddress partial void OnpresentfinalproposalChanging(global::System.Nullable value); partial void OnpresentfinalproposalChanged(); /// - /// There are no comments for Property schedulefollowup_qualify in the schema. + /// There are no comments for Property timespentbymeonemailandmeetings in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable schedulefollowup_qualify + public virtual string timespentbymeonemailandmeetings { get { - return this._schedulefollowup_qualify; + return this._timespentbymeonemailandmeetings; } set { - this.Onschedulefollowup_qualifyChanging(value); - this._schedulefollowup_qualify = value; - this.Onschedulefollowup_qualifyChanged(); + this.OntimespentbymeonemailandmeetingsChanging(value); + this._timespentbymeonemailandmeetings = value; + this.OntimespentbymeonemailandmeetingsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _schedulefollowup_qualify; - partial void Onschedulefollowup_qualifyChanging(global::System.Nullable value); - partial void Onschedulefollowup_qualifyChanged(); + private string _timespentbymeonemailandmeetings; + partial void OntimespentbymeonemailandmeetingsChanging(string value); + partial void OntimespentbymeonemailandmeetingsChanged(); /// - /// There are no comments for Property confirminterest in the schema. + /// There are no comments for Property actualvalue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable confirminterest + public virtual global::System.Nullable actualvalue { get { - return this._confirminterest; + return this._actualvalue; } set { - this.OnconfirminterestChanging(value); - this._confirminterest = value; - this.OnconfirminterestChanged(); + this.OnactualvalueChanging(value); + this._actualvalue = value; + this.OnactualvalueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _confirminterest; - partial void OnconfirminterestChanging(global::System.Nullable value); - partial void OnconfirminterestChanged(); + private global::System.Nullable _actualvalue; + partial void OnactualvalueChanging(global::System.Nullable value); + partial void OnactualvalueChanged(); /// /// There are no comments for Property budgetamount in the schema. /// @@ -514697,6 +514807,28 @@ public virtual string emailaddress partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property salesstagecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable salesstagecode + { + get + { + return this._salesstagecode; + } + set + { + this.OnsalesstagecodeChanging(value); + this._salesstagecode = value; + this.OnsalesstagecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _salesstagecode; + partial void OnsalesstagecodeChanging(global::System.Nullable value); + partial void OnsalesstagecodeChanged(); + /// /// There are no comments for Property stepname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514763,28 +514895,6 @@ public virtual string stepname partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property estimatedvalue_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable estimatedvalue_base - { - get - { - return this._estimatedvalue_base; - } - set - { - this.Onestimatedvalue_baseChanging(value); - this._estimatedvalue_base = value; - this.Onestimatedvalue_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _estimatedvalue_base; - partial void Onestimatedvalue_baseChanging(global::System.Nullable value); - partial void Onestimatedvalue_baseChanged(); - /// /// There are no comments for Property qualificationcomments in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -514829,49 +514939,27 @@ public virtual string qualificationcomments partial void OnprocessidChanging(global::System.Nullable value); partial void OnprocessidChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// - /// There are no comments for Property totaltax in the schema. + /// There are no comments for Property estimatedvalue_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable totaltax + public virtual global::System.Nullable estimatedvalue_base { get { - return this._totaltax; + return this._estimatedvalue_base; } set { - this.OntotaltaxChanging(value); - this._totaltax = value; - this.OntotaltaxChanged(); + this.Onestimatedvalue_baseChanging(value); + this._estimatedvalue_base = value; + this.Onestimatedvalue_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totaltax; - partial void OntotaltaxChanging(global::System.Nullable value); - partial void OntotaltaxChanged(); + private global::System.Nullable _estimatedvalue_base; + partial void Onestimatedvalue_baseChanging(global::System.Nullable value); + partial void Onestimatedvalue_baseChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -514939,225 +515027,225 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property stepid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable stepid { get { - return this._importsequencenumber; + return this._stepid; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnstepidChanging(value); + this._stepid = value; + this.OnstepidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _stepid; + partial void OnstepidChanging(global::System.Nullable value); + partial void OnstepidChanged(); /// - /// There are no comments for Property closeprobability in the schema. + /// There are no comments for Property identifypursuitteam in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable closeprobability + public virtual global::System.Nullable identifypursuitteam { get { - return this._closeprobability; + return this._identifypursuitteam; } set { - this.OncloseprobabilityChanging(value); - this._closeprobability = value; - this.OncloseprobabilityChanged(); + this.OnidentifypursuitteamChanging(value); + this._identifypursuitteam = value; + this.OnidentifypursuitteamChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _closeprobability; - partial void OncloseprobabilityChanging(global::System.Nullable value); - partial void OncloseprobabilityChanged(); + private global::System.Nullable _identifypursuitteam; + partial void OnidentifypursuitteamChanging(global::System.Nullable value); + partial void OnidentifypursuitteamChanged(); /// - /// There are no comments for Property customerneed in the schema. + /// There are no comments for Property identifycustomercontacts in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string customerneed + public virtual global::System.Nullable identifycustomercontacts { get { - return this._customerneed; + return this._identifycustomercontacts; } set { - this.OncustomerneedChanging(value); - this._customerneed = value; - this.OncustomerneedChanged(); + this.OnidentifycustomercontactsChanging(value); + this._identifycustomercontacts = value; + this.OnidentifycustomercontactsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _customerneed; - partial void OncustomerneedChanging(string value); - partial void OncustomerneedChanged(); + private global::System.Nullable _identifycustomercontacts; + partial void OnidentifycustomercontactsChanging(global::System.Nullable value); + partial void OnidentifycustomercontactsChanged(); /// - /// There are no comments for Property identifypursuitteam in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable identifypursuitteam + public virtual global::System.Nullable _ownerid_value { get { - return this._identifypursuitteam; + return this.__ownerid_value; } set { - this.OnidentifypursuitteamChanging(value); - this._identifypursuitteam = value; - this.OnidentifypursuitteamChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _identifypursuitteam; - partial void OnidentifypursuitteamChanging(global::System.Nullable value); - partial void OnidentifypursuitteamChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property identifycustomercontacts in the schema. + /// There are no comments for Property confirminterest in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable identifycustomercontacts + public virtual global::System.Nullable confirminterest { get { - return this._identifycustomercontacts; + return this._confirminterest; } set { - this.OnidentifycustomercontactsChanging(value); - this._identifycustomercontacts = value; - this.OnidentifycustomercontactsChanged(); + this.OnconfirminterestChanging(value); + this._confirminterest = value; + this.OnconfirminterestChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _identifycustomercontacts; - partial void OnidentifycustomercontactsChanging(global::System.Nullable value); - partial void OnidentifycustomercontactsChanged(); + private global::System.Nullable _confirminterest; + partial void OnconfirminterestChanging(global::System.Nullable value); + partial void OnconfirminterestChanged(); /// - /// There are no comments for Property traversedpath in the schema. + /// There are no comments for Property _originatingleadid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string traversedpath + public virtual global::System.Nullable _originatingleadid_value { get { - return this._traversedpath; + return this.__originatingleadid_value; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); + this.On_originatingleadid_valueChanging(value); + this.__originatingleadid_value = value; + this.On_originatingleadid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private global::System.Nullable __originatingleadid_value; + partial void On_originatingleadid_valueChanging(global::System.Nullable value); + partial void On_originatingleadid_valueChanged(); /// - /// There are no comments for Property actualvalue_base in the schema. + /// There are no comments for Property lastonholdtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable actualvalue_base + public virtual global::System.Nullable lastonholdtime { get { - return this._actualvalue_base; + return this._lastonholdtime; } set { - this.Onactualvalue_baseChanging(value); - this._actualvalue_base = value; - this.Onactualvalue_baseChanged(); + this.OnlastonholdtimeChanging(value); + this._lastonholdtime = value; + this.OnlastonholdtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _actualvalue_base; - partial void Onactualvalue_baseChanging(global::System.Nullable value); - partial void Onactualvalue_baseChanged(); + private global::System.Nullable _lastonholdtime; + partial void OnlastonholdtimeChanging(global::System.Nullable value); + partial void OnlastonholdtimeChanged(); /// - /// There are no comments for Property totalamountlessfreight in the schema. + /// There are no comments for Property _accountid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable totalamountlessfreight + public virtual global::System.Nullable _accountid_value { get { - return this._totalamountlessfreight; + return this.__accountid_value; } set { - this.OntotalamountlessfreightChanging(value); - this._totalamountlessfreight = value; - this.OntotalamountlessfreightChanged(); + this.On_accountid_valueChanging(value); + this.__accountid_value = value; + this.On_accountid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totalamountlessfreight; - partial void OntotalamountlessfreightChanging(global::System.Nullable value); - partial void OntotalamountlessfreightChanged(); + private global::System.Nullable __accountid_value; + partial void On_accountid_valueChanging(global::System.Nullable value); + partial void On_accountid_valueChanged(); /// - /// There are no comments for Property _originatingleadid_value in the schema. + /// There are no comments for Property participatesinworkflow in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _originatingleadid_value + public virtual global::System.Nullable participatesinworkflow { get { - return this.__originatingleadid_value; + return this._participatesinworkflow; } set { - this.On_originatingleadid_valueChanging(value); - this.__originatingleadid_value = value; - this.On_originatingleadid_valueChanged(); + this.OnparticipatesinworkflowChanging(value); + this._participatesinworkflow = value; + this.OnparticipatesinworkflowChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __originatingleadid_value; - partial void On_originatingleadid_valueChanging(global::System.Nullable value); - partial void On_originatingleadid_valueChanged(); + private global::System.Nullable _participatesinworkflow; + partial void OnparticipatesinworkflowChanging(global::System.Nullable value); + partial void OnparticipatesinworkflowChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property filedebrief in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable filedebrief { get { - return this._versionnumber; + return this._filedebrief; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnfiledebriefChanging(value); + this._filedebrief = value; + this.OnfiledebriefChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _filedebrief; + partial void OnfiledebriefChanging(global::System.Nullable value); + partial void OnfiledebriefChanged(); /// /// There are no comments for Property opportunityratingcode in the schema. /// @@ -515225,27 +515313,27 @@ public virtual string proposedsolution partial void OndiscountpercentageChanging(global::System.Nullable value); partial void OndiscountpercentageChanged(); /// - /// There are no comments for Property estimatedclosedate in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable estimatedclosedate + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._estimatedclosedate; + return this.__modifiedonbehalfby_value; } set { - this.OnestimatedclosedateChanging(value); - this._estimatedclosedate = value; - this.OnestimatedclosedateChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _estimatedclosedate; - partial void OnestimatedclosedateChanging(global::System.Nullable value); - partial void OnestimatedclosedateChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _parentaccountid_value in the schema. /// @@ -515357,27 +515445,27 @@ public virtual string proposedsolution partial void OnresolvefeedbackChanging(global::System.Nullable value); partial void OnresolvefeedbackChanged(); /// - /// There are no comments for Property teamsfollowed in the schema. + /// There are no comments for Property salesstage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable teamsfollowed + public virtual global::System.Nullable salesstage { get { - return this._teamsfollowed; + return this._salesstage; } set { - this.OnteamsfollowedChanging(value); - this._teamsfollowed = value; - this.OnteamsfollowedChanged(); + this.OnsalesstageChanging(value); + this._salesstage = value; + this.OnsalesstageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _teamsfollowed; - partial void OnteamsfollowedChanging(global::System.Nullable value); - partial void OnteamsfollowedChanged(); + private global::System.Nullable _salesstage; + partial void OnsalesstageChanging(global::System.Nullable value); + partial void OnsalesstageChanged(); /// /// There are no comments for Property developproposal in the schema. /// @@ -515401,28 +515489,6 @@ public virtual string proposedsolution partial void OndevelopproposalChanging(global::System.Nullable value); partial void OndevelopproposalChanged(); /// - /// There are no comments for Property stepid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable stepid - { - get - { - return this._stepid; - } - set - { - this.OnstepidChanging(value); - this._stepid = value; - this.OnstepidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stepid; - partial void OnstepidChanging(global::System.Nullable value); - partial void OnstepidChanged(); - /// /// There are no comments for Property pursuitdecision in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -519740,6 +519806,28 @@ public virtual string subcategory partial void OnopportunitystatecodeChanging(global::System.Nullable value); partial void OnopportunitystatecodeChanged(); /// + /// There are no comments for Property _competitorid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _competitorid_value + { + get + { + return this.__competitorid_value; + } + set + { + this.On_competitorid_valueChanging(value); + this.__competitorid_value = value; + this.On_competitorid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __competitorid_value; + partial void On_competitorid_valueChanging(global::System.Nullable value); + partial void On_competitorid_valueChanged(); + /// /// There are no comments for Property category in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -519828,28 +519916,6 @@ public virtual string category partial void OnopportunitystatuscodeChanging(global::System.Nullable value); partial void OnopportunitystatuscodeChanged(); /// - /// There are no comments for Property _competitorid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _competitorid_value - { - get - { - return this.__competitorid_value; - } - set - { - this.On_competitorid_valueChanging(value); - this.__competitorid_value = value; - this.On_competitorid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __competitorid_value; - partial void On_competitorid_valueChanging(global::System.Nullable value); - partial void On_competitorid_valueChanged(); - /// /// There are no comments for Property actualrevenue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -521760,27 +521826,27 @@ public static opportunityproduct Createopportunityproduct(global::EMBC.ESS.Utili return opportunityproduct; } /// - /// There are no comments for Property propertyconfigurationstatus in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable propertyconfigurationstatus + public virtual global::System.Nullable versionnumber { get { - return this._propertyconfigurationstatus; + return this._versionnumber; } set { - this.OnpropertyconfigurationstatusChanging(value); - this._propertyconfigurationstatus = value; - this.OnpropertyconfigurationstatusChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _propertyconfigurationstatus; - partial void OnpropertyconfigurationstatusChanging(global::System.Nullable value); - partial void OnpropertyconfigurationstatusChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -521826,28 +521892,6 @@ public static opportunityproduct Createopportunityproduct(global::EMBC.ESS.Utili partial void Onentityimage_timestampChanging(global::System.Nullable value); partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property opportunitystatecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable opportunitystatecode - { - get - { - return this._opportunitystatecode; - } - set - { - this.OnopportunitystatecodeChanging(value); - this._opportunitystatecode = value; - this.OnopportunitystatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _opportunitystatecode; - partial void OnopportunitystatecodeChanging(global::System.Nullable value); - partial void OnopportunitystatecodeChanged(); - /// /// There are no comments for Property extendedamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -521870,27 +521914,27 @@ public static opportunityproduct Createopportunityproduct(global::EMBC.ESS.Utili partial void OnextendedamountChanging(global::System.Nullable value); partial void OnextendedamountChanged(); /// - /// There are no comments for Property parentbundleid in the schema. + /// There are no comments for Property extendedamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable parentbundleid + public virtual global::System.Nullable extendedamount_base { get { - return this._parentbundleid; + return this._extendedamount_base; } set { - this.OnparentbundleidChanging(value); - this._parentbundleid = value; - this.OnparentbundleidChanged(); + this.Onextendedamount_baseChanging(value); + this._extendedamount_base = value; + this.Onextendedamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _parentbundleid; - partial void OnparentbundleidChanging(global::System.Nullable value); - partial void OnparentbundleidChanged(); + private global::System.Nullable _extendedamount_base; + partial void Onextendedamount_baseChanging(global::System.Nullable value); + partial void Onextendedamount_baseChanged(); /// /// There are no comments for Property description in the schema. /// @@ -521958,6 +522002,72 @@ public virtual string description partial void Ontax_baseChanging(global::System.Nullable value); partial void Ontax_baseChanged(); /// + /// There are no comments for Property volumediscountamount_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable volumediscountamount_base + { + get + { + return this._volumediscountamount_base; + } + set + { + this.Onvolumediscountamount_baseChanging(value); + this._volumediscountamount_base = value; + this.Onvolumediscountamount_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _volumediscountamount_base; + partial void Onvolumediscountamount_baseChanging(global::System.Nullable value); + partial void Onvolumediscountamount_baseChanged(); + /// + /// There are no comments for Property _opportunityid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _opportunityid_value + { + get + { + return this.__opportunityid_value; + } + set + { + this.On_opportunityid_valueChanging(value); + this.__opportunityid_value = value; + this.On_opportunityid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __opportunityid_value; + partial void On_opportunityid_valueChanging(global::System.Nullable value); + partial void On_opportunityid_valueChanged(); + /// + /// There are no comments for Property opportunitystatecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable opportunitystatecode + { + get + { + return this._opportunitystatecode; + } + set + { + this.OnopportunitystatecodeChanging(value); + this._opportunitystatecode = value; + this.OnopportunitystatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _opportunitystatecode; + partial void OnopportunitystatecodeChanging(global::System.Nullable value); + partial void OnopportunitystatecodeChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -522046,28 +522156,6 @@ public virtual string description partial void OnquantityChanging(global::System.Nullable value); partial void OnquantityChanged(); /// - /// There are no comments for Property _parentbundleidref_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _parentbundleidref_value - { - get - { - return this.__parentbundleidref_value; - } - set - { - this.On_parentbundleidref_valueChanging(value); - this.__parentbundleidref_value = value; - this.On_parentbundleidref_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentbundleidref_value; - partial void On_parentbundleidref_valueChanging(global::System.Nullable value); - partial void On_parentbundleidref_valueChanged(); - /// /// There are no comments for Property _uomid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -522112,71 +522200,93 @@ public virtual string description partial void OnskippricecalculationChanging(global::System.Nullable value); partial void OnskippricecalculationChanged(); /// - /// There are no comments for Property pricingerrorcode in the schema. + /// There are no comments for Property parentbundleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pricingerrorcode + public virtual global::System.Nullable parentbundleid { get { - return this._pricingerrorcode; + return this._parentbundleid; } set { - this.OnpricingerrorcodeChanging(value); - this._pricingerrorcode = value; - this.OnpricingerrorcodeChanged(); + this.OnparentbundleidChanging(value); + this._parentbundleid = value; + this.OnparentbundleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pricingerrorcode; - partial void OnpricingerrorcodeChanging(global::System.Nullable value); - partial void OnpricingerrorcodeChanged(); + private global::System.Nullable _parentbundleid; + partial void OnparentbundleidChanging(global::System.Nullable value); + partial void OnparentbundleidChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property baseamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable baseamount { get { - return this.__createdonbehalfby_value; + return this._baseamount; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnbaseamountChanging(value); + this._baseamount = value; + this.OnbaseamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _baseamount; + partial void OnbaseamountChanging(global::System.Nullable value); + partial void OnbaseamountChanged(); /// - /// There are no comments for Property ispriceoverridden in the schema. + /// There are no comments for Property productassociationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ispriceoverridden + public virtual global::System.Nullable productassociationid { get { - return this._ispriceoverridden; + return this._productassociationid; } set { - this.OnispriceoverriddenChanging(value); - this._ispriceoverridden = value; - this.OnispriceoverriddenChanged(); + this.OnproductassociationidChanging(value); + this._productassociationid = value; + this.OnproductassociationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ispriceoverridden; - partial void OnispriceoverriddenChanging(global::System.Nullable value); - partial void OnispriceoverriddenChanged(); + private global::System.Nullable _productassociationid; + partial void OnproductassociationidChanging(global::System.Nullable value); + partial void OnproductassociationidChanged(); + /// + /// There are no comments for Property pricingerrorcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable pricingerrorcode + { + get + { + return this._pricingerrorcode; + } + set + { + this.OnpricingerrorcodeChanging(value); + this._pricingerrorcode = value; + this.OnpricingerrorcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _pricingerrorcode; + partial void OnpricingerrorcodeChanging(global::System.Nullable value); + partial void OnpricingerrorcodeChanged(); /// /// There are no comments for Property _owninguser_value in the schema. /// @@ -522244,50 +522354,6 @@ public virtual string description partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property volumediscountamount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable volumediscountamount - { - get - { - return this._volumediscountamount; - } - set - { - this.OnvolumediscountamountChanging(value); - this._volumediscountamount = value; - this.OnvolumediscountamountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _volumediscountamount; - partial void OnvolumediscountamountChanging(global::System.Nullable value); - partial void OnvolumediscountamountChanged(); - /// - /// There are no comments for Property productdescription in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string productdescription - { - get - { - return this._productdescription; - } - set - { - this.OnproductdescriptionChanging(value); - this._productdescription = value; - this.OnproductdescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _productdescription; - partial void OnproductdescriptionChanging(string value); - partial void OnproductdescriptionChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -522332,27 +522398,27 @@ public virtual string productdescription partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property volumediscountamount_base in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable volumediscountamount_base + public virtual global::System.Nullable _modifiedby_value { get { - return this._volumediscountamount_base; + return this.__modifiedby_value; } set { - this.Onvolumediscountamount_baseChanging(value); - this._volumediscountamount_base = value; - this.Onvolumediscountamount_baseChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _volumediscountamount_base; - partial void Onvolumediscountamount_baseChanging(global::System.Nullable value); - partial void Onvolumediscountamount_baseChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -522376,6 +522442,28 @@ public virtual string productdescription partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property ispriceoverridden in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ispriceoverridden + { + get + { + return this._ispriceoverridden; + } + set + { + this.OnispriceoverriddenChanging(value); + this._ispriceoverridden = value; + this.OnispriceoverriddenChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ispriceoverridden; + partial void OnispriceoverriddenChanging(global::System.Nullable value); + partial void OnispriceoverriddenChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -522398,27 +522486,49 @@ public virtual string productdescription partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property baseamount in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable baseamount + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._baseamount; + return this.__createdonbehalfby_value; } set { - this.OnbaseamountChanging(value); - this._baseamount = value; - this.OnbaseamountChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _baseamount; - partial void OnbaseamountChanging(global::System.Nullable value); - partial void OnbaseamountChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property propertyconfigurationstatus in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable propertyconfigurationstatus + { + get + { + return this._propertyconfigurationstatus; + } + set + { + this.OnpropertyconfigurationstatusChanging(value); + this._propertyconfigurationstatus = value; + this.OnpropertyconfigurationstatusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _propertyconfigurationstatus; + partial void OnpropertyconfigurationstatusChanging(global::System.Nullable value); + partial void OnpropertyconfigurationstatusChanged(); /// /// There are no comments for Property entityimageid in the schema. /// @@ -522464,28 +522574,6 @@ public virtual string productdescription partial void OnproducttypecodeChanging(global::System.Nullable value); partial void OnproducttypecodeChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -522640,49 +522728,49 @@ public virtual string opportunityproductname partial void OnopportunityproductnameChanging(string value); partial void OnopportunityproductnameChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable exchangerate { get { - return this.__modifiedby_value; + return this._exchangerate; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual string entityimage_url { get { - return this._versionnumber; + return this._entityimage_url; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// /// There are no comments for Property priceperunit in the schema. /// @@ -522750,28 +522838,6 @@ public virtual string productname partial void Onbaseamount_baseChanging(global::System.Nullable value); partial void Onbaseamount_baseChanged(); /// - /// There are no comments for Property productassociationid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable productassociationid - { - get - { - return this._productassociationid; - } - set - { - this.OnproductassociationidChanging(value); - this._productassociationid = value; - this.OnproductassociationidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _productassociationid; - partial void OnproductassociationidChanging(global::System.Nullable value); - partial void OnproductassociationidChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -522794,28 +522860,6 @@ public virtual string productname partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property entityimage_url in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string entityimage_url - { - get - { - return this._entityimage_url; - } - set - { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -522838,49 +522882,49 @@ public virtual string entityimage_url partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property extendedamount_base in the schema. + /// There are no comments for Property _parentbundleidref_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable extendedamount_base + public virtual global::System.Nullable _parentbundleidref_value { get { - return this._extendedamount_base; + return this.__parentbundleidref_value; } set { - this.Onextendedamount_baseChanging(value); - this._extendedamount_base = value; - this.Onextendedamount_baseChanged(); + this.On_parentbundleidref_valueChanging(value); + this.__parentbundleidref_value = value; + this.On_parentbundleidref_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _extendedamount_base; - partial void Onextendedamount_baseChanging(global::System.Nullable value); - partial void Onextendedamount_baseChanged(); + private global::System.Nullable __parentbundleidref_value; + partial void On_parentbundleidref_valueChanging(global::System.Nullable value); + partial void On_parentbundleidref_valueChanged(); /// - /// There are no comments for Property _opportunityid_value in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _opportunityid_value + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this.__opportunityid_value; + return this.__transactioncurrencyid_value; } set { - this.On_opportunityid_valueChanging(value); - this.__opportunityid_value = value; - this.On_opportunityid_valueChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __opportunityid_value; - partial void On_opportunityid_valueChanging(global::System.Nullable value); - partial void On_opportunityid_valueChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property opportunityproductid in the schema. /// @@ -522926,27 +522970,49 @@ public virtual string entityimage_url partial void OnisproductoverriddenChanging(global::System.Nullable value); partial void OnisproductoverriddenChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property volumediscountamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable volumediscountamount { get { - return this._exchangerate; + return this._volumediscountamount; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.OnvolumediscountamountChanging(value); + this._volumediscountamount = value; + this.OnvolumediscountamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _volumediscountamount; + partial void OnvolumediscountamountChanging(global::System.Nullable value); + partial void OnvolumediscountamountChanged(); + /// + /// There are no comments for Property productdescription in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string productdescription + { + get + { + return this._productdescription; + } + set + { + this.OnproductdescriptionChanging(value); + this._productdescription = value; + this.OnproductdescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _productdescription; + partial void OnproductdescriptionChanging(string value); + partial void OnproductdescriptionChanged(); /// /// There are no comments for Property parentbundleidref_opportunityproduct in the schema. /// @@ -523951,28 +524017,6 @@ public static opportunitysalesprocess Createopportunitysalesprocess(global::EMBC return opportunitysalesprocess; } /// - /// There are no comments for Property activestagestartedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable activestagestartedon - { - get - { - return this._activestagestartedon; - } - set - { - this.OnactivestagestartedonChanging(value); - this._activestagestartedon = value; - this.OnactivestagestartedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _activestagestartedon; - partial void OnactivestagestartedonChanging(global::System.Nullable value); - partial void OnactivestagestartedonChanged(); - /// /// There are no comments for Property _processid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -524127,6 +524171,28 @@ public virtual string name partial void On_quoteid_valueChanging(global::System.Nullable value); partial void On_quoteid_valueChanged(); /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); + /// /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -524193,6 +524259,28 @@ public virtual string traversedpath partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _salesorderid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -524259,28 +524347,6 @@ public virtual string traversedpath partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property exchangerate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable exchangerate - { - get - { - return this._exchangerate; - } - set - { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); - /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -524303,28 +524369,6 @@ public virtual string traversedpath partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _opportunityid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _opportunityid_value - { - get - { - return this.__opportunityid_value; - } - set - { - this.On_opportunityid_valueChanging(value); - this.__opportunityid_value = value; - this.On_opportunityid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __opportunityid_value; - partial void On_opportunityid_valueChanging(global::System.Nullable value); - partial void On_opportunityid_valueChanged(); - /// /// There are no comments for Property completedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -524391,71 +524435,71 @@ public virtual string traversedpath partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _opportunityid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _opportunityid_value { get { - return this.__modifiedby_value; + return this.__opportunityid_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_opportunityid_valueChanging(value); + this.__opportunityid_value = value; + this.On_opportunityid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __opportunityid_value; + partial void On_opportunityid_valueChanging(global::System.Nullable value); + partial void On_opportunityid_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable overriddencreatedon { get { - return this._importsequencenumber; + return this._overriddencreatedon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property activestagestartedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable activestagestartedon { get { - return this._overriddencreatedon; + return this._activestagestartedon; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnactivestagestartedonChanging(value); + this._activestagestartedon = value; + this.OnactivestagestartedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _activestagestartedon; + partial void OnactivestagestartedonChanging(global::System.Nullable value); + partial void OnactivestagestartedonChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -524545,6 +524589,28 @@ public virtual string traversedpath partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property createdbyname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -527868,28 +527934,6 @@ public static orderclose Createorderclose(global::EMBC.ESS.Utilities.Dynamics.Mi return orderclose; } /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property ordernumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -528022,6 +528066,28 @@ public virtual string category partial void On_salesorderid_valueChanging(global::System.Nullable value); partial void On_salesorderid_valueChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property serviceid_orderclose in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -531849,28 +531915,6 @@ public static organization Createorganization(global::EMBC.ESS.Utilities.Dynamic return organization; } /// - /// There are no comments for Property autoapplydefaultoncasecreate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable autoapplydefaultoncasecreate - { - get - { - return this._autoapplydefaultoncasecreate; - } - set - { - this.OnautoapplydefaultoncasecreateChanging(value); - this._autoapplydefaultoncasecreate = value; - this.OnautoapplydefaultoncasecreateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _autoapplydefaultoncasecreate; - partial void OnautoapplydefaultoncasecreateChanging(global::System.Nullable value); - partial void OnautoapplydefaultoncasecreateChanged(); - /// /// There are no comments for Property maxverboseloggingsynccycles in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -531937,27 +531981,71 @@ public static organization Createorganization(global::EMBC.ESS.Utilities.Dynamic partial void OnprivilegeusergroupidChanging(global::System.Nullable value); partial void OnprivilegeusergroupidChanged(); /// - /// There are no comments for Property expiresubscriptionsindays in the schema. + /// There are no comments for Property entityimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable expiresubscriptionsindays + public virtual global::System.Nullable entityimageid { get { - return this._expiresubscriptionsindays; + return this._entityimageid; } set { - this.OnexpiresubscriptionsindaysChanging(value); - this._expiresubscriptionsindays = value; - this.OnexpiresubscriptionsindaysChanged(); + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expiresubscriptionsindays; - partial void OnexpiresubscriptionsindaysChanging(global::System.Nullable value); - partial void OnexpiresubscriptionsindaysChanged(); + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); + /// + /// There are no comments for Property minaddressbooksyncinterval in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable minaddressbooksyncinterval + { + get + { + return this._minaddressbooksyncinterval; + } + set + { + this.OnminaddressbooksyncintervalChanging(value); + this._minaddressbooksyncinterval = value; + this.OnminaddressbooksyncintervalChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _minaddressbooksyncinterval; + partial void OnminaddressbooksyncintervalChanging(global::System.Nullable value); + partial void OnminaddressbooksyncintervalChanged(); + /// + /// There are no comments for Property showkbarticledeprecationnotification in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable showkbarticledeprecationnotification + { + get + { + return this._showkbarticledeprecationnotification; + } + set + { + this.OnshowkbarticledeprecationnotificationChanging(value); + this._showkbarticledeprecationnotification = value; + this.OnshowkbarticledeprecationnotificationChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _showkbarticledeprecationnotification; + partial void OnshowkbarticledeprecationnotificationChanging(global::System.Nullable value); + partial void OnshowkbarticledeprecationnotificationChanged(); /// /// There are no comments for Property globalhelpurlenabled in the schema. /// @@ -532003,27 +532091,27 @@ public virtual string widgetproperties partial void OnwidgetpropertiesChanging(string value); partial void OnwidgetpropertiesChanged(); /// - /// There are no comments for Property taskbasedflowenabled in the schema. + /// There are no comments for Property maxappointmentdurationdays in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable taskbasedflowenabled + public virtual global::System.Nullable maxappointmentdurationdays { get { - return this._taskbasedflowenabled; + return this._maxappointmentdurationdays; } set { - this.OntaskbasedflowenabledChanging(value); - this._taskbasedflowenabled = value; - this.OntaskbasedflowenabledChanged(); + this.OnmaxappointmentdurationdaysChanging(value); + this._maxappointmentdurationdays = value; + this.OnmaxappointmentdurationdaysChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _taskbasedflowenabled; - partial void OntaskbasedflowenabledChanging(global::System.Nullable value); - partial void OntaskbasedflowenabledChanged(); + private global::System.Nullable _maxappointmentdurationdays; + partial void OnmaxappointmentdurationdaysChanging(global::System.Nullable value); + partial void OnmaxappointmentdurationdaysChanged(); /// /// There are no comments for Property iscontextualhelpenabled in the schema. /// @@ -532179,50 +532267,6 @@ public virtual string currencysymbol partial void OncurrencysymbolChanging(string value); partial void OncurrencysymbolChanged(); /// - /// There are no comments for Property sessiontimeoutreminderinmins in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable sessiontimeoutreminderinmins - { - get - { - return this._sessiontimeoutreminderinmins; - } - set - { - this.OnsessiontimeoutreminderinminsChanging(value); - this._sessiontimeoutreminderinmins = value; - this.OnsessiontimeoutreminderinminsChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sessiontimeoutreminderinmins; - partial void OnsessiontimeoutreminderinminsChanging(global::System.Nullable value); - partial void OnsessiontimeoutreminderinminsChanged(); - /// - /// There are no comments for Property mailboxpermanentissueminrange in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable mailboxpermanentissueminrange - { - get - { - return this._mailboxpermanentissueminrange; - } - set - { - this.OnmailboxpermanentissueminrangeChanging(value); - this._mailboxpermanentissueminrange = value; - this.OnmailboxpermanentissueminrangeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _mailboxpermanentissueminrange; - partial void OnmailboxpermanentissueminrangeChanging(global::System.Nullable value); - partial void OnmailboxpermanentissueminrangeChanged(); - /// /// There are no comments for Property allowwebexcelexport in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -532289,27 +532333,27 @@ public virtual string caseprefix partial void OncaseprefixChanging(string value); partial void OncaseprefixChanged(); /// - /// There are no comments for Property longdateformatcode in the schema. + /// There are no comments for Property pastexpansionwindow in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable longdateformatcode + public virtual global::System.Nullable pastexpansionwindow { get { - return this._longdateformatcode; + return this._pastexpansionwindow; } set { - this.OnlongdateformatcodeChanging(value); - this._longdateformatcode = value; - this.OnlongdateformatcodeChanged(); + this.OnpastexpansionwindowChanging(value); + this._pastexpansionwindow = value; + this.OnpastexpansionwindowChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _longdateformatcode; - partial void OnlongdateformatcodeChanging(global::System.Nullable value); - partial void OnlongdateformatcodeChanged(); + private global::System.Nullable _pastexpansionwindow; + partial void OnpastexpansionwindowChanging(global::System.Nullable value); + partial void OnpastexpansionwindowChanged(); /// /// There are no comments for Property usepositionhierarchy in the schema. /// @@ -532355,49 +532399,49 @@ public virtual string caseprefix partial void OntrackingtokenidbaseChanging(global::System.Nullable value); partial void OntrackingtokenidbaseChanged(); /// - /// There are no comments for Property allowentityonlyaudit in the schema. + /// There are no comments for Property defaultemailsettings in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable allowentityonlyaudit + public virtual string defaultemailsettings { get { - return this._allowentityonlyaudit; + return this._defaultemailsettings; } set { - this.OnallowentityonlyauditChanging(value); - this._allowentityonlyaudit = value; - this.OnallowentityonlyauditChanged(); + this.OndefaultemailsettingsChanging(value); + this._defaultemailsettings = value; + this.OndefaultemailsettingsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _allowentityonlyaudit; - partial void OnallowentityonlyauditChanging(global::System.Nullable value); - partial void OnallowentityonlyauditChanged(); + private string _defaultemailsettings; + partial void OndefaultemailsettingsChanging(string value); + partial void OndefaultemailsettingsChanged(); /// - /// There are no comments for Property globalappendurlparametersenabled in the schema. + /// There are no comments for Property hashfilterkeywords in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable globalappendurlparametersenabled + public virtual string hashfilterkeywords { get { - return this._globalappendurlparametersenabled; + return this._hashfilterkeywords; } set { - this.OnglobalappendurlparametersenabledChanging(value); - this._globalappendurlparametersenabled = value; - this.OnglobalappendurlparametersenabledChanged(); + this.OnhashfilterkeywordsChanging(value); + this._hashfilterkeywords = value; + this.OnhashfilterkeywordsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _globalappendurlparametersenabled; - partial void OnglobalappendurlparametersenabledChanging(global::System.Nullable value); - partial void OnglobalappendurlparametersenabledChanged(); + private string _hashfilterkeywords; + partial void OnhashfilterkeywordsChanging(string value); + partial void OnhashfilterkeywordsChanged(); /// /// There are no comments for Property generatealertsforwarnings in the schema. /// @@ -532487,27 +532531,27 @@ public virtual string invoiceprefix partial void OninvoiceprefixChanging(string value); partial void OninvoiceprefixChanged(); /// - /// There are no comments for Property quoteprefix in the schema. + /// There are no comments for Property campaignprefix in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string quoteprefix + public virtual string campaignprefix { get { - return this._quoteprefix; + return this._campaignprefix; } set { - this.OnquoteprefixChanging(value); - this._quoteprefix = value; - this.OnquoteprefixChanged(); + this.OncampaignprefixChanging(value); + this._campaignprefix = value; + this.OncampaignprefixChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _quoteprefix; - partial void OnquoteprefixChanging(string value); - partial void OnquoteprefixChanged(); + private string _campaignprefix; + partial void OncampaignprefixChanging(string value); + partial void OncampaignprefixChanged(); /// /// There are no comments for Property mailboxintermittentissueminrange in the schema. /// @@ -532575,28 +532619,6 @@ public virtual string quoteprefix partial void OnissopintegrationenabledChanging(global::System.Nullable value); partial void OnissopintegrationenabledChanged(); /// - /// There are no comments for Property ismobileclientondemandsyncenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismobileclientondemandsyncenabled - { - get - { - return this._ismobileclientondemandsyncenabled; - } - set - { - this.OnismobileclientondemandsyncenabledChanging(value); - this._ismobileclientondemandsyncenabled = value; - this.OnismobileclientondemandsyncenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismobileclientondemandsyncenabled; - partial void OnismobileclientondemandsyncenabledChanging(global::System.Nullable value); - partial void OnismobileclientondemandsyncenabledChanged(); - /// /// There are no comments for Property allowautounsubscribeacknowledgement in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -532619,27 +532641,27 @@ public virtual string quoteprefix partial void OnallowautounsubscribeacknowledgementChanging(global::System.Nullable value); partial void OnallowautounsubscribeacknowledgementChanged(); /// - /// There are no comments for Property enableimmersiveskypeintegration in the schema. + /// There are no comments for Property ismsteamssettingchangedbyuser in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable enableimmersiveskypeintegration + public virtual global::System.Nullable ismsteamssettingchangedbyuser { get { - return this._enableimmersiveskypeintegration; + return this._ismsteamssettingchangedbyuser; } set { - this.OnenableimmersiveskypeintegrationChanging(value); - this._enableimmersiveskypeintegration = value; - this.OnenableimmersiveskypeintegrationChanged(); + this.OnismsteamssettingchangedbyuserChanging(value); + this._ismsteamssettingchangedbyuser = value; + this.OnismsteamssettingchangedbyuserChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _enableimmersiveskypeintegration; - partial void OnenableimmersiveskypeintegrationChanging(global::System.Nullable value); - partial void OnenableimmersiveskypeintegrationChanged(); + private global::System.Nullable _ismsteamssettingchangedbyuser; + partial void OnismsteamssettingchangedbyuserChanging(global::System.Nullable value); + partial void OnismsteamssettingchangedbyuserChanged(); /// /// There are no comments for Property isgeospatialazuremapsintegrationenabled in the schema. /// @@ -532773,27 +532795,71 @@ public virtual string quoteprefix partial void Onisluisenabledford365botChanging(global::System.Nullable value); partial void Onisluisenabledford365botChanged(); /// - /// There are no comments for Property blockedattachments in the schema. + /// There are no comments for Property usergroupid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string blockedattachments + public virtual global::System.Nullable usergroupid { get { - return this._blockedattachments; + return this._usergroupid; } set { - this.OnblockedattachmentsChanging(value); - this._blockedattachments = value; - this.OnblockedattachmentsChanged(); + this.OnusergroupidChanging(value); + this._usergroupid = value; + this.OnusergroupidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _blockedattachments; - partial void OnblockedattachmentsChanging(string value); - partial void OnblockedattachmentsChanged(); + private global::System.Nullable _usergroupid; + partial void OnusergroupidChanging(global::System.Nullable value); + partial void OnusergroupidChanged(); + /// + /// There are no comments for Property useinbuiltrulefordefaultpricelistselection in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable useinbuiltrulefordefaultpricelistselection + { + get + { + return this._useinbuiltrulefordefaultpricelistselection; + } + set + { + this.OnuseinbuiltrulefordefaultpricelistselectionChanging(value); + this._useinbuiltrulefordefaultpricelistselection = value; + this.OnuseinbuiltrulefordefaultpricelistselectionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _useinbuiltrulefordefaultpricelistselection; + partial void OnuseinbuiltrulefordefaultpricelistselectionChanging(global::System.Nullable value); + partial void OnuseinbuiltrulefordefaultpricelistselectionChanged(); + /// + /// There are no comments for Property bounddashboarddefaultcardexpanded in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable bounddashboarddefaultcardexpanded + { + get + { + return this._bounddashboarddefaultcardexpanded; + } + set + { + this.OnbounddashboarddefaultcardexpandedChanging(value); + this._bounddashboarddefaultcardexpanded = value; + this.OnbounddashboarddefaultcardexpandedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _bounddashboarddefaultcardexpanded; + partial void OnbounddashboarddefaultcardexpandedChanging(global::System.Nullable value); + partial void OnbounddashboarddefaultcardexpandedChanged(); /// /// There are no comments for Property isconflictdetectionenabledformobileclient in the schema. /// @@ -532927,49 +532993,71 @@ public virtual string parsedtableprefix partial void OnrequireapprovalforuseremailChanging(global::System.Nullable value); partial void OnrequireapprovalforuseremailChanged(); /// - /// There are no comments for Property emailsendpollingperiod in the schema. + /// There are no comments for Property maxconditionsformobileofflinefilters in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable emailsendpollingperiod + public virtual global::System.Nullable maxconditionsformobileofflinefilters { get { - return this._emailsendpollingperiod; + return this._maxconditionsformobileofflinefilters; } set { - this.OnemailsendpollingperiodChanging(value); - this._emailsendpollingperiod = value; - this.OnemailsendpollingperiodChanged(); + this.OnmaxconditionsformobileofflinefiltersChanging(value); + this._maxconditionsformobileofflinefilters = value; + this.OnmaxconditionsformobileofflinefiltersChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _emailsendpollingperiod; - partial void OnemailsendpollingperiodChanging(global::System.Nullable value); - partial void OnemailsendpollingperiodChanged(); + private global::System.Nullable _maxconditionsformobileofflinefilters; + partial void OnmaxconditionsformobileofflinefiltersChanging(global::System.Nullable value); + partial void OnmaxconditionsformobileofflinefiltersChanged(); /// - /// There are no comments for Property useinbuiltrulefordefaultpricelistselection in the schema. + /// There are no comments for Property minoutlooksyncinterval in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable useinbuiltrulefordefaultpricelistselection + public virtual global::System.Nullable minoutlooksyncinterval { get { - return this._useinbuiltrulefordefaultpricelistselection; + return this._minoutlooksyncinterval; } set { - this.OnuseinbuiltrulefordefaultpricelistselectionChanging(value); - this._useinbuiltrulefordefaultpricelistselection = value; - this.OnuseinbuiltrulefordefaultpricelistselectionChanged(); + this.OnminoutlooksyncintervalChanging(value); + this._minoutlooksyncinterval = value; + this.OnminoutlooksyncintervalChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _useinbuiltrulefordefaultpricelistselection; - partial void OnuseinbuiltrulefordefaultpricelistselectionChanging(global::System.Nullable value); - partial void OnuseinbuiltrulefordefaultpricelistselectionChanged(); + private global::System.Nullable _minoutlooksyncinterval; + partial void OnminoutlooksyncintervalChanging(global::System.Nullable value); + partial void OnminoutlooksyncintervalChanged(); + /// + /// There are no comments for Property requireapprovalforqueueemail in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable requireapprovalforqueueemail + { + get + { + return this._requireapprovalforqueueemail; + } + set + { + this.OnrequireapprovalforqueueemailChanging(value); + this._requireapprovalforqueueemail = value; + this.OnrequireapprovalforqueueemailChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _requireapprovalforqueueemail; + partial void OnrequireapprovalforqueueemailChanging(global::System.Nullable value); + partial void OnrequireapprovalforqueueemailChanged(); /// /// There are no comments for Property isrichtextnotesenabled in the schema. /// @@ -532993,6 +533081,28 @@ public virtual string parsedtableprefix partial void OnisrichtextnotesenabledChanging(global::System.Nullable value); partial void OnisrichtextnotesenabledChanged(); /// + /// There are no comments for Property ismsteamscollaborationenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismsteamscollaborationenabled + { + get + { + return this._ismsteamscollaborationenabled; + } + set + { + this.OnismsteamscollaborationenabledChanging(value); + this._ismsteamscollaborationenabled = value; + this.OnismsteamscollaborationenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismsteamscollaborationenabled; + partial void OnismsteamscollaborationenabledChanging(global::System.Nullable value); + partial void OnismsteamscollaborationenabledChanged(); + /// /// There are no comments for Property hashdeltasubjectcount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -533147,49 +533257,27 @@ public virtual string officegraphdelveurl partial void OnisrelationshipinsightsenabledChanging(global::System.Nullable value); partial void OnisrelationshipinsightsenabledChanged(); /// - /// There are no comments for Property requireapprovalforqueueemail in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable requireapprovalforqueueemail - { - get - { - return this._requireapprovalforqueueemail; - } - set - { - this.OnrequireapprovalforqueueemailChanging(value); - this._requireapprovalforqueueemail = value; - this.OnrequireapprovalforqueueemailChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _requireapprovalforqueueemail; - partial void OnrequireapprovalforqueueemailChanging(global::System.Nullable value); - partial void OnrequireapprovalforqueueemailChanged(); - /// - /// There are no comments for Property tokenexpiry in the schema. + /// There are no comments for Property emailsendpollingperiod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable tokenexpiry + public virtual global::System.Nullable emailsendpollingperiod { get { - return this._tokenexpiry; + return this._emailsendpollingperiod; } set { - this.OntokenexpiryChanging(value); - this._tokenexpiry = value; - this.OntokenexpiryChanged(); + this.OnemailsendpollingperiodChanging(value); + this._emailsendpollingperiod = value; + this.OnemailsendpollingperiodChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _tokenexpiry; - partial void OntokenexpiryChanging(global::System.Nullable value); - partial void OntokenexpiryChanged(); + private global::System.Nullable _emailsendpollingperiod; + partial void OnemailsendpollingperiodChanging(global::System.Nullable value); + partial void OnemailsendpollingperiodChanged(); /// /// There are no comments for Property postmessagewhitelistdomains in the schema. /// @@ -533257,71 +533345,71 @@ public virtual string postmessagewhitelistdomains partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property isduplicatedetectionenabledforonlinecreateupdate in the schema. + /// There are no comments for Property longdateformatcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isduplicatedetectionenabledforonlinecreateupdate + public virtual global::System.Nullable longdateformatcode { get { - return this._isduplicatedetectionenabledforonlinecreateupdate; + return this._longdateformatcode; } set { - this.OnisduplicatedetectionenabledforonlinecreateupdateChanging(value); - this._isduplicatedetectionenabledforonlinecreateupdate = value; - this.OnisduplicatedetectionenabledforonlinecreateupdateChanged(); + this.OnlongdateformatcodeChanging(value); + this._longdateformatcode = value; + this.OnlongdateformatcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isduplicatedetectionenabledforonlinecreateupdate; - partial void OnisduplicatedetectionenabledforonlinecreateupdateChanging(global::System.Nullable value); - partial void OnisduplicatedetectionenabledforonlinecreateupdateChanged(); + private global::System.Nullable _longdateformatcode; + partial void OnlongdateformatcodeChanging(global::System.Nullable value); + partial void OnlongdateformatcodeChanged(); /// - /// There are no comments for Property contentsecuritypolicyconfiguration in the schema. + /// There are no comments for Property isduplicatedetectionenabledforonlinecreateupdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string contentsecuritypolicyconfiguration + public virtual global::System.Nullable isduplicatedetectionenabledforonlinecreateupdate { get { - return this._contentsecuritypolicyconfiguration; + return this._isduplicatedetectionenabledforonlinecreateupdate; } set { - this.OncontentsecuritypolicyconfigurationChanging(value); - this._contentsecuritypolicyconfiguration = value; - this.OncontentsecuritypolicyconfigurationChanged(); + this.OnisduplicatedetectionenabledforonlinecreateupdateChanging(value); + this._isduplicatedetectionenabledforonlinecreateupdate = value; + this.OnisduplicatedetectionenabledforonlinecreateupdateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _contentsecuritypolicyconfiguration; - partial void OncontentsecuritypolicyconfigurationChanging(string value); - partial void OncontentsecuritypolicyconfigurationChanged(); + private global::System.Nullable _isduplicatedetectionenabledforonlinecreateupdate; + partial void OnisduplicatedetectionenabledforonlinecreateupdateChanging(global::System.Nullable value); + partial void OnisduplicatedetectionenabledforonlinecreateupdateChanged(); /// - /// There are no comments for Property inactivitytimeoutenabled in the schema. + /// There are no comments for Property _defaultemailserverprofileid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable inactivitytimeoutenabled + public virtual global::System.Nullable _defaultemailserverprofileid_value { get { - return this._inactivitytimeoutenabled; + return this.__defaultemailserverprofileid_value; } set { - this.OninactivitytimeoutenabledChanging(value); - this._inactivitytimeoutenabled = value; - this.OninactivitytimeoutenabledChanged(); + this.On_defaultemailserverprofileid_valueChanging(value); + this.__defaultemailserverprofileid_value = value; + this.On_defaultemailserverprofileid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _inactivitytimeoutenabled; - partial void OninactivitytimeoutenabledChanging(global::System.Nullable value); - partial void OninactivitytimeoutenabledChanged(); + private global::System.Nullable __defaultemailserverprofileid_value; + partial void On_defaultemailserverprofileid_valueChanging(global::System.Nullable value); + partial void On_defaultemailserverprofileid_valueChanged(); /// /// There are no comments for Property isresourcebookingexchangesyncenabled in the schema. /// @@ -533389,27 +533477,27 @@ public virtual string contentsecuritypolicyconfiguration partial void OnisautosaveenabledChanging(global::System.Nullable value); partial void OnisautosaveenabledChanged(); /// - /// There are no comments for Property supportuserid in the schema. + /// There are no comments for Property fiscalyearformatyear in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable supportuserid + public virtual global::System.Nullable fiscalyearformatyear { get { - return this._supportuserid; + return this._fiscalyearformatyear; } set { - this.OnsupportuseridChanging(value); - this._supportuserid = value; - this.OnsupportuseridChanged(); + this.OnfiscalyearformatyearChanging(value); + this._fiscalyearformatyear = value; + this.OnfiscalyearformatyearChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _supportuserid; - partial void OnsupportuseridChanging(global::System.Nullable value); - partial void OnsupportuseridChanged(); + private global::System.Nullable _fiscalyearformatyear; + partial void OnfiscalyearformatyearChanging(global::System.Nullable value); + partial void OnfiscalyearformatyearChanged(); /// /// There are no comments for Property currencydisplayoption in the schema. /// @@ -533477,49 +533565,27 @@ public virtual string tokenkey partial void OnpinpointlanguagecodeChanging(global::System.Nullable value); partial void OnpinpointlanguagecodeChanged(); /// - /// There are no comments for Property isappointmentattachmentsyncenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isappointmentattachmentsyncenabled - { - get - { - return this._isappointmentattachmentsyncenabled; - } - set - { - this.OnisappointmentattachmentsyncenabledChanging(value); - this._isappointmentattachmentsyncenabled = value; - this.OnisappointmentattachmentsyncenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isappointmentattachmentsyncenabled; - partial void OnisappointmentattachmentsyncenabledChanging(global::System.Nullable value); - partial void OnisappointmentattachmentsyncenabledChanged(); - /// - /// There are no comments for Property isenabledforallroles in the schema. + /// There are no comments for Property isactionsupportfeatureenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isenabledforallroles + public virtual global::System.Nullable isactionsupportfeatureenabled { get { - return this._isenabledforallroles; + return this._isactionsupportfeatureenabled; } set { - this.OnisenabledforallrolesChanging(value); - this._isenabledforallroles = value; - this.OnisenabledforallrolesChanged(); + this.OnisactionsupportfeatureenabledChanging(value); + this._isactionsupportfeatureenabled = value; + this.OnisactionsupportfeatureenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isenabledforallroles; - partial void OnisenabledforallrolesChanging(global::System.Nullable value); - partial void OnisenabledforallrolesChanged(); + private global::System.Nullable _isactionsupportfeatureenabled; + partial void OnisactionsupportfeatureenabledChanging(global::System.Nullable value); + partial void OnisactionsupportfeatureenabledChanged(); /// /// There are no comments for Property enablelpauthoring in the schema. /// @@ -533565,27 +533631,27 @@ public virtual string tokenkey partial void OnmobileofflineminlicensetrialChanging(global::System.Nullable value); partial void OnmobileofflineminlicensetrialChanged(); /// - /// There are no comments for Property calendartype in the schema. + /// There are no comments for Property auditretentionperiod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable calendartype + public virtual global::System.Nullable auditretentionperiod { get { - return this._calendartype; + return this._auditretentionperiod; } set { - this.OncalendartypeChanging(value); - this._calendartype = value; - this.OncalendartypeChanged(); + this.OnauditretentionperiodChanging(value); + this._auditretentionperiod = value; + this.OnauditretentionperiodChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _calendartype; - partial void OncalendartypeChanging(global::System.Nullable value); - partial void OncalendartypeChanged(); + private global::System.Nullable _auditretentionperiod; + partial void OnauditretentionperiodChanging(global::System.Nullable value); + partial void OnauditretentionperiodChanged(); /// /// There are no comments for Property officeappsautodeploymentenabled in the schema. /// @@ -533609,49 +533675,71 @@ public virtual string tokenkey partial void OnofficeappsautodeploymentenabledChanging(global::System.Nullable value); partial void OnofficeappsautodeploymentenabledChanged(); /// - /// There are no comments for Property hashfilterkeywords in the schema. + /// There are no comments for Property autoapplydefaultoncasecreate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string hashfilterkeywords + public virtual global::System.Nullable autoapplydefaultoncasecreate { get { - return this._hashfilterkeywords; + return this._autoapplydefaultoncasecreate; } set { - this.OnhashfilterkeywordsChanging(value); - this._hashfilterkeywords = value; - this.OnhashfilterkeywordsChanged(); + this.OnautoapplydefaultoncasecreateChanging(value); + this._autoapplydefaultoncasecreate = value; + this.OnautoapplydefaultoncasecreateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _hashfilterkeywords; - partial void OnhashfilterkeywordsChanging(string value); - partial void OnhashfilterkeywordsChanged(); + private global::System.Nullable _autoapplydefaultoncasecreate; + partial void OnautoapplydefaultoncasecreateChanging(global::System.Nullable value); + partial void OnautoapplydefaultoncasecreateChanged(); /// - /// There are no comments for Property ismsteamsusersyncenabled in the schema. + /// There are no comments for Property isnotesanalysisenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismsteamsusersyncenabled + public virtual global::System.Nullable isnotesanalysisenabled { get { - return this._ismsteamsusersyncenabled; + return this._isnotesanalysisenabled; } set { - this.OnismsteamsusersyncenabledChanging(value); - this._ismsteamsusersyncenabled = value; - this.OnismsteamsusersyncenabledChanged(); + this.OnisnotesanalysisenabledChanging(value); + this._isnotesanalysisenabled = value; + this.OnisnotesanalysisenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismsteamsusersyncenabled; - partial void OnismsteamsusersyncenabledChanging(global::System.Nullable value); - partial void OnismsteamsusersyncenabledChanged(); + private global::System.Nullable _isnotesanalysisenabled; + partial void OnisnotesanalysisenabledChanging(global::System.Nullable value); + partial void OnisnotesanalysisenabledChanged(); + /// + /// There are no comments for Property iscontactmailingaddresssyncenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable iscontactmailingaddresssyncenabled + { + get + { + return this._iscontactmailingaddresssyncenabled; + } + set + { + this.OniscontactmailingaddresssyncenabledChanging(value); + this._iscontactmailingaddresssyncenabled = value; + this.OniscontactmailingaddresssyncenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _iscontactmailingaddresssyncenabled; + partial void OniscontactmailingaddresssyncenabledChanging(global::System.Nullable value); + partial void OniscontactmailingaddresssyncenabledChanged(); /// /// There are no comments for Property ismailboxforcedunlockingenabled in the schema. /// @@ -533741,71 +533829,93 @@ public virtual string hashfilterkeywords partial void OntagmaxaggressivecyclesChanging(global::System.Nullable value); partial void OntagmaxaggressivecyclesChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _createdby_value { get { - return this._utcconversiontimezonecode; + return this.__createdby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property grantaccesstonetworkservice in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable grantaccesstonetworkservice + public virtual global::System.Nullable _modifiedby_value { get { - return this._grantaccesstonetworkservice; + return this.__modifiedby_value; } set { - this.OngrantaccesstonetworkserviceChanging(value); - this._grantaccesstonetworkservice = value; - this.OngrantaccesstonetworkserviceChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _grantaccesstonetworkservice; - partial void OngrantaccesstonetworkserviceChanging(global::System.Nullable value); - partial void OngrantaccesstonetworkserviceChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property isdelveactionhubintegrationenabled in the schema. + /// There are no comments for Property rendersecureiframeforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isdelveactionhubintegrationenabled + public virtual global::System.Nullable rendersecureiframeforemail { get { - return this._isdelveactionhubintegrationenabled; + return this._rendersecureiframeforemail; } set { - this.OnisdelveactionhubintegrationenabledChanging(value); - this._isdelveactionhubintegrationenabled = value; - this.OnisdelveactionhubintegrationenabledChanged(); + this.OnrendersecureiframeforemailChanging(value); + this._rendersecureiframeforemail = value; + this.OnrendersecureiframeforemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdelveactionhubintegrationenabled; - partial void OnisdelveactionhubintegrationenabledChanging(global::System.Nullable value); - partial void OnisdelveactionhubintegrationenabledChanged(); + private global::System.Nullable _rendersecureiframeforemail; + partial void OnrendersecureiframeforemailChanging(global::System.Nullable value); + partial void OnrendersecureiframeforemailChanged(); + /// + /// There are no comments for Property ispresenceenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ispresenceenabled + { + get + { + return this._ispresenceenabled; + } + set + { + this.OnispresenceenabledChanging(value); + this._ispresenceenabled = value; + this.OnispresenceenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ispresenceenabled; + partial void OnispresenceenabledChanging(global::System.Nullable value); + partial void OnispresenceenabledChanged(); /// /// There are no comments for Property allowoutlookscheduledsyncs in the schema. /// @@ -533851,49 +533961,137 @@ public virtual string hashfilterkeywords partial void OnmaximumdynamicpropertiesallowedChanging(global::System.Nullable value); partial void OnmaximumdynamicpropertiesallowedChanged(); /// - /// There are no comments for Property entityimageid in the schema. + /// There are no comments for Property numbergroupformat in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimageid + public virtual string numbergroupformat { get { - return this._entityimageid; + return this._numbergroupformat; } set { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); + this.OnnumbergroupformatChanging(value); + this._numbergroupformat = value; + this.OnnumbergroupformatChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); + private string _numbergroupformat; + partial void OnnumbergroupformatChanging(string value); + partial void OnnumbergroupformatChanged(); /// - /// There are no comments for Property trackingtokeniddigits in the schema. + /// There are no comments for Property blockedattachments in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable trackingtokeniddigits + public virtual string blockedattachments { get { - return this._trackingtokeniddigits; + return this._blockedattachments; } set { - this.OntrackingtokeniddigitsChanging(value); - this._trackingtokeniddigits = value; - this.OntrackingtokeniddigitsChanged(); + this.OnblockedattachmentsChanging(value); + this._blockedattachments = value; + this.OnblockedattachmentsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _trackingtokeniddigits; - partial void OntrackingtokeniddigitsChanging(global::System.Nullable value); - partial void OntrackingtokeniddigitsChanged(); + private string _blockedattachments; + partial void OnblockedattachmentsChanging(string value); + partial void OnblockedattachmentsChanged(); + /// + /// There are no comments for Property inactivitytimeoutenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable inactivitytimeoutenabled + { + get + { + return this._inactivitytimeoutenabled; + } + set + { + this.OninactivitytimeoutenabledChanging(value); + this._inactivitytimeoutenabled = value; + this.OninactivitytimeoutenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _inactivitytimeoutenabled; + partial void OninactivitytimeoutenabledChanging(global::System.Nullable value); + partial void OninactivitytimeoutenabledChanged(); + /// + /// There are no comments for Property trackingprefix in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string trackingprefix + { + get + { + return this._trackingprefix; + } + set + { + this.OntrackingprefixChanging(value); + this._trackingprefix = value; + this.OntrackingprefixChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _trackingprefix; + partial void OntrackingprefixChanging(string value); + partial void OntrackingprefixChanged(); + /// + /// There are no comments for Property unresolveemailaddressifmultiplematch in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable unresolveemailaddressifmultiplematch + { + get + { + return this._unresolveemailaddressifmultiplematch; + } + set + { + this.OnunresolveemailaddressifmultiplematchChanging(value); + this._unresolveemailaddressifmultiplematch = value; + this.OnunresolveemailaddressifmultiplematchChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _unresolveemailaddressifmultiplematch; + partial void OnunresolveemailaddressifmultiplematchChanging(global::System.Nullable value); + partial void OnunresolveemailaddressifmultiplematchChanged(); + /// + /// There are no comments for Property calendartype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable calendartype + { + get + { + return this._calendartype; + } + set + { + this.OncalendartypeChanging(value); + this._calendartype = value; + this.OncalendartypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _calendartype; + partial void OncalendartypeChanging(global::System.Nullable value); + partial void OncalendartypeChanged(); /// /// There are no comments for Property defaultrecurrenceendrangetype in the schema. /// @@ -533917,27 +534115,27 @@ public virtual string hashfilterkeywords partial void OndefaultrecurrenceendrangetypeChanging(global::System.Nullable value); partial void OndefaultrecurrenceendrangetypeChanged(); /// - /// There are no comments for Property yammernetworkpermalink in the schema. + /// There are no comments for Property sessiontimeoutenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string yammernetworkpermalink + public virtual global::System.Nullable sessiontimeoutenabled { get { - return this._yammernetworkpermalink; + return this._sessiontimeoutenabled; } set { - this.OnyammernetworkpermalinkChanging(value); - this._yammernetworkpermalink = value; - this.OnyammernetworkpermalinkChanged(); + this.OnsessiontimeoutenabledChanging(value); + this._sessiontimeoutenabled = value; + this.OnsessiontimeoutenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _yammernetworkpermalink; - partial void OnyammernetworkpermalinkChanging(string value); - partial void OnyammernetworkpermalinkChanged(); + private global::System.Nullable _sessiontimeoutenabled; + partial void OnsessiontimeoutenabledChanging(global::System.Nullable value); + partial void OnsessiontimeoutenabledChanged(); /// /// There are no comments for Property bulkoperationprefix in the schema. /// @@ -534005,49 +534203,27 @@ public virtual string bulkoperationprefix partial void OnfutureexpansionwindowChanging(global::System.Nullable value); partial void OnfutureexpansionwindowChanged(); /// - /// There are no comments for Property ispresenceenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ispresenceenabled - { - get - { - return this._ispresenceenabled; - } - set - { - this.OnispresenceenabledChanging(value); - this._ispresenceenabled = value; - this.OnispresenceenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ispresenceenabled; - partial void OnispresenceenabledChanging(global::System.Nullable value); - partial void OnispresenceenabledChanged(); - /// - /// There are no comments for Property pastexpansionwindow in the schema. + /// There are no comments for Property isexternalsearchindexenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pastexpansionwindow + public virtual global::System.Nullable isexternalsearchindexenabled { get { - return this._pastexpansionwindow; + return this._isexternalsearchindexenabled; } set { - this.OnpastexpansionwindowChanging(value); - this._pastexpansionwindow = value; - this.OnpastexpansionwindowChanged(); + this.OnisexternalsearchindexenabledChanging(value); + this._isexternalsearchindexenabled = value; + this.OnisexternalsearchindexenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pastexpansionwindow; - partial void OnpastexpansionwindowChanging(global::System.Nullable value); - partial void OnpastexpansionwindowChanged(); + private global::System.Nullable _isexternalsearchindexenabled; + partial void OnisexternalsearchindexenabledChanging(global::System.Nullable value); + partial void OnisexternalsearchindexenabledChanged(); /// /// There are no comments for Property maximumslakpiperentitywithactivesla in the schema. /// @@ -534071,27 +534247,27 @@ public virtual string bulkoperationprefix partial void OnmaximumslakpiperentitywithactiveslaChanging(global::System.Nullable value); partial void OnmaximumslakpiperentitywithactiveslaChanged(); /// - /// There are no comments for Property ismsteamssettingchangedbyuser in the schema. + /// There are no comments for Property yammerpostmethod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismsteamssettingchangedbyuser + public virtual global::System.Nullable yammerpostmethod { get { - return this._ismsteamssettingchangedbyuser; + return this._yammerpostmethod; } set { - this.OnismsteamssettingchangedbyuserChanging(value); - this._ismsteamssettingchangedbyuser = value; - this.OnismsteamssettingchangedbyuserChanged(); + this.OnyammerpostmethodChanging(value); + this._yammerpostmethod = value; + this.OnyammerpostmethodChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismsteamssettingchangedbyuser; - partial void OnismsteamssettingchangedbyuserChanging(global::System.Nullable value); - partial void OnismsteamssettingchangedbyuserChanged(); + private global::System.Nullable _yammerpostmethod; + partial void OnyammerpostmethodChanging(global::System.Nullable value); + partial void OnyammerpostmethodChanged(); /// /// There are no comments for Property picture in the schema. /// @@ -534115,6 +534291,28 @@ public virtual string picture partial void OnpictureChanging(string value); partial void OnpictureChanged(); /// + /// There are no comments for Property isdelveactionhubintegrationenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isdelveactionhubintegrationenabled + { + get + { + return this._isdelveactionhubintegrationenabled; + } + set + { + this.OnisdelveactionhubintegrationenabledChanging(value); + this._isdelveactionhubintegrationenabled = value; + this.OnisdelveactionhubintegrationenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isdelveactionhubintegrationenabled; + partial void OnisdelveactionhubintegrationenabledChanging(global::System.Nullable value); + partial void OnisdelveactionhubintegrationenabledChanged(); + /// /// There are no comments for Property azureschedulerjobcollectionname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -534137,27 +534335,27 @@ public virtual string azureschedulerjobcollectionname partial void OnazureschedulerjobcollectionnameChanging(string value); partial void OnazureschedulerjobcollectionnameChanged(); /// - /// There are no comments for Property numbergroupformat in the schema. + /// There are no comments for Property isofficegraphenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string numbergroupformat + public virtual global::System.Nullable isofficegraphenabled { get { - return this._numbergroupformat; + return this._isofficegraphenabled; } set { - this.OnnumbergroupformatChanging(value); - this._numbergroupformat = value; - this.OnnumbergroupformatChanged(); + this.OnisofficegraphenabledChanging(value); + this._isofficegraphenabled = value; + this.OnisofficegraphenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _numbergroupformat; - partial void OnnumbergroupformatChanging(string value); - partial void OnnumbergroupformatChanged(); + private global::System.Nullable _isofficegraphenabled; + partial void OnisofficegraphenabledChanging(global::System.Nullable value); + partial void OnisofficegraphenabledChanged(); /// /// There are no comments for Property orgdborgsettings in the schema. /// @@ -534181,115 +534379,115 @@ public virtual string orgdborgsettings partial void OnorgdborgsettingsChanging(string value); partial void OnorgdborgsettingsChanged(); /// - /// There are no comments for Property rierrorstatus in the schema. + /// There are no comments for Property trackingtokeniddigits in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable rierrorstatus + public virtual global::System.Nullable trackingtokeniddigits { get { - return this._rierrorstatus; + return this._trackingtokeniddigits; } set { - this.OnrierrorstatusChanging(value); - this._rierrorstatus = value; - this.OnrierrorstatusChanged(); + this.OntrackingtokeniddigitsChanging(value); + this._trackingtokeniddigits = value; + this.OntrackingtokeniddigitsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _rierrorstatus; - partial void OnrierrorstatusChanging(global::System.Nullable value); - partial void OnrierrorstatusChanged(); + private global::System.Nullable _trackingtokeniddigits; + partial void OntrackingtokeniddigitsChanging(global::System.Nullable value); + partial void OntrackingtokeniddigitsChanged(); /// - /// There are no comments for Property allowlegacydialogsembedding in the schema. + /// There are no comments for Property discountcalculationmethod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable allowlegacydialogsembedding + public virtual global::System.Nullable discountcalculationmethod { get { - return this._allowlegacydialogsembedding; + return this._discountcalculationmethod; } set { - this.OnallowlegacydialogsembeddingChanging(value); - this._allowlegacydialogsembedding = value; - this.OnallowlegacydialogsembeddingChanged(); + this.OndiscountcalculationmethodChanging(value); + this._discountcalculationmethod = value; + this.OndiscountcalculationmethodChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _allowlegacydialogsembedding; - partial void OnallowlegacydialogsembeddingChanging(global::System.Nullable value); - partial void OnallowlegacydialogsembeddingChanged(); + private global::System.Nullable _discountcalculationmethod; + partial void OndiscountcalculationmethodChanging(global::System.Nullable value); + partial void OndiscountcalculationmethodChanged(); /// - /// There are no comments for Property mobileofflineminlicenseprod in the schema. + /// There are no comments for Property ismanualsalesforecastingenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable mobileofflineminlicenseprod + public virtual global::System.Nullable ismanualsalesforecastingenabled { get { - return this._mobileofflineminlicenseprod; + return this._ismanualsalesforecastingenabled; } set { - this.OnmobileofflineminlicenseprodChanging(value); - this._mobileofflineminlicenseprod = value; - this.OnmobileofflineminlicenseprodChanged(); + this.OnismanualsalesforecastingenabledChanging(value); + this._ismanualsalesforecastingenabled = value; + this.OnismanualsalesforecastingenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _mobileofflineminlicenseprod; - partial void OnmobileofflineminlicenseprodChanging(global::System.Nullable value); - partial void OnmobileofflineminlicenseprodChanged(); + private global::System.Nullable _ismanualsalesforecastingenabled; + partial void OnismanualsalesforecastingenabledChanging(global::System.Nullable value); + partial void OnismanualsalesforecastingenabledChanged(); /// - /// There are no comments for Property maxappointmentdurationdays in the schema. + /// There are no comments for Property mobileofflineminlicenseprod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable maxappointmentdurationdays + public virtual global::System.Nullable mobileofflineminlicenseprod { get { - return this._maxappointmentdurationdays; + return this._mobileofflineminlicenseprod; } set { - this.OnmaxappointmentdurationdaysChanging(value); - this._maxappointmentdurationdays = value; - this.OnmaxappointmentdurationdaysChanged(); + this.OnmobileofflineminlicenseprodChanging(value); + this._mobileofflineminlicenseprod = value; + this.OnmobileofflineminlicenseprodChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _maxappointmentdurationdays; - partial void OnmaxappointmentdurationdaysChanging(global::System.Nullable value); - partial void OnmaxappointmentdurationdaysChanged(); + private global::System.Nullable _mobileofflineminlicenseprod; + partial void OnmobileofflineminlicenseprodChanging(global::System.Nullable value); + partial void OnmobileofflineminlicenseprodChanged(); /// - /// There are no comments for Property minaddressbooksyncinterval in the schema. + /// There are no comments for Property fiscalyeardisplaycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable minaddressbooksyncinterval + public virtual global::System.Nullable fiscalyeardisplaycode { get { - return this._minaddressbooksyncinterval; + return this._fiscalyeardisplaycode; } set { - this.OnminaddressbooksyncintervalChanging(value); - this._minaddressbooksyncinterval = value; - this.OnminaddressbooksyncintervalChanged(); + this.OnfiscalyeardisplaycodeChanging(value); + this._fiscalyeardisplaycode = value; + this.OnfiscalyeardisplaycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _minaddressbooksyncinterval; - partial void OnminaddressbooksyncintervalChanging(global::System.Nullable value); - partial void OnminaddressbooksyncintervalChanged(); + private global::System.Nullable _fiscalyeardisplaycode; + partial void OnfiscalyeardisplaycodeChanging(global::System.Nullable value); + partial void OnfiscalyeardisplaycodeChanged(); /// /// There are no comments for Property tracelogmaximumageindays in the schema. /// @@ -534313,71 +534511,71 @@ public virtual string orgdborgsettings partial void OntracelogmaximumageindaysChanging(global::System.Nullable value); partial void OntracelogmaximumageindaysChanged(); /// - /// There are no comments for Property isduplicatedetectionenabledforimport in the schema. + /// There are no comments for Property goalrollupexpirytime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isduplicatedetectionenabledforimport + public virtual global::System.Nullable goalrollupexpirytime { get { - return this._isduplicatedetectionenabledforimport; + return this._goalrollupexpirytime; } set { - this.OnisduplicatedetectionenabledforimportChanging(value); - this._isduplicatedetectionenabledforimport = value; - this.OnisduplicatedetectionenabledforimportChanged(); + this.OngoalrollupexpirytimeChanging(value); + this._goalrollupexpirytime = value; + this.OngoalrollupexpirytimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isduplicatedetectionenabledforimport; - partial void OnisduplicatedetectionenabledforimportChanging(global::System.Nullable value); - partial void OnisduplicatedetectionenabledforimportChanged(); + private global::System.Nullable _goalrollupexpirytime; + partial void OngoalrollupexpirytimeChanging(global::System.Nullable value); + partial void OngoalrollupexpirytimeChanged(); /// - /// There are no comments for Property iscustomcontrolsincanvasappsenabled in the schema. + /// There are no comments for Property enforcereadonlyplugins in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable iscustomcontrolsincanvasappsenabled + public virtual global::System.Nullable enforcereadonlyplugins { get { - return this._iscustomcontrolsincanvasappsenabled; + return this._enforcereadonlyplugins; } set { - this.OniscustomcontrolsincanvasappsenabledChanging(value); - this._iscustomcontrolsincanvasappsenabled = value; - this.OniscustomcontrolsincanvasappsenabledChanged(); + this.OnenforcereadonlypluginsChanging(value); + this._enforcereadonlyplugins = value; + this.OnenforcereadonlypluginsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _iscustomcontrolsincanvasappsenabled; - partial void OniscustomcontrolsincanvasappsenabledChanging(global::System.Nullable value); - partial void OniscustomcontrolsincanvasappsenabledChanged(); + private global::System.Nullable _enforcereadonlyplugins; + partial void OnenforcereadonlypluginsChanging(global::System.Nullable value); + partial void OnenforcereadonlypluginsChanged(); /// - /// There are no comments for Property enforcereadonlyplugins in the schema. + /// There are no comments for Property ismsteamsusersyncenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable enforcereadonlyplugins + public virtual global::System.Nullable ismsteamsusersyncenabled { get { - return this._enforcereadonlyplugins; + return this._ismsteamsusersyncenabled; } set { - this.OnenforcereadonlypluginsChanging(value); - this._enforcereadonlyplugins = value; - this.OnenforcereadonlypluginsChanged(); + this.OnismsteamsusersyncenabledChanging(value); + this._ismsteamsusersyncenabled = value; + this.OnismsteamsusersyncenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _enforcereadonlyplugins; - partial void OnenforcereadonlypluginsChanging(global::System.Nullable value); - partial void OnenforcereadonlypluginsChanged(); + private global::System.Nullable _ismsteamsusersyncenabled; + partial void OnismsteamsusersyncenabledChanging(global::System.Nullable value); + partial void OnismsteamsusersyncenabledChanged(); /// /// There are no comments for Property createproductswithoutparentinactivestate in the schema. /// @@ -534401,27 +534599,27 @@ public virtual string orgdborgsettings partial void OncreateproductswithoutparentinactivestateChanging(global::System.Nullable value); partial void OncreateproductswithoutparentinactivestateChanged(); /// - /// There are no comments for Property enableunifiedinterfaceshellrefresh in the schema. + /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable enableunifiedinterfaceshellrefresh + public virtual byte[] entityimage { get { - return this._enableunifiedinterfaceshellrefresh; + return this._entityimage; } set { - this.OnenableunifiedinterfaceshellrefreshChanging(value); - this._enableunifiedinterfaceshellrefresh = value; - this.OnenableunifiedinterfaceshellrefreshChanged(); + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _enableunifiedinterfaceshellrefresh; - partial void OnenableunifiedinterfaceshellrefreshChanging(global::System.Nullable value); - partial void OnenableunifiedinterfaceshellrefreshChanged(); + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); /// /// There are no comments for Property textanalyticsenabled in the schema. /// @@ -534489,6 +534687,28 @@ public virtual string orgdborgsettings partial void OnusereadformChanging(global::System.Nullable value); partial void OnusereadformChanged(); /// + /// There are no comments for Property ismobileclientondemandsyncenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismobileclientondemandsyncenabled + { + get + { + return this._ismobileclientondemandsyncenabled; + } + set + { + this.OnismobileclientondemandsyncenabledChanging(value); + this._ismobileclientondemandsyncenabled = value; + this.OnismobileclientondemandsyncenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismobileclientondemandsyncenabled; + partial void OnismobileclientondemandsyncenabledChanging(global::System.Nullable value); + partial void OnismobileclientondemandsyncenabledChanged(); + /// /// There are no comments for Property basecurrencysymbol in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -534599,27 +534819,27 @@ public virtual string bingmapsapikey partial void OnbingmapsapikeyChanging(string value); partial void OnbingmapsapikeyChanged(); /// - /// There are no comments for Property isactionsupportfeatureenabled in the schema. + /// There are no comments for Property ismobileofflineenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isactionsupportfeatureenabled + public virtual global::System.Nullable ismobileofflineenabled { get { - return this._isactionsupportfeatureenabled; + return this._ismobileofflineenabled; } set { - this.OnisactionsupportfeatureenabledChanging(value); - this._isactionsupportfeatureenabled = value; - this.OnisactionsupportfeatureenabledChanged(); + this.OnismobileofflineenabledChanging(value); + this._ismobileofflineenabled = value; + this.OnismobileofflineenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isactionsupportfeatureenabled; - partial void OnisactionsupportfeatureenabledChanging(global::System.Nullable value); - partial void OnisactionsupportfeatureenabledChanged(); + private global::System.Nullable _ismobileofflineenabled; + partial void OnismobileofflineenabledChanging(global::System.Nullable value); + partial void OnismobileofflineenabledChanged(); /// /// There are no comments for Property restrictstatusupdate in the schema. /// @@ -534643,28 +534863,6 @@ public virtual string bingmapsapikey partial void OnrestrictstatusupdateChanging(global::System.Nullable value); partial void OnrestrictstatusupdateChanged(); /// - /// There are no comments for Property defaultthemedata in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string defaultthemedata - { - get - { - return this._defaultthemedata; - } - set - { - this.OndefaultthemedataChanging(value); - this._defaultthemedata = value; - this.OndefaultthemedataChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _defaultthemedata; - partial void OndefaultthemedataChanging(string value); - partial void OndefaultthemedataChanged(); - /// /// There are no comments for Property isonedriveenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -534687,27 +534885,27 @@ public virtual string defaultthemedata partial void OnisonedriveenabledChanging(global::System.Nullable value); partial void OnisonedriveenabledChanged(); /// - /// There are no comments for Property minoutlooksyncinterval in the schema. + /// There are no comments for Property externalpartycorrelationkeys in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable minoutlooksyncinterval + public virtual string externalpartycorrelationkeys { get { - return this._minoutlooksyncinterval; + return this._externalpartycorrelationkeys; } set { - this.OnminoutlooksyncintervalChanging(value); - this._minoutlooksyncinterval = value; - this.OnminoutlooksyncintervalChanged(); + this.OnexternalpartycorrelationkeysChanging(value); + this._externalpartycorrelationkeys = value; + this.OnexternalpartycorrelationkeysChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _minoutlooksyncinterval; - partial void OnminoutlooksyncintervalChanging(global::System.Nullable value); - partial void OnminoutlooksyncintervalChanged(); + private string _externalpartycorrelationkeys; + partial void OnexternalpartycorrelationkeysChanging(string value); + partial void OnexternalpartycorrelationkeysChanged(); /// /// There are no comments for Property getstartedpanecontentenabled in the schema. /// @@ -534731,49 +534929,49 @@ public virtual string defaultthemedata partial void OngetstartedpanecontentenabledChanging(global::System.Nullable value); partial void OngetstartedpanecontentenabledChanged(); /// - /// There are no comments for Property auditretentionperiodv2 in the schema. + /// There are no comments for Property expiresubscriptionsindays in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable auditretentionperiodv2 + public virtual global::System.Nullable expiresubscriptionsindays { get { - return this._auditretentionperiodv2; + return this._expiresubscriptionsindays; } set { - this.Onauditretentionperiodv2Changing(value); - this._auditretentionperiodv2 = value; - this.Onauditretentionperiodv2Changed(); + this.OnexpiresubscriptionsindaysChanging(value); + this._expiresubscriptionsindays = value; + this.OnexpiresubscriptionsindaysChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _auditretentionperiodv2; - partial void Onauditretentionperiodv2Changing(global::System.Nullable value); - partial void Onauditretentionperiodv2Changed(); + private global::System.Nullable _expiresubscriptionsindays; + partial void OnexpiresubscriptionsindaysChanging(global::System.Nullable value); + partial void OnexpiresubscriptionsindaysChanged(); /// - /// There are no comments for Property negativeformatcode in the schema. + /// There are no comments for Property istextwrapenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable negativeformatcode + public virtual global::System.Nullable istextwrapenabled { get { - return this._negativeformatcode; + return this._istextwrapenabled; } set { - this.OnnegativeformatcodeChanging(value); - this._negativeformatcode = value; - this.OnnegativeformatcodeChanged(); + this.OnistextwrapenabledChanging(value); + this._istextwrapenabled = value; + this.OnistextwrapenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _negativeformatcode; - partial void OnnegativeformatcodeChanging(global::System.Nullable value); - partial void OnnegativeformatcodeChanged(); + private global::System.Nullable _istextwrapenabled; + partial void OnistextwrapenabledChanging(global::System.Nullable value); + partial void OnistextwrapenabledChanged(); /// /// There are no comments for Property ispricelistmandatory in the schema. /// @@ -534819,49 +535017,27 @@ public virtual string timeseparator partial void OntimeseparatorChanging(string value); partial void OntimeseparatorChanged(); /// - /// There are no comments for Property maxproductsinbundle in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable maxproductsinbundle - { - get - { - return this._maxproductsinbundle; - } - set - { - this.OnmaxproductsinbundleChanging(value); - this._maxproductsinbundle = value; - this.OnmaxproductsinbundleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _maxproductsinbundle; - partial void OnmaxproductsinbundleChanging(global::System.Nullable value); - partial void OnmaxproductsinbundleChanged(); - /// - /// There are no comments for Property slapausestates in the schema. + /// There are no comments for Property nexttrackingnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string slapausestates + public virtual global::System.Nullable nexttrackingnumber { get { - return this._slapausestates; + return this._nexttrackingnumber; } set { - this.OnslapausestatesChanging(value); - this._slapausestates = value; - this.OnslapausestatesChanged(); + this.OnnexttrackingnumberChanging(value); + this._nexttrackingnumber = value; + this.OnnexttrackingnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _slapausestates; - partial void OnslapausestatesChanging(string value); - partial void OnslapausestatesChanged(); + private global::System.Nullable _nexttrackingnumber; + partial void OnnexttrackingnumberChanging(global::System.Nullable value); + partial void OnnexttrackingnumberChanged(); /// /// There are no comments for Property v3calloutconfighash in the schema. /// @@ -534907,6 +535083,28 @@ public virtual string v3calloutconfighash partial void OnplugintracelogsettingChanging(global::System.Nullable value); partial void OnplugintracelogsettingChanged(); /// + /// There are no comments for Property yearstartweekcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable yearstartweekcode + { + get + { + return this._yearstartweekcode; + } + set + { + this.OnyearstartweekcodeChanging(value); + this._yearstartweekcode = value; + this.OnyearstartweekcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _yearstartweekcode; + partial void OnyearstartweekcodeChanging(global::System.Nullable value); + partial void OnyearstartweekcodeChanged(); + /// /// There are no comments for Property syncoptinselectionstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -534995,6 +535193,28 @@ public virtual string v3calloutconfighash partial void OnbasecurrencyprecisionChanging(global::System.Nullable value); partial void OnbasecurrencyprecisionChanged(); /// + /// There are no comments for Property delegatedadminuserid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable delegatedadminuserid + { + get + { + return this._delegatedadminuserid; + } + set + { + this.OndelegatedadminuseridChanging(value); + this._delegatedadminuserid = value; + this.OndelegatedadminuseridChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _delegatedadminuserid; + partial void OndelegatedadminuseridChanging(global::System.Nullable value); + partial void OndelegatedadminuseridChanged(); + /// /// There are no comments for Property socialinsightsinstance in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -535039,28 +535259,6 @@ public virtual string socialinsightsinstance partial void OnishierarchicalsecuritymodelenabledChanging(global::System.Nullable value); partial void OnishierarchicalsecuritymodelenabledChanged(); /// - /// There are no comments for Property privacystatementurl in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string privacystatementurl - { - get - { - return this._privacystatementurl; - } - set - { - this.OnprivacystatementurlChanging(value); - this._privacystatementurl = value; - this.OnprivacystatementurlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _privacystatementurl; - partial void OnprivacystatementurlChanging(string value); - partial void OnprivacystatementurlChanged(); - /// /// There are no comments for Property iswriteinproductsallowed in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -535237,6 +535435,28 @@ public virtual string privacystatementurl partial void OnsyncbulkoperationbatchsizeChanging(global::System.Nullable value); partial void OnsyncbulkoperationbatchsizeChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property tagpollingperiod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -535281,27 +535501,27 @@ public virtual string privacystatementurl partial void OnsuppressslaChanging(global::System.Nullable value); partial void OnsuppressslaChanged(); /// - /// There are no comments for Property clientfeatureset in the schema. + /// There are no comments for Property reportinggroupname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string clientfeatureset + public virtual string reportinggroupname { get { - return this._clientfeatureset; + return this._reportinggroupname; } set { - this.OnclientfeaturesetChanging(value); - this._clientfeatureset = value; - this.OnclientfeaturesetChanged(); + this.OnreportinggroupnameChanging(value); + this._reportinggroupname = value; + this.OnreportinggroupnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _clientfeatureset; - partial void OnclientfeaturesetChanging(string value); - partial void OnclientfeaturesetChanged(); + private string _reportinggroupname; + partial void OnreportinggroupnameChanging(string value); + partial void OnreportinggroupnameChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -535325,71 +535545,49 @@ public virtual string clientfeatureset partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property maxverboseloggingmailbox in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable maxverboseloggingmailbox - { - get - { - return this._maxverboseloggingmailbox; - } - set - { - this.OnmaxverboseloggingmailboxChanging(value); - this._maxverboseloggingmailbox = value; - this.OnmaxverboseloggingmailboxChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _maxverboseloggingmailbox; - partial void OnmaxverboseloggingmailboxChanging(global::System.Nullable value); - partial void OnmaxverboseloggingmailboxChanged(); - /// - /// There are no comments for Property ismanualsalesforecastingenabled in the schema. + /// There are no comments for Property isemailmonitoringallowed in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanualsalesforecastingenabled + public virtual global::System.Nullable isemailmonitoringallowed { get { - return this._ismanualsalesforecastingenabled; + return this._isemailmonitoringallowed; } set { - this.OnismanualsalesforecastingenabledChanging(value); - this._ismanualsalesforecastingenabled = value; - this.OnismanualsalesforecastingenabledChanged(); + this.OnisemailmonitoringallowedChanging(value); + this._isemailmonitoringallowed = value; + this.OnisemailmonitoringallowedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanualsalesforecastingenabled; - partial void OnismanualsalesforecastingenabledChanging(global::System.Nullable value); - partial void OnismanualsalesforecastingenabledChanged(); + private global::System.Nullable _isemailmonitoringallowed; + partial void OnisemailmonitoringallowedChanging(global::System.Nullable value); + partial void OnisemailmonitoringallowedChanged(); /// - /// There are no comments for Property isduplicatedetectionenabled in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isduplicatedetectionenabled + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._isduplicatedetectionenabled; + return this._utcconversiontimezonecode; } set { - this.OnisduplicatedetectionenabledChanging(value); - this._isduplicatedetectionenabled = value; - this.OnisduplicatedetectionenabledChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isduplicatedetectionenabled; - partial void OnisduplicatedetectionenabledChanging(global::System.Nullable value); - partial void OnisduplicatedetectionenabledChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property schemanameprefix in the schema. /// @@ -535435,49 +535633,49 @@ public virtual string schemanameprefix partial void OnpaipreviewscenarioenabledChanging(global::System.Nullable value); partial void OnpaipreviewscenarioenabledChanged(); /// - /// There are no comments for Property autoapplysla in the schema. + /// There are no comments for Property quickfindrecordlimitenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable autoapplysla + public virtual global::System.Nullable quickfindrecordlimitenabled { get { - return this._autoapplysla; + return this._quickfindrecordlimitenabled; } set { - this.OnautoapplyslaChanging(value); - this._autoapplysla = value; - this.OnautoapplyslaChanged(); + this.OnquickfindrecordlimitenabledChanging(value); + this._quickfindrecordlimitenabled = value; + this.OnquickfindrecordlimitenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _autoapplysla; - partial void OnautoapplyslaChanging(global::System.Nullable value); - partial void OnautoapplyslaChanged(); + private global::System.Nullable _quickfindrecordlimitenabled; + partial void OnquickfindrecordlimitenabledChanging(global::System.Nullable value); + partial void OnquickfindrecordlimitenabledChanged(); /// - /// There are no comments for Property ismsteamscollaborationenabled in the schema. + /// There are no comments for Property isfiscalperiodmonthbased in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismsteamscollaborationenabled + public virtual global::System.Nullable isfiscalperiodmonthbased { get { - return this._ismsteamscollaborationenabled; + return this._isfiscalperiodmonthbased; } set { - this.OnismsteamscollaborationenabledChanging(value); - this._ismsteamscollaborationenabled = value; - this.OnismsteamscollaborationenabledChanged(); + this.OnisfiscalperiodmonthbasedChanging(value); + this._isfiscalperiodmonthbased = value; + this.OnisfiscalperiodmonthbasedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismsteamscollaborationenabled; - partial void OnismsteamscollaborationenabledChanging(global::System.Nullable value); - partial void OnismsteamscollaborationenabledChanged(); + private global::System.Nullable _isfiscalperiodmonthbased; + partial void OnisfiscalperiodmonthbasedChanging(global::System.Nullable value); + partial void OnisfiscalperiodmonthbasedChanged(); /// /// There are no comments for Property incomingemailexchangeemailretrievalbatchsize in the schema. /// @@ -535523,71 +535721,49 @@ public virtual string schemanameprefix partial void OnismailboxinactivebackoffenabledChanging(global::System.Nullable value); partial void OnismailboxinactivebackoffenabledChanged(); /// - /// There are no comments for Property cortanaproactiveexperienceenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable cortanaproactiveexperienceenabled - { - get - { - return this._cortanaproactiveexperienceenabled; - } - set - { - this.OncortanaproactiveexperienceenabledChanging(value); - this._cortanaproactiveexperienceenabled = value; - this.OncortanaproactiveexperienceenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _cortanaproactiveexperienceenabled; - partial void OncortanaproactiveexperienceenabledChanging(global::System.Nullable value); - partial void OncortanaproactiveexperienceenabledChanged(); - /// - /// There are no comments for Property goalrollupexpirytime in the schema. + /// There are no comments for Property globalhelpurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable goalrollupexpirytime + public virtual string globalhelpurl { get { - return this._goalrollupexpirytime; + return this._globalhelpurl; } set { - this.OngoalrollupexpirytimeChanging(value); - this._goalrollupexpirytime = value; - this.OngoalrollupexpirytimeChanged(); + this.OnglobalhelpurlChanging(value); + this._globalhelpurl = value; + this.OnglobalhelpurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _goalrollupexpirytime; - partial void OngoalrollupexpirytimeChanging(global::System.Nullable value); - partial void OngoalrollupexpirytimeChanged(); + private string _globalhelpurl; + partial void OnglobalhelpurlChanging(string value); + partial void OnglobalhelpurlChanged(); /// - /// There are no comments for Property showkbarticledeprecationnotification in the schema. + /// There are no comments for Property supportuserid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable showkbarticledeprecationnotification + public virtual global::System.Nullable supportuserid { get { - return this._showkbarticledeprecationnotification; + return this._supportuserid; } set { - this.OnshowkbarticledeprecationnotificationChanging(value); - this._showkbarticledeprecationnotification = value; - this.OnshowkbarticledeprecationnotificationChanged(); + this.OnsupportuseridChanging(value); + this._supportuserid = value; + this.OnsupportuseridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _showkbarticledeprecationnotification; - partial void OnshowkbarticledeprecationnotificationChanging(global::System.Nullable value); - partial void OnshowkbarticledeprecationnotificationChanged(); + private global::System.Nullable _supportuserid; + partial void OnsupportuseridChanging(global::System.Nullable value); + partial void OnsupportuseridChanged(); /// /// There are no comments for Property isappmode in the schema. /// @@ -535611,27 +535787,27 @@ public virtual string schemanameprefix partial void OnisappmodeChanging(global::System.Nullable value); partial void OnisappmodeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property iscustomcontrolsincanvasappsenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable iscustomcontrolsincanvasappsenabled { get { - return this.__modifiedby_value; + return this._iscustomcontrolsincanvasappsenabled; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OniscustomcontrolsincanvasappsenabledChanging(value); + this._iscustomcontrolsincanvasappsenabled = value; + this.OniscustomcontrolsincanvasappsenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _iscustomcontrolsincanvasappsenabled; + partial void OniscustomcontrolsincanvasappsenabledChanging(global::System.Nullable value); + partial void OniscustomcontrolsincanvasappsenabledChanged(); /// /// There are no comments for Property contractprefix in the schema. /// @@ -535677,27 +535853,71 @@ public virtual string contractprefix partial void OnallowautounsubscribeChanging(global::System.Nullable value); partial void OnallowautounsubscribeChanged(); /// - /// There are no comments for Property ignoreinternalemail in the schema. + /// There are no comments for Property quoteprefix in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ignoreinternalemail + public virtual string quoteprefix { get { - return this._ignoreinternalemail; + return this._quoteprefix; } set { - this.OnignoreinternalemailChanging(value); - this._ignoreinternalemail = value; - this.OnignoreinternalemailChanged(); + this.OnquoteprefixChanging(value); + this._quoteprefix = value; + this.OnquoteprefixChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ignoreinternalemail; - partial void OnignoreinternalemailChanging(global::System.Nullable value); - partial void OnignoreinternalemailChanged(); + private string _quoteprefix; + partial void OnquoteprefixChanging(string value); + partial void OnquoteprefixChanged(); + /// + /// There are no comments for Property pmdesignator in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string pmdesignator + { + get + { + return this._pmdesignator; + } + set + { + this.OnpmdesignatorChanging(value); + this._pmdesignator = value; + this.OnpmdesignatorChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _pmdesignator; + partial void OnpmdesignatorChanging(string value); + partial void OnpmdesignatorChanged(); + /// + /// There are no comments for Property auditretentionperiodv2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable auditretentionperiodv2 + { + get + { + return this._auditretentionperiodv2; + } + set + { + this.Onauditretentionperiodv2Changing(value); + this._auditretentionperiodv2 = value; + this.Onauditretentionperiodv2Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _auditretentionperiodv2; + partial void Onauditretentionperiodv2Changing(global::System.Nullable value); + partial void Onauditretentionperiodv2Changed(); /// /// There are no comments for Property ispreviewforautocaptureenabled in the schema. /// @@ -535831,71 +536051,71 @@ public virtual string numberformat partial void OnmaxactionstepsinbpfChanging(global::System.Nullable value); partial void OnmaxactionstepsinbpfChanged(); /// - /// There are no comments for Property socialinsightstermsaccepted in the schema. + /// There are no comments for Property autoapplysla in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable socialinsightstermsaccepted + public virtual global::System.Nullable autoapplysla { get { - return this._socialinsightstermsaccepted; + return this._autoapplysla; } set { - this.OnsocialinsightstermsacceptedChanging(value); - this._socialinsightstermsaccepted = value; - this.OnsocialinsightstermsacceptedChanged(); + this.OnautoapplyslaChanging(value); + this._autoapplysla = value; + this.OnautoapplyslaChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _socialinsightstermsaccepted; - partial void OnsocialinsightstermsacceptedChanging(global::System.Nullable value); - partial void OnsocialinsightstermsacceptedChanged(); + private global::System.Nullable _autoapplysla; + partial void OnautoapplyslaChanging(global::System.Nullable value); + partial void OnautoapplyslaChanged(); /// - /// There are no comments for Property defaultemailsettings in the schema. + /// There are no comments for Property socialinsightstermsaccepted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string defaultemailsettings + public virtual global::System.Nullable socialinsightstermsaccepted { get { - return this._defaultemailsettings; + return this._socialinsightstermsaccepted; } set { - this.OndefaultemailsettingsChanging(value); - this._defaultemailsettings = value; - this.OndefaultemailsettingsChanged(); + this.OnsocialinsightstermsacceptedChanging(value); + this._socialinsightstermsaccepted = value; + this.OnsocialinsightstermsacceptedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _defaultemailsettings; - partial void OndefaultemailsettingsChanging(string value); - partial void OndefaultemailsettingsChanged(); + private global::System.Nullable _socialinsightstermsaccepted; + partial void OnsocialinsightstermsacceptedChanging(global::System.Nullable value); + partial void OnsocialinsightstermsacceptedChanged(); /// - /// There are no comments for Property generatealertsforerrors in the schema. + /// There are no comments for Property isdisabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable generatealertsforerrors + public virtual global::System.Nullable isdisabled { get { - return this._generatealertsforerrors; + return this._isdisabled; } set { - this.OngeneratealertsforerrorsChanging(value); - this._generatealertsforerrors = value; - this.OngeneratealertsforerrorsChanged(); + this.OnisdisabledChanging(value); + this._isdisabled = value; + this.OnisdisabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _generatealertsforerrors; - partial void OngeneratealertsforerrorsChanging(global::System.Nullable value); - partial void OngeneratealertsforerrorsChanged(); + private global::System.Nullable _isdisabled; + partial void OnisdisabledChanging(global::System.Nullable value); + partial void OnisdisabledChanged(); /// /// There are no comments for Property isplaybookenabled in the schema. /// @@ -536029,6 +536249,28 @@ public virtual string sqlaccessgroupname partial void OnpowerbifeatureenabledChanging(global::System.Nullable value); partial void OnpowerbifeatureenabledChanged(); /// + /// There are no comments for Property fiscalcalendarstart in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable fiscalcalendarstart + { + get + { + return this._fiscalcalendarstart; + } + set + { + this.OnfiscalcalendarstartChanging(value); + this._fiscalcalendarstart = value; + this.OnfiscalcalendarstartChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _fiscalcalendarstart; + partial void OnfiscalcalendarstartChanging(global::System.Nullable value); + partial void OnfiscalcalendarstartChanged(); + /// /// There are no comments for Property fullnameconventioncode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -536117,71 +536359,71 @@ public virtual string sqlaccessgroupname partial void OnusequickfindviewforgridsearchChanging(global::System.Nullable value); partial void OnusequickfindviewforgridsearchChanged(); /// - /// There are no comments for Property discountcalculationmethod in the schema. + /// There are no comments for Property organizationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable discountcalculationmethod + public virtual global::System.Nullable organizationid { get { - return this._discountcalculationmethod; + return this._organizationid; } set { - this.OndiscountcalculationmethodChanging(value); - this._discountcalculationmethod = value; - this.OndiscountcalculationmethodChanged(); + this.OnorganizationidChanging(value); + this._organizationid = value; + this.OnorganizationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _discountcalculationmethod; - partial void OndiscountcalculationmethodChanging(global::System.Nullable value); - partial void OndiscountcalculationmethodChanged(); + private global::System.Nullable _organizationid; + partial void OnorganizationidChanging(global::System.Nullable value); + partial void OnorganizationidChanged(); /// - /// There are no comments for Property organizationid in the schema. + /// There are no comments for Property mailboxpermanentissueminrange in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable organizationid + public virtual global::System.Nullable mailboxpermanentissueminrange { get { - return this._organizationid; + return this._mailboxpermanentissueminrange; } set { - this.OnorganizationidChanging(value); - this._organizationid = value; - this.OnorganizationidChanged(); + this.OnmailboxpermanentissueminrangeChanging(value); + this._mailboxpermanentissueminrange = value; + this.OnmailboxpermanentissueminrangeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _organizationid; - partial void OnorganizationidChanging(global::System.Nullable value); - partial void OnorganizationidChanged(); + private global::System.Nullable _mailboxpermanentissueminrange; + partial void OnmailboxpermanentissueminrangeChanging(global::System.Nullable value); + partial void OnmailboxpermanentissueminrangeChanged(); /// - /// There are no comments for Property maximumactivebusinessprocessflowsallowedperentity in the schema. + /// There are no comments for Property allowentityonlyaudit in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable maximumactivebusinessprocessflowsallowedperentity + public virtual global::System.Nullable allowentityonlyaudit { get { - return this._maximumactivebusinessprocessflowsallowedperentity; + return this._allowentityonlyaudit; } set { - this.OnmaximumactivebusinessprocessflowsallowedperentityChanging(value); - this._maximumactivebusinessprocessflowsallowedperentity = value; - this.OnmaximumactivebusinessprocessflowsallowedperentityChanged(); + this.OnallowentityonlyauditChanging(value); + this._allowentityonlyaudit = value; + this.OnallowentityonlyauditChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _maximumactivebusinessprocessflowsallowedperentity; - partial void OnmaximumactivebusinessprocessflowsallowedperentityChanging(global::System.Nullable value); - partial void OnmaximumactivebusinessprocessflowsallowedperentityChanged(); + private global::System.Nullable _allowentityonlyaudit; + partial void OnallowentityonlyauditChanging(global::System.Nullable value); + partial void OnallowentityonlyauditChanged(); /// /// There are no comments for Property kmsettings in the schema. /// @@ -536227,28 +536469,6 @@ public virtual string kmsettings partial void OnisfulltextsearchenabledChanging(global::System.Nullable value); partial void OnisfulltextsearchenabledChanged(); /// - /// There are no comments for Property externalpartycorrelationkeys in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string externalpartycorrelationkeys - { - get - { - return this._externalpartycorrelationkeys; - } - set - { - this.OnexternalpartycorrelationkeysChanging(value); - this._externalpartycorrelationkeys = value; - this.OnexternalpartycorrelationkeysChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _externalpartycorrelationkeys; - partial void OnexternalpartycorrelationkeysChanging(string value); - partial void OnexternalpartycorrelationkeysChanged(); - /// /// There are no comments for Property hashminaddresscount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -536271,27 +536491,27 @@ public virtual string externalpartycorrelationkeys partial void OnhashminaddresscountChanging(global::System.Nullable value); partial void OnhashminaddresscountChanged(); /// - /// There are no comments for Property dateseparator in the schema. + /// There are no comments for Property clientfeatureset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string dateseparator + public virtual string clientfeatureset { get { - return this._dateseparator; + return this._clientfeatureset; } set { - this.OndateseparatorChanging(value); - this._dateseparator = value; - this.OndateseparatorChanged(); + this.OnclientfeaturesetChanging(value); + this._clientfeatureset = value; + this.OnclientfeaturesetChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _dateseparator; - partial void OndateseparatorChanging(string value); - partial void OndateseparatorChanged(); + private string _clientfeatureset; + partial void OnclientfeaturesetChanging(string value); + partial void OnclientfeaturesetChanged(); /// /// There are no comments for Property weekstartdaycode in the schema. /// @@ -536315,27 +536535,27 @@ public virtual string dateseparator partial void OnweekstartdaycodeChanging(global::System.Nullable value); partial void OnweekstartdaycodeChanged(); /// - /// There are no comments for Property allowuserformmodepreference in the schema. + /// There are no comments for Property integrationuserid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable allowuserformmodepreference + public virtual global::System.Nullable integrationuserid { get { - return this._allowuserformmodepreference; + return this._integrationuserid; } set { - this.OnallowuserformmodepreferenceChanging(value); - this._allowuserformmodepreference = value; - this.OnallowuserformmodepreferenceChanged(); + this.OnintegrationuseridChanging(value); + this._integrationuserid = value; + this.OnintegrationuseridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _allowuserformmodepreference; - partial void OnallowuserformmodepreferenceChanging(global::System.Nullable value); - partial void OnallowuserformmodepreferenceChanged(); + private global::System.Nullable _integrationuserid; + partial void OnintegrationuseridChanging(global::System.Nullable value); + partial void OnintegrationuseridChanged(); /// /// There are no comments for Property numberseparator in the schema. /// @@ -536359,27 +536579,27 @@ public virtual string numberseparator partial void OnnumberseparatorChanging(string value); partial void OnnumberseparatorChanged(); /// - /// There are no comments for Property campaignprefix in the schema. + /// There are no comments for Property enableunifiedinterfaceshellrefresh in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string campaignprefix + public virtual global::System.Nullable enableunifiedinterfaceshellrefresh { get { - return this._campaignprefix; + return this._enableunifiedinterfaceshellrefresh; } set { - this.OncampaignprefixChanging(value); - this._campaignprefix = value; - this.OncampaignprefixChanged(); + this.OnenableunifiedinterfaceshellrefreshChanging(value); + this._enableunifiedinterfaceshellrefresh = value; + this.OnenableunifiedinterfaceshellrefreshChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _campaignprefix; - partial void OncampaignprefixChanging(string value); - partial void OncampaignprefixChanged(); + private global::System.Nullable _enableunifiedinterfaceshellrefresh; + partial void OnenableunifiedinterfaceshellrefreshChanging(global::System.Nullable value); + partial void OnenableunifiedinterfaceshellrefreshChanged(); /// /// There are no comments for Property productrecommendationsenabled in the schema. /// @@ -536425,137 +536645,71 @@ public virtual string campaignprefix partial void OnrecurrencedefaultnumberofoccurrencesChanging(global::System.Nullable value); partial void OnrecurrencedefaultnumberofoccurrencesChanged(); /// - /// There are no comments for Property quickfindrecordlimitenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable quickfindrecordlimitenabled - { - get - { - return this._quickfindrecordlimitenabled; - } - set - { - this.OnquickfindrecordlimitenabledChanging(value); - this._quickfindrecordlimitenabled = value; - this.OnquickfindrecordlimitenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quickfindrecordlimitenabled; - partial void OnquickfindrecordlimitenabledChanging(global::System.Nullable value); - partial void OnquickfindrecordlimitenabledChanged(); - /// - /// There are no comments for Property organizationstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable organizationstate - { - get - { - return this._organizationstate; - } - set - { - this.OnorganizationstateChanging(value); - this._organizationstate = value; - this.OnorganizationstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _organizationstate; - partial void OnorganizationstateChanging(global::System.Nullable value); - partial void OnorganizationstateChanged(); - /// - /// There are no comments for Property rendersecureiframeforemail in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable rendersecureiframeforemail - { - get - { - return this._rendersecureiframeforemail; - } - set - { - this.OnrendersecureiframeforemailChanging(value); - this._rendersecureiframeforemail = value; - this.OnrendersecureiframeforemailChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _rendersecureiframeforemail; - partial void OnrendersecureiframeforemailChanging(global::System.Nullable value); - partial void OnrendersecureiframeforemailChanged(); - /// - /// There are no comments for Property inactivitytimeoutinmins in the schema. + /// There are no comments for Property grantaccesstonetworkservice in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable inactivitytimeoutinmins + public virtual global::System.Nullable grantaccesstonetworkservice { get { - return this._inactivitytimeoutinmins; + return this._grantaccesstonetworkservice; } set { - this.OninactivitytimeoutinminsChanging(value); - this._inactivitytimeoutinmins = value; - this.OninactivitytimeoutinminsChanged(); + this.OngrantaccesstonetworkserviceChanging(value); + this._grantaccesstonetworkservice = value; + this.OngrantaccesstonetworkserviceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _inactivitytimeoutinmins; - partial void OninactivitytimeoutinminsChanging(global::System.Nullable value); - partial void OninactivitytimeoutinminsChanged(); + private global::System.Nullable _grantaccesstonetworkservice; + partial void OngrantaccesstonetworkserviceChanging(global::System.Nullable value); + partial void OngrantaccesstonetworkserviceChanged(); /// - /// There are no comments for Property sessiontimeoutenabled in the schema. + /// There are no comments for Property tokenexpiry in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sessiontimeoutenabled + public virtual global::System.Nullable tokenexpiry { get { - return this._sessiontimeoutenabled; + return this._tokenexpiry; } set { - this.OnsessiontimeoutenabledChanging(value); - this._sessiontimeoutenabled = value; - this.OnsessiontimeoutenabledChanged(); + this.OntokenexpiryChanging(value); + this._tokenexpiry = value; + this.OntokenexpiryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sessiontimeoutenabled; - partial void OnsessiontimeoutenabledChanging(global::System.Nullable value); - partial void OnsessiontimeoutenabledChanged(); + private global::System.Nullable _tokenexpiry; + partial void OntokenexpiryChanging(global::System.Nullable value); + partial void OntokenexpiryChanged(); /// - /// There are no comments for Property iscontactmailingaddresssyncenabled in the schema. + /// There are no comments for Property organizationstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable iscontactmailingaddresssyncenabled + public virtual global::System.Nullable organizationstate { get { - return this._iscontactmailingaddresssyncenabled; + return this._organizationstate; } set { - this.OniscontactmailingaddresssyncenabledChanging(value); - this._iscontactmailingaddresssyncenabled = value; - this.OniscontactmailingaddresssyncenabledChanged(); + this.OnorganizationstateChanging(value); + this._organizationstate = value; + this.OnorganizationstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _iscontactmailingaddresssyncenabled; - partial void OniscontactmailingaddresssyncenabledChanging(global::System.Nullable value); - partial void OniscontactmailingaddresssyncenabledChanged(); + private global::System.Nullable _organizationstate; + partial void OnorganizationstateChanging(global::System.Nullable value); + partial void OnorganizationstateChanged(); /// /// There are no comments for Property externalbaseurl in the schema. /// @@ -536579,27 +536733,27 @@ public virtual string externalbaseurl partial void OnexternalbaseurlChanging(string value); partial void OnexternalbaseurlChanged(); /// - /// There are no comments for Property isemailmonitoringallowed in the schema. + /// There are no comments for Property dateseparator in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isemailmonitoringallowed + public virtual string dateseparator { get { - return this._isemailmonitoringallowed; + return this._dateseparator; } set { - this.OnisemailmonitoringallowedChanging(value); - this._isemailmonitoringallowed = value; - this.OnisemailmonitoringallowedChanged(); + this.OndateseparatorChanging(value); + this._dateseparator = value; + this.OndateseparatorChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isemailmonitoringallowed; - partial void OnisemailmonitoringallowedChanging(global::System.Nullable value); - partial void OnisemailmonitoringallowedChanged(); + private string _dateseparator; + partial void OndateseparatorChanging(string value); + partial void OndateseparatorChanged(); /// /// There are no comments for Property issalesassistantenabled in the schema. /// @@ -536623,28 +536777,6 @@ public virtual string externalbaseurl partial void OnissalesassistantenabledChanging(global::System.Nullable value); partial void OnissalesassistantenabledChanged(); /// - /// There are no comments for Property _defaultmobileofflineprofileid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _defaultmobileofflineprofileid_value - { - get - { - return this.__defaultmobileofflineprofileid_value; - } - set - { - this.On_defaultmobileofflineprofileid_valueChanging(value); - this.__defaultmobileofflineprofileid_value = value; - this.On_defaultmobileofflineprofileid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __defaultmobileofflineprofileid_value; - partial void On_defaultmobileofflineprofileid_valueChanging(global::System.Nullable value); - partial void On_defaultmobileofflineprofileid_valueChanged(); - /// /// There are no comments for Property amdesignator in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -536667,27 +536799,27 @@ public virtual string amdesignator partial void OnamdesignatorChanging(string value); partial void OnamdesignatorChanged(); /// - /// There are no comments for Property pricingdecimalprecision in the schema. + /// There are no comments for Property enableimmersiveskypeintegration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pricingdecimalprecision + public virtual global::System.Nullable enableimmersiveskypeintegration { get { - return this._pricingdecimalprecision; + return this._enableimmersiveskypeintegration; } set { - this.OnpricingdecimalprecisionChanging(value); - this._pricingdecimalprecision = value; - this.OnpricingdecimalprecisionChanged(); + this.OnenableimmersiveskypeintegrationChanging(value); + this._enableimmersiveskypeintegration = value; + this.OnenableimmersiveskypeintegrationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pricingdecimalprecision; - partial void OnpricingdecimalprecisionChanging(global::System.Nullable value); - partial void OnpricingdecimalprecisionChanged(); + private global::System.Nullable _enableimmersiveskypeintegration; + partial void OnenableimmersiveskypeintegrationChanging(global::System.Nullable value); + partial void OnenableimmersiveskypeintegrationChanged(); /// /// There are no comments for Property kbprefix in the schema. /// @@ -536711,27 +536843,27 @@ public virtual string kbprefix partial void OnkbprefixChanging(string value); partial void OnkbprefixChanged(); /// - /// There are no comments for Property bounddashboarddefaultcardexpanded in the schema. + /// There are no comments for Property isduplicatedetectionenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable bounddashboarddefaultcardexpanded + public virtual global::System.Nullable isduplicatedetectionenabled { get { - return this._bounddashboarddefaultcardexpanded; + return this._isduplicatedetectionenabled; } set { - this.OnbounddashboarddefaultcardexpandedChanging(value); - this._bounddashboarddefaultcardexpanded = value; - this.OnbounddashboarddefaultcardexpandedChanged(); + this.OnisduplicatedetectionenabledChanging(value); + this._isduplicatedetectionenabled = value; + this.OnisduplicatedetectionenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _bounddashboarddefaultcardexpanded; - partial void OnbounddashboarddefaultcardexpandedChanging(global::System.Nullable value); - partial void OnbounddashboarddefaultcardexpandedChanged(); + private global::System.Nullable _isduplicatedetectionenabled; + partial void OnisduplicatedetectionenabledChanging(global::System.Nullable value); + partial void OnisduplicatedetectionenabledChanged(); /// /// There are no comments for Property hashmaxcount in the schema. /// @@ -536755,28 +536887,6 @@ public virtual string kbprefix partial void OnhashmaxcountChanging(global::System.Nullable value); partial void OnhashmaxcountChanged(); /// - /// There are no comments for Property reportinggroupname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string reportinggroupname - { - get - { - return this._reportinggroupname; - } - set - { - this.OnreportinggroupnameChanging(value); - this._reportinggroupname = value; - this.OnreportinggroupnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _reportinggroupname; - partial void OnreportinggroupnameChanging(string value); - partial void OnreportinggroupnameChanged(); - /// /// There are no comments for Property isdelegateaccessenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -536843,6 +536953,28 @@ public virtual string featureset partial void OnfeaturesetChanging(string value); partial void OnfeaturesetChanged(); /// + /// There are no comments for Property sessiontimeoutreminderinmins in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sessiontimeoutreminderinmins + { + get + { + return this._sessiontimeoutreminderinmins; + } + set + { + this.OnsessiontimeoutreminderinminsChanging(value); + this._sessiontimeoutreminderinmins = value; + this.OnsessiontimeoutreminderinminsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sessiontimeoutreminderinmins; + partial void OnsessiontimeoutreminderinminsChanging(global::System.Nullable value); + partial void OnsessiontimeoutreminderinminsChanged(); + /// /// There are no comments for Property reportscripterrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -536887,27 +537019,27 @@ public virtual string featureset partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property fiscalyeardisplaycode in the schema. + /// There are no comments for Property fiscalyearformatsuffix in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable fiscalyeardisplaycode + public virtual global::System.Nullable fiscalyearformatsuffix { get { - return this._fiscalyeardisplaycode; + return this._fiscalyearformatsuffix; } set { - this.OnfiscalyeardisplaycodeChanging(value); - this._fiscalyeardisplaycode = value; - this.OnfiscalyeardisplaycodeChanged(); + this.OnfiscalyearformatsuffixChanging(value); + this._fiscalyearformatsuffix = value; + this.OnfiscalyearformatsuffixChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _fiscalyeardisplaycode; - partial void OnfiscalyeardisplaycodeChanging(global::System.Nullable value); - partial void OnfiscalyeardisplaycodeChanged(); + private global::System.Nullable _fiscalyearformatsuffix; + partial void OnfiscalyearformatsuffixChanging(global::System.Nullable value); + partial void OnfiscalyearformatsuffixChanged(); /// /// There are no comments for Property yammeroauthaccesstokenexpired in the schema. /// @@ -536931,49 +537063,49 @@ public virtual string featureset partial void OnyammeroauthaccesstokenexpiredChanging(global::System.Nullable value); partial void OnyammeroauthaccesstokenexpiredChanged(); /// - /// There are no comments for Property externalpartyentitysettings in the schema. + /// There are no comments for Property allowusersseeappdownloadmessage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string externalpartyentitysettings + public virtual global::System.Nullable allowusersseeappdownloadmessage { get { - return this._externalpartyentitysettings; + return this._allowusersseeappdownloadmessage; } set { - this.OnexternalpartyentitysettingsChanging(value); - this._externalpartyentitysettings = value; - this.OnexternalpartyentitysettingsChanged(); + this.OnallowusersseeappdownloadmessageChanging(value); + this._allowusersseeappdownloadmessage = value; + this.OnallowusersseeappdownloadmessageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _externalpartyentitysettings; - partial void OnexternalpartyentitysettingsChanging(string value); - partial void OnexternalpartyentitysettingsChanged(); + private global::System.Nullable _allowusersseeappdownloadmessage; + partial void OnallowusersseeappdownloadmessageChanging(global::System.Nullable value); + partial void OnallowusersseeappdownloadmessageChanged(); /// - /// There are no comments for Property defaultcountrycode in the schema. + /// There are no comments for Property globalappendurlparametersenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string defaultcountrycode + public virtual global::System.Nullable globalappendurlparametersenabled { get { - return this._defaultcountrycode; + return this._globalappendurlparametersenabled; } set { - this.OndefaultcountrycodeChanging(value); - this._defaultcountrycode = value; - this.OndefaultcountrycodeChanged(); + this.OnglobalappendurlparametersenabledChanging(value); + this._globalappendurlparametersenabled = value; + this.OnglobalappendurlparametersenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _defaultcountrycode; - partial void OndefaultcountrycodeChanging(string value); - partial void OndefaultcountrycodeChanged(); + private global::System.Nullable _globalappendurlparametersenabled; + partial void OnglobalappendurlparametersenabledChanging(global::System.Nullable value); + partial void OnglobalappendurlparametersenabledChanged(); /// /// There are no comments for Property isactivityanalysisenabled in the schema. /// @@ -537019,27 +537151,27 @@ public virtual string defaultcountrycode partial void OniscontentsecuritypolicyenabledChanging(global::System.Nullable value); partial void OniscontentsecuritypolicyenabledChanged(); /// - /// There are no comments for Property _basecurrencyid_value in the schema. + /// There are no comments for Property isduplicatedetectionenabledforimport in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _basecurrencyid_value + public virtual global::System.Nullable isduplicatedetectionenabledforimport { get { - return this.__basecurrencyid_value; + return this._isduplicatedetectionenabledforimport; } set { - this.On_basecurrencyid_valueChanging(value); - this.__basecurrencyid_value = value; - this.On_basecurrencyid_valueChanged(); + this.OnisduplicatedetectionenabledforimportChanging(value); + this._isduplicatedetectionenabledforimport = value; + this.OnisduplicatedetectionenabledforimportChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __basecurrencyid_value; - partial void On_basecurrencyid_valueChanging(global::System.Nullable value); - partial void On_basecurrencyid_valueChanged(); + private global::System.Nullable _isduplicatedetectionenabledforimport; + partial void OnisduplicatedetectionenabledforimportChanging(global::System.Nullable value); + partial void OnisduplicatedetectionenabledforimportChanged(); /// /// There are no comments for Property ismodeldrivenappsinmsteamsenabled in the schema. /// @@ -537063,49 +537195,27 @@ public virtual string defaultcountrycode partial void OnismodeldrivenappsinmsteamsenabledChanging(global::System.Nullable value); partial void OnismodeldrivenappsinmsteamsenabledChanged(); /// - /// There are no comments for Property istextwrapenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable istextwrapenabled - { - get - { - return this._istextwrapenabled; - } - set - { - this.OnistextwrapenabledChanging(value); - this._istextwrapenabled = value; - this.OnistextwrapenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _istextwrapenabled; - partial void OnistextwrapenabledChanging(global::System.Nullable value); - partial void OnistextwrapenabledChanged(); - /// - /// There are no comments for Property isnotesanalysisenabled in the schema. + /// There are no comments for Property negativeformatcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isnotesanalysisenabled + public virtual global::System.Nullable negativeformatcode { get { - return this._isnotesanalysisenabled; + return this._negativeformatcode; } set { - this.OnisnotesanalysisenabledChanging(value); - this._isnotesanalysisenabled = value; - this.OnisnotesanalysisenabledChanged(); + this.OnnegativeformatcodeChanging(value); + this._negativeformatcode = value; + this.OnnegativeformatcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isnotesanalysisenabled; - partial void OnisnotesanalysisenabledChanging(global::System.Nullable value); - partial void OnisnotesanalysisenabledChanged(); + private global::System.Nullable _negativeformatcode; + partial void OnnegativeformatcodeChanging(global::System.Nullable value); + partial void OnnegativeformatcodeChanged(); /// /// There are no comments for Property allowclientmessagebarad in the schema. /// @@ -537129,71 +537239,49 @@ public virtual string defaultcountrycode partial void OnallowclientmessagebaradChanging(global::System.Nullable value); partial void OnallowclientmessagebaradChanged(); /// - /// There are no comments for Property usergroupid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable usergroupid - { - get - { - return this._usergroupid; - } - set - { - this.OnusergroupidChanging(value); - this._usergroupid = value; - this.OnusergroupidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _usergroupid; - partial void OnusergroupidChanging(global::System.Nullable value); - partial void OnusergroupidChanged(); - /// - /// There are no comments for Property isdisabled in the schema. + /// There are no comments for Property taskbasedflowenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isdisabled + public virtual global::System.Nullable taskbasedflowenabled { get { - return this._isdisabled; + return this._taskbasedflowenabled; } set { - this.OnisdisabledChanging(value); - this._isdisabled = value; - this.OnisdisabledChanged(); + this.OntaskbasedflowenabledChanging(value); + this._taskbasedflowenabled = value; + this.OntaskbasedflowenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdisabled; - partial void OnisdisabledChanging(global::System.Nullable value); - partial void OnisdisabledChanged(); + private global::System.Nullable _taskbasedflowenabled; + partial void OntaskbasedflowenabledChanging(global::System.Nullable value); + partial void OntaskbasedflowenabledChanged(); /// - /// There are no comments for Property isduplicatedetectionenabledforofflinesync in the schema. + /// There are no comments for Property contentsecuritypolicyconfiguration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isduplicatedetectionenabledforofflinesync + public virtual string contentsecuritypolicyconfiguration { get { - return this._isduplicatedetectionenabledforofflinesync; + return this._contentsecuritypolicyconfiguration; } set { - this.OnisduplicatedetectionenabledforofflinesyncChanging(value); - this._isduplicatedetectionenabledforofflinesync = value; - this.OnisduplicatedetectionenabledforofflinesyncChanged(); + this.OncontentsecuritypolicyconfigurationChanging(value); + this._contentsecuritypolicyconfiguration = value; + this.OncontentsecuritypolicyconfigurationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isduplicatedetectionenabledforofflinesync; - partial void OnisduplicatedetectionenabledforofflinesyncChanging(global::System.Nullable value); - partial void OnisduplicatedetectionenabledforofflinesyncChanged(); + private string _contentsecuritypolicyconfiguration; + partial void OncontentsecuritypolicyconfigurationChanging(string value); + partial void OncontentsecuritypolicyconfigurationChanged(); /// /// There are no comments for Property languagecode in the schema. /// @@ -537283,71 +537371,115 @@ public virtual string categoryprefix partial void OnispreviewenabledforactioncardChanging(global::System.Nullable value); partial void OnispreviewenabledforactioncardChanged(); /// - /// There are no comments for Property ismobileofflineenabled in the schema. + /// There are no comments for Property microsoftflowenvironment in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismobileofflineenabled + public virtual string microsoftflowenvironment { get { - return this._ismobileofflineenabled; + return this._microsoftflowenvironment; } set { - this.OnismobileofflineenabledChanging(value); - this._ismobileofflineenabled = value; - this.OnismobileofflineenabledChanged(); + this.OnmicrosoftflowenvironmentChanging(value); + this._microsoftflowenvironment = value; + this.OnmicrosoftflowenvironmentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismobileofflineenabled; - partial void OnismobileofflineenabledChanging(global::System.Nullable value); - partial void OnismobileofflineenabledChanged(); + private string _microsoftflowenvironment; + partial void OnmicrosoftflowenvironmentChanging(string value); + partial void OnmicrosoftflowenvironmentChanged(); /// - /// There are no comments for Property microsoftflowenvironment in the schema. + /// There are no comments for Property ispaienabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string microsoftflowenvironment + public virtual global::System.Nullable ispaienabled { get { - return this._microsoftflowenvironment; + return this._ispaienabled; } set { - this.OnmicrosoftflowenvironmentChanging(value); - this._microsoftflowenvironment = value; - this.OnmicrosoftflowenvironmentChanged(); + this.OnispaienabledChanging(value); + this._ispaienabled = value; + this.OnispaienabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _microsoftflowenvironment; - partial void OnmicrosoftflowenvironmentChanging(string value); - partial void OnmicrosoftflowenvironmentChanged(); + private global::System.Nullable _ispaienabled; + partial void OnispaienabledChanging(global::System.Nullable value); + partial void OnispaienabledChanged(); /// - /// There are no comments for Property isexternalsearchindexenabled in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isexternalsearchindexenabled + public virtual string entityimage_url { get { - return this._isexternalsearchindexenabled; + return this._entityimage_url; } set { - this.OnisexternalsearchindexenabledChanging(value); - this._isexternalsearchindexenabled = value; - this.OnisexternalsearchindexenabledChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isexternalsearchindexenabled; - partial void OnisexternalsearchindexenabledChanging(global::System.Nullable value); - partial void OnisexternalsearchindexenabledChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); + /// + /// There are no comments for Property sessiontimeoutinmins in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sessiontimeoutinmins + { + get + { + return this._sessiontimeoutinmins; + } + set + { + this.OnsessiontimeoutinminsChanging(value); + this._sessiontimeoutinmins = value; + this.OnsessiontimeoutinminsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sessiontimeoutinmins; + partial void OnsessiontimeoutinminsChanging(global::System.Nullable value); + partial void OnsessiontimeoutinminsChanged(); + /// + /// There are no comments for Property cortanaproactiveexperienceenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable cortanaproactiveexperienceenabled + { + get + { + return this._cortanaproactiveexperienceenabled; + } + set + { + this.OncortanaproactiveexperienceenabledChanging(value); + this._cortanaproactiveexperienceenabled = value; + this.OncortanaproactiveexperienceenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _cortanaproactiveexperienceenabled; + partial void OncortanaproactiveexperienceenabledChanging(global::System.Nullable value); + partial void OncortanaproactiveexperienceenabledChanged(); /// /// There are no comments for Property enablelivepersonacarduci in the schema. /// @@ -537525,71 +537657,27 @@ public virtual string microsoftflowenvironment partial void OnisdefaultcountrycodecheckenabledChanging(global::System.Nullable value); partial void OnisdefaultcountrycodecheckenabledChanged(); /// - /// There are no comments for Property auditretentionperiod in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable auditretentionperiod - { - get - { - return this._auditretentionperiod; - } - set - { - this.OnauditretentionperiodChanging(value); - this._auditretentionperiod = value; - this.OnauditretentionperiodChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _auditretentionperiod; - partial void OnauditretentionperiodChanging(global::System.Nullable value); - partial void OnauditretentionperiodChanged(); - /// - /// There are no comments for Property entityimage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual byte[] entityimage - { - get - { - return this._entityimage; - } - set - { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); - /// - /// There are no comments for Property fiscalyearformatyear in the schema. + /// There are no comments for Property generatealertsforerrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable fiscalyearformatyear + public virtual global::System.Nullable generatealertsforerrors { get { - return this._fiscalyearformatyear; + return this._generatealertsforerrors; } set { - this.OnfiscalyearformatyearChanging(value); - this._fiscalyearformatyear = value; - this.OnfiscalyearformatyearChanged(); + this.OngeneratealertsforerrorsChanging(value); + this._generatealertsforerrors = value; + this.OngeneratealertsforerrorsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _fiscalyearformatyear; - partial void OnfiscalyearformatyearChanging(global::System.Nullable value); - partial void OnfiscalyearformatyearChanged(); + private global::System.Nullable _generatealertsforerrors; + partial void OngeneratealertsforerrorsChanging(global::System.Nullable value); + partial void OngeneratealertsforerrorsChanged(); /// /// There are no comments for Property entityimage_timestamp in the schema. /// @@ -537635,28 +537723,6 @@ public virtual string privreportinggroupname partial void OnprivreportinggroupnameChanging(string value); partial void OnprivreportinggroupnameChanged(); /// - /// There are no comments for Property yearstartweekcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable yearstartweekcode - { - get - { - return this._yearstartweekcode; - } - set - { - this.OnyearstartweekcodeChanging(value); - this._yearstartweekcode = value; - this.OnyearstartweekcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _yearstartweekcode; - partial void OnyearstartweekcodeChanging(global::System.Nullable value); - partial void OnyearstartweekcodeChanged(); - /// /// There are no comments for Property uselegacyrendering in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -537701,28 +537767,6 @@ public virtual string privreportinggroupname partial void OnmaximumtrackingnumberChanging(global::System.Nullable value); partial void OnmaximumtrackingnumberChanged(); /// - /// There are no comments for Property isofficegraphenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isofficegraphenabled - { - get - { - return this._isofficegraphenabled; - } - set - { - this.OnisofficegraphenabledChanging(value); - this._isofficegraphenabled = value; - this.OnisofficegraphenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isofficegraphenabled; - partial void OnisofficegraphenabledChanging(global::System.Nullable value); - partial void OnisofficegraphenabledChanged(); - /// /// There are no comments for Property allowautoresponsecreation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -537811,71 +537855,71 @@ public virtual string privreportinggroupname partial void OnenablemicrosoftflowintegrationChanging(global::System.Nullable value); partial void OnenablemicrosoftflowintegrationChanged(); /// - /// There are no comments for Property emailcorrelationenabled in the schema. + /// There are no comments for Property yammernetworkpermalink in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable emailcorrelationenabled + public virtual string yammernetworkpermalink { get { - return this._emailcorrelationenabled; + return this._yammernetworkpermalink; } set { - this.OnemailcorrelationenabledChanging(value); - this._emailcorrelationenabled = value; - this.OnemailcorrelationenabledChanged(); + this.OnyammernetworkpermalinkChanging(value); + this._yammernetworkpermalink = value; + this.OnyammernetworkpermalinkChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _emailcorrelationenabled; - partial void OnemailcorrelationenabledChanging(global::System.Nullable value); - partial void OnemailcorrelationenabledChanged(); + private string _yammernetworkpermalink; + partial void OnyammernetworkpermalinkChanging(string value); + partial void OnyammernetworkpermalinkChanged(); /// - /// There are no comments for Property socialinsightsenabled in the schema. + /// There are no comments for Property allowlegacydialogsembedding in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable socialinsightsenabled + public virtual global::System.Nullable allowlegacydialogsembedding { get { - return this._socialinsightsenabled; + return this._allowlegacydialogsembedding; } set { - this.OnsocialinsightsenabledChanging(value); - this._socialinsightsenabled = value; - this.OnsocialinsightsenabledChanged(); + this.OnallowlegacydialogsembeddingChanging(value); + this._allowlegacydialogsembedding = value; + this.OnallowlegacydialogsembeddingChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _socialinsightsenabled; - partial void OnsocialinsightsenabledChanging(global::System.Nullable value); - partial void OnsocialinsightsenabledChanged(); + private global::System.Nullable _allowlegacydialogsembedding; + partial void OnallowlegacydialogsembeddingChanging(global::System.Nullable value); + partial void OnallowlegacydialogsembeddingChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property enablepricingoncreate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable enablepricingoncreate { get { - return this.__createdby_value; + return this._enablepricingoncreate; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnenablepricingoncreateChanging(value); + this._enablepricingoncreate = value; + this.OnenablepricingoncreateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _enablepricingoncreate; + partial void OnenablepricingoncreateChanging(global::System.Nullable value); + partial void OnenablepricingoncreateChanged(); /// /// There are no comments for Property initialversion in the schema. /// @@ -537899,49 +537943,49 @@ public virtual string initialversion partial void OninitialversionChanging(string value); partial void OninitialversionChanged(); /// - /// There are no comments for Property delegatedadminuserid in the schema. + /// There are no comments for Property maximumactivebusinessprocessflowsallowedperentity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable delegatedadminuserid + public virtual global::System.Nullable maximumactivebusinessprocessflowsallowedperentity { get { - return this._delegatedadminuserid; + return this._maximumactivebusinessprocessflowsallowedperentity; } set { - this.OndelegatedadminuseridChanging(value); - this._delegatedadminuserid = value; - this.OndelegatedadminuseridChanged(); + this.OnmaximumactivebusinessprocessflowsallowedperentityChanging(value); + this._maximumactivebusinessprocessflowsallowedperentity = value; + this.OnmaximumactivebusinessprocessflowsallowedperentityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _delegatedadminuserid; - partial void OndelegatedadminuseridChanging(global::System.Nullable value); - partial void OndelegatedadminuseridChanged(); + private global::System.Nullable _maximumactivebusinessprocessflowsallowedperentity; + partial void OnmaximumactivebusinessprocessflowsallowedperentityChanging(global::System.Nullable value); + partial void OnmaximumactivebusinessprocessflowsallowedperentityChanged(); /// - /// There are no comments for Property isfiscalperiodmonthbased in the schema. + /// There are no comments for Property pricingdecimalprecision in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isfiscalperiodmonthbased + public virtual global::System.Nullable pricingdecimalprecision { get { - return this._isfiscalperiodmonthbased; + return this._pricingdecimalprecision; } set { - this.OnisfiscalperiodmonthbasedChanging(value); - this._isfiscalperiodmonthbased = value; - this.OnisfiscalperiodmonthbasedChanged(); + this.OnpricingdecimalprecisionChanging(value); + this._pricingdecimalprecision = value; + this.OnpricingdecimalprecisionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isfiscalperiodmonthbased; - partial void OnisfiscalperiodmonthbasedChanging(global::System.Nullable value); - partial void OnisfiscalperiodmonthbasedChanged(); + private global::System.Nullable _pricingdecimalprecision; + partial void OnpricingdecimalprecisionChanging(global::System.Nullable value); + partial void OnpricingdecimalprecisionChanged(); /// /// There are no comments for Property fiscalperiodtype in the schema. /// @@ -538009,28 +538053,6 @@ public virtual string disabledreason partial void OndisabledreasonChanging(string value); partial void OndisabledreasonChanged(); /// - /// There are no comments for Property uniquespecifierlength in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable uniquespecifierlength - { - get - { - return this._uniquespecifierlength; - } - set - { - this.OnuniquespecifierlengthChanging(value); - this._uniquespecifierlength = value; - this.OnuniquespecifierlengthChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _uniquespecifierlength; - partial void OnuniquespecifierlengthChanging(global::System.Nullable value); - partial void OnuniquespecifierlengthChanged(); - /// /// There are no comments for Property ispdfgenerationenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -538053,27 +538075,27 @@ public virtual string ispdfgenerationenabled partial void OnispdfgenerationenabledChanging(string value); partial void OnispdfgenerationenabledChanged(); /// - /// There are no comments for Property enablelivepersoncardintegrationinoffice in the schema. + /// There are no comments for Property isduplicatedetectionenabledforofflinesync in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable enablelivepersoncardintegrationinoffice + public virtual global::System.Nullable isduplicatedetectionenabledforofflinesync { get { - return this._enablelivepersoncardintegrationinoffice; + return this._isduplicatedetectionenabledforofflinesync; } set { - this.OnenablelivepersoncardintegrationinofficeChanging(value); - this._enablelivepersoncardintegrationinoffice = value; - this.OnenablelivepersoncardintegrationinofficeChanged(); + this.OnisduplicatedetectionenabledforofflinesyncChanging(value); + this._isduplicatedetectionenabledforofflinesync = value; + this.OnisduplicatedetectionenabledforofflinesyncChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _enablelivepersoncardintegrationinoffice; - partial void OnenablelivepersoncardintegrationinofficeChanging(global::System.Nullable value); - partial void OnenablelivepersoncardintegrationinofficeChanged(); + private global::System.Nullable _isduplicatedetectionenabledforofflinesync; + partial void OnisduplicatedetectionenabledforofflinesyncChanging(global::System.Nullable value); + partial void OnisduplicatedetectionenabledforofflinesyncChanged(); /// /// There are no comments for Property maxrecordsforexporttoexcel in the schema. /// @@ -538185,28 +538207,6 @@ public virtual string kaprefix partial void OnallowmarketingemailexecutionChanging(global::System.Nullable value); partial void OnallowmarketingemailexecutionChanged(); /// - /// There are no comments for Property sqmenabled in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable sqmenabled - { - get - { - return this._sqmenabled; - } - set - { - this.OnsqmenabledChanging(value); - this._sqmenabled = value; - this.OnsqmenabledChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sqmenabled; - partial void OnsqmenabledChanging(global::System.Nullable value); - partial void OnsqmenabledChanged(); - /// /// There are no comments for Property timeformatstring in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -538339,27 +538339,27 @@ public virtual string webresourcehash partial void OnsortidChanging(global::System.Nullable value); partial void OnsortidChanged(); /// - /// There are no comments for Property globalhelpurl in the schema. + /// There are no comments for Property defaultcountrycode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string globalhelpurl + public virtual string defaultcountrycode { get { - return this._globalhelpurl; + return this._defaultcountrycode; } set { - this.OnglobalhelpurlChanging(value); - this._globalhelpurl = value; - this.OnglobalhelpurlChanged(); + this.OndefaultcountrycodeChanging(value); + this._defaultcountrycode = value; + this.OndefaultcountrycodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _globalhelpurl; - partial void OnglobalhelpurlChanging(string value); - partial void OnglobalhelpurlChanged(); + private string _defaultcountrycode; + partial void OndefaultcountrycodeChanging(string value); + partial void OndefaultcountrycodeChanged(); /// /// There are no comments for Property isallmoneydecimal in the schema. /// @@ -538383,28 +538383,6 @@ public virtual string globalhelpurl partial void OnisallmoneydecimalChanging(global::System.Nullable value); partial void OnisallmoneydecimalChanged(); /// - /// There are no comments for Property fiscalyearformatsuffix in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable fiscalyearformatsuffix - { - get - { - return this._fiscalyearformatsuffix; - } - set - { - this.OnfiscalyearformatsuffixChanging(value); - this._fiscalyearformatsuffix = value; - this.OnfiscalyearformatsuffixChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _fiscalyearformatsuffix; - partial void OnfiscalyearformatsuffixChanging(global::System.Nullable value); - partial void OnfiscalyearformatsuffixChanged(); - /// /// There are no comments for Property isauditenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -538449,27 +538427,71 @@ public virtual string fiscalyearformat partial void OnfiscalyearformatChanging(string value); partial void OnfiscalyearformatChanged(); /// - /// There are no comments for Property sendbulkemailinuci in the schema. + /// There are no comments for Property ignoreinternalemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sendbulkemailinuci + public virtual global::System.Nullable ignoreinternalemail { get { - return this._sendbulkemailinuci; + return this._ignoreinternalemail; } set { - this.OnsendbulkemailinuciChanging(value); - this._sendbulkemailinuci = value; - this.OnsendbulkemailinuciChanged(); + this.OnignoreinternalemailChanging(value); + this._ignoreinternalemail = value; + this.OnignoreinternalemailChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sendbulkemailinuci; - partial void OnsendbulkemailinuciChanging(global::System.Nullable value); - partial void OnsendbulkemailinuciChanged(); + private global::System.Nullable _ignoreinternalemail; + partial void OnignoreinternalemailChanging(global::System.Nullable value); + partial void OnignoreinternalemailChanged(); + /// + /// There are no comments for Property _basecurrencyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _basecurrencyid_value + { + get + { + return this.__basecurrencyid_value; + } + set + { + this.On_basecurrencyid_valueChanging(value); + this.__basecurrencyid_value = value; + this.On_basecurrencyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __basecurrencyid_value; + partial void On_basecurrencyid_valueChanging(global::System.Nullable value); + partial void On_basecurrencyid_valueChanged(); + /// + /// There are no comments for Property rierrorstatus in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable rierrorstatus + { + get + { + return this._rierrorstatus; + } + set + { + this.OnrierrorstatusChanging(value); + this._rierrorstatus = value; + this.OnrierrorstatusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _rierrorstatus; + partial void OnrierrorstatusChanging(global::System.Nullable value); + partial void OnrierrorstatusChanged(); /// /// There are no comments for Property defaultcrmcustomname in the schema. /// @@ -538493,6 +538515,28 @@ public virtual string defaultcrmcustomname partial void OndefaultcrmcustomnameChanging(string value); partial void OndefaultcrmcustomnameChanged(); /// + /// There are no comments for Property emailcorrelationenabled in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable emailcorrelationenabled + { + get + { + return this._emailcorrelationenabled; + } + set + { + this.OnemailcorrelationenabledChanging(value); + this._emailcorrelationenabled = value; + this.OnemailcorrelationenabledChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _emailcorrelationenabled; + partial void OnemailcorrelationenabledChanging(global::System.Nullable value); + partial void OnemailcorrelationenabledChanged(); + /// /// There are no comments for Property currencyformatcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -538537,27 +538581,27 @@ public virtual string defaultcrmcustomname partial void OnisbpfentitycustomizationfeatureenabledChanging(global::System.Nullable value); partial void OnisbpfentitycustomizationfeatureenabledChanged(); /// - /// There are no comments for Property maxconditionsformobileofflinefilters in the schema. + /// There are no comments for Property privacystatementurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable maxconditionsformobileofflinefilters + public virtual string privacystatementurl { get { - return this._maxconditionsformobileofflinefilters; + return this._privacystatementurl; } set { - this.OnmaxconditionsformobileofflinefiltersChanging(value); - this._maxconditionsformobileofflinefilters = value; - this.OnmaxconditionsformobileofflinefiltersChanged(); + this.OnprivacystatementurlChanging(value); + this._privacystatementurl = value; + this.OnprivacystatementurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _maxconditionsformobileofflinefilters; - partial void OnmaxconditionsformobileofflinefiltersChanging(global::System.Nullable value); - partial void OnmaxconditionsformobileofflinefiltersChanged(); + private string _privacystatementurl; + partial void OnprivacystatementurlChanging(string value); + partial void OnprivacystatementurlChanged(); /// /// There are no comments for Property businessclosurecalendarid in the schema. /// @@ -538603,49 +538647,49 @@ public virtual string defaultcrmcustomname partial void OnshowweeknumberChanging(global::System.Nullable value); partial void OnshowweeknumberChanged(); /// - /// There are no comments for Property fiscalcalendarstart in the schema. + /// There are no comments for Property uniquespecifierlength in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable fiscalcalendarstart + public virtual global::System.Nullable uniquespecifierlength { get { - return this._fiscalcalendarstart; + return this._uniquespecifierlength; } set { - this.OnfiscalcalendarstartChanging(value); - this._fiscalcalendarstart = value; - this.OnfiscalcalendarstartChanged(); + this.OnuniquespecifierlengthChanging(value); + this._uniquespecifierlength = value; + this.OnuniquespecifierlengthChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _fiscalcalendarstart; - partial void OnfiscalcalendarstartChanging(global::System.Nullable value); - partial void OnfiscalcalendarstartChanged(); + private global::System.Nullable _uniquespecifierlength; + partial void OnuniquespecifierlengthChanging(global::System.Nullable value); + partial void OnuniquespecifierlengthChanged(); /// - /// There are no comments for Property sessiontimeoutinmins in the schema. + /// There are no comments for Property sendbulkemailinuci in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sessiontimeoutinmins + public virtual global::System.Nullable sendbulkemailinuci { get { - return this._sessiontimeoutinmins; + return this._sendbulkemailinuci; } set { - this.OnsessiontimeoutinminsChanging(value); - this._sessiontimeoutinmins = value; - this.OnsessiontimeoutinminsChanged(); + this.OnsendbulkemailinuciChanging(value); + this._sendbulkemailinuci = value; + this.OnsendbulkemailinuciChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sessiontimeoutinmins; - partial void OnsessiontimeoutinminsChanging(global::System.Nullable value); - partial void OnsessiontimeoutinminsChanged(); + private global::System.Nullable _sendbulkemailinuci; + partial void OnsendbulkemailinuciChanging(global::System.Nullable value); + partial void OnsendbulkemailinuciChanged(); /// /// There are no comments for Property appointmentricheditorexperience in the schema. /// @@ -538669,71 +538713,71 @@ public virtual string defaultcrmcustomname partial void OnappointmentricheditorexperienceChanging(global::System.Nullable value); partial void OnappointmentricheditorexperienceChanged(); /// - /// There are no comments for Property _defaultemailserverprofileid_value in the schema. + /// There are no comments for Property isenabledforallroles in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _defaultemailserverprofileid_value + public virtual global::System.Nullable isenabledforallroles { get { - return this.__defaultemailserverprofileid_value; + return this._isenabledforallroles; } set { - this.On_defaultemailserverprofileid_valueChanging(value); - this.__defaultemailserverprofileid_value = value; - this.On_defaultemailserverprofileid_valueChanged(); + this.OnisenabledforallrolesChanging(value); + this._isenabledforallroles = value; + this.OnisenabledforallrolesChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __defaultemailserverprofileid_value; - partial void On_defaultemailserverprofileid_valueChanging(global::System.Nullable value); - partial void On_defaultemailserverprofileid_valueChanged(); + private global::System.Nullable _isenabledforallroles; + partial void OnisenabledforallrolesChanging(global::System.Nullable value); + partial void OnisenabledforallrolesChanged(); /// - /// There are no comments for Property integrationuserid in the schema. + /// There are no comments for Property _defaultmobileofflineprofileid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable integrationuserid + public virtual global::System.Nullable _defaultmobileofflineprofileid_value { get { - return this._integrationuserid; + return this.__defaultmobileofflineprofileid_value; } set { - this.OnintegrationuseridChanging(value); - this._integrationuserid = value; - this.OnintegrationuseridChanged(); + this.On_defaultmobileofflineprofileid_valueChanging(value); + this.__defaultmobileofflineprofileid_value = value; + this.On_defaultmobileofflineprofileid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _integrationuserid; - partial void OnintegrationuseridChanging(global::System.Nullable value); - partial void OnintegrationuseridChanged(); + private global::System.Nullable __defaultmobileofflineprofileid_value; + partial void On_defaultmobileofflineprofileid_valueChanging(global::System.Nullable value); + partial void On_defaultmobileofflineprofileid_valueChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property isappointmentattachmentsyncenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual global::System.Nullable isappointmentattachmentsyncenabled { get { - return this._entityimage_url; + return this._isappointmentattachmentsyncenabled; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.OnisappointmentattachmentsyncenabledChanging(value); + this._isappointmentattachmentsyncenabled = value; + this.OnisappointmentattachmentsyncenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private global::System.Nullable _isappointmentattachmentsyncenabled; + partial void OnisappointmentattachmentsyncenabledChanging(global::System.Nullable value); + partial void OnisappointmentattachmentsyncenabledChanged(); /// /// There are no comments for Property isnewaddproductexperienceenabled in the schema. /// @@ -538757,27 +538801,71 @@ public virtual string entityimage_url partial void OnisnewaddproductexperienceenabledChanging(global::System.Nullable value); partial void OnisnewaddproductexperienceenabledChanged(); /// - /// There are no comments for Property pmdesignator in the schema. + /// There are no comments for Property maxverboseloggingmailbox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string pmdesignator + public virtual global::System.Nullable maxverboseloggingmailbox { get { - return this._pmdesignator; + return this._maxverboseloggingmailbox; } set { - this.OnpmdesignatorChanging(value); - this._pmdesignator = value; - this.OnpmdesignatorChanged(); + this.OnmaxverboseloggingmailboxChanging(value); + this._maxverboseloggingmailbox = value; + this.OnmaxverboseloggingmailboxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _pmdesignator; - partial void OnpmdesignatorChanging(string value); - partial void OnpmdesignatorChanged(); + private global::System.Nullable _maxverboseloggingmailbox; + partial void OnmaxverboseloggingmailboxChanging(global::System.Nullable value); + partial void OnmaxverboseloggingmailboxChanged(); + /// + /// There are no comments for Property slapausestates in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string slapausestates + { + get + { + return this._slapausestates; + } + set + { + this.OnslapausestatesChanging(value); + this._slapausestates = value; + this.OnslapausestatesChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _slapausestates; + partial void OnslapausestatesChanging(string value); + partial void OnslapausestatesChanged(); + /// + /// There are no comments for Property enablelivepersoncardintegrationinoffice in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable enablelivepersoncardintegrationinoffice + { + get + { + return this._enablelivepersoncardintegrationinoffice; + } + set + { + this.OnenablelivepersoncardintegrationinofficeChanging(value); + this._enablelivepersoncardintegrationinoffice = value; + this.OnenablelivepersoncardintegrationinofficeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _enablelivepersoncardintegrationinoffice; + partial void OnenablelivepersoncardintegrationinofficeChanging(global::System.Nullable value); + partial void OnenablelivepersoncardintegrationinofficeChanged(); /// /// There are no comments for Property sampledataimportid in the schema. /// @@ -538823,28 +538911,6 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property currencydecimalprecision in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable currencydecimalprecision - { - get - { - return this._currencydecimalprecision; - } - set - { - this.OncurrencydecimalprecisionChanging(value); - this._currencydecimalprecision = value; - this.OncurrencydecimalprecisionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _currencydecimalprecision; - partial void OncurrencydecimalprecisionChanging(global::System.Nullable value); - partial void OncurrencydecimalprecisionChanged(); - /// /// There are no comments for Property emailconnectionchannel in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -538933,93 +538999,93 @@ public virtual string name partial void OnmaxslaitemsperslaChanging(global::System.Nullable value); partial void OnmaxslaitemsperslaChanged(); /// - /// There are no comments for Property ispaienabled in the schema. + /// There are no comments for Property isautodatacapturev2enabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ispaienabled + public virtual global::System.Nullable isautodatacapturev2enabled { get { - return this._ispaienabled; + return this._isautodatacapturev2enabled; } set { - this.OnispaienabledChanging(value); - this._ispaienabled = value; - this.OnispaienabledChanged(); + this.Onisautodatacapturev2enabledChanging(value); + this._isautodatacapturev2enabled = value; + this.Onisautodatacapturev2enabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ispaienabled; - partial void OnispaienabledChanging(global::System.Nullable value); - partial void OnispaienabledChanged(); + private global::System.Nullable _isautodatacapturev2enabled; + partial void Onisautodatacapturev2enabledChanging(global::System.Nullable value); + partial void Onisautodatacapturev2enabledChanged(); /// - /// There are no comments for Property isautodatacapturev2enabled in the schema. + /// There are no comments for Property externalpartyentitysettings in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isautodatacapturev2enabled + public virtual string externalpartyentitysettings { get { - return this._isautodatacapturev2enabled; + return this._externalpartyentitysettings; } set { - this.Onisautodatacapturev2enabledChanging(value); - this._isautodatacapturev2enabled = value; - this.Onisautodatacapturev2enabledChanged(); + this.OnexternalpartyentitysettingsChanging(value); + this._externalpartyentitysettings = value; + this.OnexternalpartyentitysettingsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isautodatacapturev2enabled; - partial void Onisautodatacapturev2enabledChanging(global::System.Nullable value); - partial void Onisautodatacapturev2enabledChanged(); + private string _externalpartyentitysettings; + partial void OnexternalpartyentitysettingsChanging(string value); + partial void OnexternalpartyentitysettingsChanged(); /// - /// There are no comments for Property nexttrackingnumber in the schema. + /// There are no comments for Property inactivitytimeoutinmins in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable nexttrackingnumber + public virtual global::System.Nullable inactivitytimeoutinmins { get { - return this._nexttrackingnumber; + return this._inactivitytimeoutinmins; } set { - this.OnnexttrackingnumberChanging(value); - this._nexttrackingnumber = value; - this.OnnexttrackingnumberChanged(); + this.OninactivitytimeoutinminsChanging(value); + this._inactivitytimeoutinmins = value; + this.OninactivitytimeoutinminsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _nexttrackingnumber; - partial void OnnexttrackingnumberChanging(global::System.Nullable value); - partial void OnnexttrackingnumberChanged(); + private global::System.Nullable _inactivitytimeoutinmins; + partial void OninactivitytimeoutinminsChanging(global::System.Nullable value); + partial void OninactivitytimeoutinminsChanged(); /// - /// There are no comments for Property enablepricingoncreate in the schema. + /// There are no comments for Property sqmenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable enablepricingoncreate + public virtual global::System.Nullable sqmenabled { get { - return this._enablepricingoncreate; + return this._sqmenabled; } set { - this.OnenablepricingoncreateChanging(value); - this._enablepricingoncreate = value; - this.OnenablepricingoncreateChanged(); + this.OnsqmenabledChanging(value); + this._sqmenabled = value; + this.OnsqmenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _enablepricingoncreate; - partial void OnenablepricingoncreateChanging(global::System.Nullable value); - partial void OnenablepricingoncreateChanged(); + private global::System.Nullable _sqmenabled; + partial void OnsqmenabledChanging(global::System.Nullable value); + partial void OnsqmenabledChanged(); /// /// There are no comments for Property parsedtablecolumnprefix in the schema. /// @@ -539043,27 +539109,27 @@ public virtual string parsedtablecolumnprefix partial void OnparsedtablecolumnprefixChanging(string value); partial void OnparsedtablecolumnprefixChanged(); /// - /// There are no comments for Property allowusersseeappdownloadmessage in the schema. + /// There are no comments for Property socialinsightsenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable allowusersseeappdownloadmessage + public virtual global::System.Nullable socialinsightsenabled { get { - return this._allowusersseeappdownloadmessage; + return this._socialinsightsenabled; } set { - this.OnallowusersseeappdownloadmessageChanging(value); - this._allowusersseeappdownloadmessage = value; - this.OnallowusersseeappdownloadmessageChanged(); + this.OnsocialinsightsenabledChanging(value); + this._socialinsightsenabled = value; + this.OnsocialinsightsenabledChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _allowusersseeappdownloadmessage; - partial void OnallowusersseeappdownloadmessageChanging(global::System.Nullable value); - partial void OnallowusersseeappdownloadmessageChanged(); + private global::System.Nullable _socialinsightsenabled; + partial void OnsocialinsightsenabledChanging(global::System.Nullable value); + partial void OnsocialinsightsenabledChanged(); /// /// There are no comments for Property decimalsymbol in the schema. /// @@ -539175,27 +539241,27 @@ public virtual string signupoutlookdownloadfwlink partial void OnresolvesimilarunresolvedemailaddressChanging(global::System.Nullable value); partial void OnresolvesimilarunresolvedemailaddressChanged(); /// - /// There are no comments for Property unresolveemailaddressifmultiplematch in the schema. + /// There are no comments for Property maxproductsinbundle in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable unresolveemailaddressifmultiplematch + public virtual global::System.Nullable maxproductsinbundle { get { - return this._unresolveemailaddressifmultiplematch; + return this._maxproductsinbundle; } set { - this.OnunresolveemailaddressifmultiplematchChanging(value); - this._unresolveemailaddressifmultiplematch = value; - this.OnunresolveemailaddressifmultiplematchChanged(); + this.OnmaxproductsinbundleChanging(value); + this._maxproductsinbundle = value; + this.OnmaxproductsinbundleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _unresolveemailaddressifmultiplematch; - partial void OnunresolveemailaddressifmultiplematchChanging(global::System.Nullable value); - partial void OnunresolveemailaddressifmultiplematchChanged(); + private global::System.Nullable _maxproductsinbundle; + partial void OnmaxproductsinbundleChanging(global::System.Nullable value); + partial void OnmaxproductsinbundleChanged(); /// /// There are no comments for Property sharetopreviousowneronassign in the schema. /// @@ -539351,27 +539417,27 @@ public virtual string qualifyleadadditionaloptions partial void OnsqlaccessgroupidChanging(global::System.Nullable value); partial void OnsqlaccessgroupidChanged(); /// - /// There are no comments for Property trackingprefix in the schema. + /// There are no comments for Property currencydecimalprecision in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string trackingprefix + public virtual global::System.Nullable currencydecimalprecision { get { - return this._trackingprefix; + return this._currencydecimalprecision; } set { - this.OntrackingprefixChanging(value); - this._trackingprefix = value; - this.OntrackingprefixChanged(); + this.OncurrencydecimalprecisionChanging(value); + this._currencydecimalprecision = value; + this.OncurrencydecimalprecisionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _trackingprefix; - partial void OntrackingprefixChanging(string value); - partial void OntrackingprefixChanged(); + private global::System.Nullable _currencydecimalprecision; + partial void OncurrencydecimalprecisionChanging(global::System.Nullable value); + partial void OncurrencydecimalprecisionChanged(); /// /// There are no comments for Property yammergroupid in the schema. /// @@ -539417,49 +539483,49 @@ public virtual string dateformatstring partial void OndateformatstringChanging(string value); partial void OndateformatstringChanged(); /// - /// There are no comments for Property yammerpostmethod in the schema. + /// There are no comments for Property defaultthemedata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable yammerpostmethod + public virtual string defaultthemedata { get { - return this._yammerpostmethod; + return this._defaultthemedata; } set { - this.OnyammerpostmethodChanging(value); - this._yammerpostmethod = value; - this.OnyammerpostmethodChanged(); + this.OndefaultthemedataChanging(value); + this._defaultthemedata = value; + this.OndefaultthemedataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _yammerpostmethod; - partial void OnyammerpostmethodChanging(global::System.Nullable value); - partial void OnyammerpostmethodChanged(); + private string _defaultthemedata; + partial void OndefaultthemedataChanging(string value); + partial void OndefaultthemedataChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property allowuserformmodepreference in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable allowuserformmodepreference { get { - return this._timezoneruleversionnumber; + return this._allowuserformmodepreference; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnallowuserformmodepreferenceChanging(value); + this._allowuserformmodepreference = value; + this.OnallowuserformmodepreferenceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _allowuserformmodepreference; + partial void OnallowuserformmodepreferenceChanging(global::System.Nullable value); + partial void OnallowuserformmodepreferenceChanged(); /// /// There are no comments for Property lk_principalobjectattributeaccess_organizationid in the schema. /// @@ -542704,93 +542770,93 @@ public static ownermapping Createownermapping(global::EMBC.ESS.Utilities.Dynamic partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property ownermappingid in the schema. + /// There are no comments for Property targetuservalueforsourcecrmuserlink in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ownermappingid + public virtual string targetuservalueforsourcecrmuserlink { get { - return this._ownermappingid; + return this._targetuservalueforsourcecrmuserlink; } set { - this.OnownermappingidChanging(value); - this._ownermappingid = value; - this.OnownermappingidChanged(); + this.OntargetuservalueforsourcecrmuserlinkChanging(value); + this._targetuservalueforsourcecrmuserlink = value; + this.OntargetuservalueforsourcecrmuserlinkChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ownermappingid; - partial void OnownermappingidChanging(global::System.Nullable value); - partial void OnownermappingidChanged(); + private string _targetuservalueforsourcecrmuserlink; + partial void OntargetuservalueforsourcecrmuserlinkChanging(string value); + partial void OntargetuservalueforsourcecrmuserlinkChanged(); /// - /// There are no comments for Property targetuservalueforsourcecrmuserlink in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string targetuservalueforsourcecrmuserlink + public virtual global::System.Nullable statuscode { get { - return this._targetuservalueforsourcecrmuserlink; + return this._statuscode; } set { - this.OntargetuservalueforsourcecrmuserlinkChanging(value); - this._targetuservalueforsourcecrmuserlink = value; - this.OntargetuservalueforsourcecrmuserlinkChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _targetuservalueforsourcecrmuserlink; - partial void OntargetuservalueforsourcecrmuserlinkChanging(string value); - partial void OntargetuservalueforsourcecrmuserlinkChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _createdby_value { get { - return this._modifiedon; + return this.__createdby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._statuscode; + return this.__modifiedonbehalfby_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _targetsystemuserid_value in the schema. /// @@ -542814,71 +542880,71 @@ public virtual string targetuservalueforsourcecrmuserlink partial void On_targetsystemuserid_valueChanging(global::System.Nullable value); partial void On_targetsystemuserid_valueChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property processcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable processcode { get { - return this._introducedversion; + return this._processcode; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.OnprocesscodeChanging(value); + this._processcode = value; + this.OnprocesscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable _processcode; + partial void OnprocesscodeChanging(global::System.Nullable value); + partial void OnprocesscodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable statecode { get { - return this.__modifiedonbehalfby_value; + return this._statecode; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property processcode in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processcode + public virtual global::System.Nullable _modifiedby_value { get { - return this._processcode; + return this.__modifiedby_value; } set { - this.OnprocesscodeChanging(value); - this._processcode = value; - this.OnprocesscodeChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processcode; - partial void OnprocesscodeChanging(global::System.Nullable value); - partial void OnprocesscodeChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property ownermappingidunique in the schema. /// @@ -542902,28 +542968,6 @@ public virtual string introducedversion partial void OnownermappingiduniqueChanging(global::System.Nullable value); partial void OnownermappingiduniqueChanged(); /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// /// There are no comments for Property targetsystemuserdomainname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -542946,115 +542990,115 @@ public virtual string targetsystemuserdomainname partial void OntargetsystemuserdomainnameChanging(string value); partial void OntargetsystemuserdomainnameChanged(); /// - /// There are no comments for Property _importmapid_value in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _importmapid_value + public virtual global::System.Nullable componentstate { get { - return this.__importmapid_value; + return this._componentstate; } set { - this.On_importmapid_valueChanging(value); - this.__importmapid_value = value; - this.On_importmapid_valueChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __importmapid_value; - partial void On_importmapid_valueChanging(global::System.Nullable value); - partial void On_importmapid_valueChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual string introducedversion { get { - return this._createdon; + return this._introducedversion; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _importmapid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _importmapid_value { get { - return this.__createdby_value; + return this.__importmapid_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_importmapid_valueChanging(value); + this.__importmapid_value = value; + this.On_importmapid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __importmapid_value; + partial void On_importmapid_valueChanging(global::System.Nullable value); + partial void On_importmapid_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable createdon { get { - return this.__modifiedby_value; + return this._createdon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property sourceuservalueforsourcecrmuserlink in the schema. + /// There are no comments for Property sourcesystemusername in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string sourceuservalueforsourcecrmuserlink + public virtual string sourcesystemusername { get { - return this._sourceuservalueforsourcecrmuserlink; + return this._sourcesystemusername; } set { - this.OnsourceuservalueforsourcecrmuserlinkChanging(value); - this._sourceuservalueforsourcecrmuserlink = value; - this.OnsourceuservalueforsourcecrmuserlinkChanged(); + this.OnsourcesystemusernameChanging(value); + this._sourcesystemusername = value; + this.OnsourcesystemusernameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sourceuservalueforsourcecrmuserlink; - partial void OnsourceuservalueforsourcecrmuserlinkChanging(string value); - partial void OnsourceuservalueforsourcecrmuserlinkChanged(); + private string _sourcesystemusername; + partial void OnsourcesystemusernameChanging(string value); + partial void OnsourcesystemusernameChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -543078,27 +543122,27 @@ public virtual string sourceuservalueforsourcecrmuserlink partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property sourcesystemusername in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string sourcesystemusername + public virtual global::System.Nullable modifiedon { get { - return this._sourcesystemusername; + return this._modifiedon; } set { - this.OnsourcesystemusernameChanging(value); - this._sourcesystemusername = value; - this.OnsourcesystemusernameChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sourcesystemusername; - partial void OnsourcesystemusernameChanging(string value); - partial void OnsourcesystemusernameChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -543122,49 +543166,71 @@ public virtual string sourcesystemusername partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property ownermappingid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable ownermappingid { get { - return this._statecode; + return this._ownermappingid; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnownermappingidChanging(value); + this._ownermappingid = value; + this.OnownermappingidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _ownermappingid; + partial void OnownermappingidChanging(global::System.Nullable value); + partial void OnownermappingidChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable ismanaged { get { - return this._componentstate; + return this._ismanaged; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// + /// There are no comments for Property sourceuservalueforsourcecrmuserlink in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string sourceuservalueforsourcecrmuserlink + { + get + { + return this._sourceuservalueforsourcecrmuserlink; + } + set + { + this.OnsourceuservalueforsourcecrmuserlinkChanging(value); + this._sourceuservalueforsourcecrmuserlink = value; + this.OnsourceuservalueforsourcecrmuserlinkChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _sourceuservalueforsourcecrmuserlink; + partial void OnsourceuservalueforsourcecrmuserlinkChanging(string value); + partial void OnsourceuservalueforsourcecrmuserlinkChanged(); /// /// There are no comments for Property modifiedonbehalfby in the schema. /// @@ -551676,28 +551742,6 @@ public static package Createpackage(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property packageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -551808,27 +551852,27 @@ public virtual string applicationname partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property packageinstanceid in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable packageinstanceid + public virtual global::System.Nullable statuscode { get { - return this._packageinstanceid; + return this._statuscode; } set { - this.OnpackageinstanceidChanging(value); - this._packageinstanceid = value; - this.OnpackageinstanceidChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _packageinstanceid; - partial void OnpackageinstanceidChanging(global::System.Nullable value); - partial void OnpackageinstanceidChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -551896,6 +551940,28 @@ public virtual string publishername partial void OnpublishernameChanging(string value); partial void OnpublishernameChanged(); /// + /// There are no comments for Property publisherid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable publisherid + { + get + { + return this._publisherid; + } + set + { + this.OnpublisheridChanging(value); + this._publisherid = value; + this.OnpublisheridChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _publisherid; + partial void OnpublisheridChanging(global::System.Nullable value); + partial void OnpublisheridChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -551940,71 +552006,27 @@ public virtual string publishername partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property appid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable appid - { - get - { - return this._appid; - } - set - { - this.OnappidChanging(value); - this._appid = value; - this.OnappidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _appid; - partial void OnappidChanging(global::System.Nullable value); - partial void OnappidChanged(); - /// - /// There are no comments for Property publisherid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable publisherid - { - get - { - return this._publisherid; - } - set - { - this.OnpublisheridChanging(value); - this._publisherid = value; - this.OnpublisheridChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _publisherid; - partial void OnpublisheridChanging(global::System.Nullable value); - partial void OnpublisheridChanged(); - /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property packageinstanceid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable packageinstanceid { get { - return this._statuscode; + return this._packageinstanceid; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnpackageinstanceidChanging(value); + this._packageinstanceid = value; + this.OnpackageinstanceidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _packageinstanceid; + partial void OnpackageinstanceidChanging(global::System.Nullable value); + partial void OnpackageinstanceidChanged(); /// /// There are no comments for Property packageuniquename in the schema. /// @@ -552072,6 +552094,28 @@ public virtual string packageuniquename partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property packageversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -552138,27 +552182,49 @@ public virtual string packageversion partial void OninstalledonChanging(global::System.Nullable value); partial void OninstalledonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property appid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable appid { get { - return this._importsequencenumber; + return this._appid; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnappidChanging(value); + this._appid = value; + this.OnappidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _appid; + partial void OnappidChanging(global::System.Nullable value); + partial void OnappidChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property packageinstanceoperationid in the schema. /// @@ -552705,6 +552771,28 @@ public static personaldocumenttemplate Createpersonaldocumenttemplate(global::EM return personaldocumenttemplate; } /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -552815,27 +552903,27 @@ public virtual string content partial void OncontentChanging(string value); partial void OncontentChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__createdonbehalfby_value; + return this.__ownerid_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property status in the schema. /// @@ -552859,27 +552947,27 @@ public virtual string content partial void OnstatusChanging(global::System.Nullable value); partial void OnstatusChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._name; + return this.__createdonbehalfby_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property documenttype in the schema. /// @@ -552903,6 +552991,28 @@ public virtual string name partial void OndocumenttypeChanging(global::System.Nullable value); partial void OndocumenttypeChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property clientdata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -552969,49 +553079,27 @@ public virtual string clientdata partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual string name { get { - return this.__ownerid_value; + return this._name; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -553101,28 +553189,6 @@ public virtual string description partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property associatedentitytypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -558362,27 +558428,27 @@ public static phonetocaseprocess Createphonetocaseprocess(global::EMBC.ESS.Utili return phonetocaseprocess; } /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable overriddencreatedon { get { - return this._exchangerate; + return this._overriddencreatedon; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property name in the schema. /// @@ -558406,49 +558472,49 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property completedon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable completedon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._completedon; + return this._timezoneruleversionnumber; } set { - this.OncompletedonChanging(value); - this._completedon = value; - this.OncompletedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _completedon; - partial void OncompletedonChanging(global::System.Nullable value); - partial void OncompletedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._timezoneruleversionnumber; + return this.__transactioncurrencyid_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -558494,50 +558560,6 @@ public virtual string name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -558582,49 +558604,27 @@ public virtual string name partial void OndurationChanging(global::System.Nullable value); partial void OndurationChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// - /// There are no comments for Property _incidentid_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _incidentid_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__incidentid_value; + return this.__organizationid_value; } set { - this.On_incidentid_valueChanging(value); - this.__incidentid_value = value; - this.On_incidentid_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __incidentid_value; - partial void On_incidentid_valueChanging(global::System.Nullable value); - partial void On_incidentid_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -558648,49 +558648,49 @@ public virtual string name partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property completedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable completedon { get { - return this._modifiedon; + return this._completedon; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OncompletedonChanging(value); + this._completedon = value; + this.OncompletedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _completedon; + partial void OncompletedonChanging(global::System.Nullable value); + partial void OncompletedonChanged(); /// - /// There are no comments for Property activestagestartedon in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable activestagestartedon + public virtual global::System.Nullable modifiedon { get { - return this._activestagestartedon; + return this._modifiedon; } set { - this.OnactivestagestartedonChanging(value); - this._activestagestartedon = value; - this.OnactivestagestartedonChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _activestagestartedon; - partial void OnactivestagestartedonChanging(global::System.Nullable value); - partial void OnactivestagestartedonChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _processid_value in the schema. /// @@ -558714,28 +558714,6 @@ public virtual string name partial void On_processid_valueChanging(global::System.Nullable value); partial void On_processid_valueChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -558758,6 +558736,50 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property _incidentid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _incidentid_value + { + get + { + return this.__incidentid_value; + } + set + { + this.On_incidentid_valueChanging(value); + this.__incidentid_value = value; + this.On_incidentid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __incidentid_value; + partial void On_incidentid_valueChanging(global::System.Nullable value); + partial void On_incidentid_valueChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -558802,49 +558824,49 @@ public virtual string traversedpath partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property activestagestartedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable activestagestartedon { get { - return this._importsequencenumber; + return this._activestagestartedon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnactivestagestartedonChanging(value); + this._activestagestartedon = value; + this.OnactivestagestartedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _activestagestartedon; + partial void OnactivestagestartedonChanging(global::System.Nullable value); + partial void OnactivestagestartedonChanged(); /// - /// There are no comments for Property _activestageid_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _activestageid_value + public virtual global::System.Nullable exchangerate { get { - return this.__activestageid_value; + return this._exchangerate; } set { - this.On_activestageid_valueChanging(value); - this.__activestageid_value = value; - this.On_activestageid_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __activestageid_value; - partial void On_activestageid_valueChanging(global::System.Nullable value); - partial void On_activestageid_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -558890,6 +558912,50 @@ public virtual string traversedpath partial void OnbusinessprocessflowinstanceidChanging(global::System.Nullable value); partial void OnbusinessprocessflowinstanceidChanged(); /// + /// There are no comments for Property _activestageid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _activestageid_value + { + get + { + return this.__activestageid_value; + } + set + { + this.On_activestageid_valueChanging(value); + this.__activestageid_value = value; + this.On_activestageid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __activestageid_value; + partial void On_activestageid_valueChanging(global::System.Nullable value); + partial void On_activestageid_valueChanged(); + /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -559473,6 +559539,28 @@ public static picklistmapping Createpicklistmapping(global::EMBC.ESS.Utilities.D partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -559605,28 +559693,6 @@ public virtual string sourcevalue partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -559671,27 +559737,27 @@ public virtual string sourcevalue partial void OntargetvalueChanging(global::System.Nullable value); partial void OntargetvalueChanged(); /// - /// There are no comments for Property _columnmappingid_value in the schema. + /// There are no comments for Property processcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _columnmappingid_value + public virtual global::System.Nullable processcode { get { - return this.__columnmappingid_value; + return this._processcode; } set { - this.On_columnmappingid_valueChanging(value); - this.__columnmappingid_value = value; - this.On_columnmappingid_valueChanged(); + this.OnprocesscodeChanging(value); + this._processcode = value; + this.OnprocesscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __columnmappingid_value; - partial void On_columnmappingid_valueChanging(global::System.Nullable value); - partial void On_columnmappingid_valueChanged(); + private global::System.Nullable _processcode; + partial void OnprocesscodeChanging(global::System.Nullable value); + partial void OnprocesscodeChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -559759,71 +559825,71 @@ public virtual string sourcevalue partial void OnpicklistmappingiduniqueChanging(global::System.Nullable value); partial void OnpicklistmappingiduniqueChanged(); /// - /// There are no comments for Property processcode in the schema. + /// There are no comments for Property _columnmappingid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processcode + public virtual global::System.Nullable _columnmappingid_value { get { - return this._processcode; + return this.__columnmappingid_value; } set { - this.OnprocesscodeChanging(value); - this._processcode = value; - this.OnprocesscodeChanged(); + this.On_columnmappingid_valueChanging(value); + this.__columnmappingid_value = value; + this.On_columnmappingid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processcode; - partial void OnprocesscodeChanging(global::System.Nullable value); - partial void OnprocesscodeChanged(); + private global::System.Nullable __columnmappingid_value; + partial void On_columnmappingid_valueChanging(global::System.Nullable value); + partial void On_columnmappingid_valueChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable _createdby_value { get { - return this._introducedversion; + return this.__createdby_value; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__createdby_value; + return this.__modifiedonbehalfby_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -560183,6 +560249,28 @@ public static pluginassembly Createpluginassembly(global::EMBC.ESS.Utilities.Dyn return pluginassembly; } /// + /// There are no comments for Property url in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string url + { + get + { + return this._url; + } + set + { + this.OnurlChanging(value); + this._url = value; + this.OnurlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _url; + partial void OnurlChanging(string value); + partial void OnurlChanged(); + /// /// There are no comments for Property culture in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -560205,27 +560293,27 @@ public virtual string culture partial void OncultureChanging(string value); partial void OncultureChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property path in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string path { get { - return this.__modifiedby_value; + return this._path; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnpathChanging(value); + this._path = value; + this.OnpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _path; + partial void OnpathChanging(string value); + partial void OnpathChanged(); /// /// There are no comments for Property version in the schema. /// @@ -560271,6 +560359,50 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// + /// There are no comments for Property ispasswordset in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ispasswordset + { + get + { + return this._ispasswordset; + } + set + { + this.OnispasswordsetChanging(value); + this._ispasswordset = value; + this.OnispasswordsetChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ispasswordset; + partial void OnispasswordsetChanging(global::System.Nullable value); + partial void OnispasswordsetChanged(); + /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// /// There are no comments for Property sourcehash in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -560359,49 +560491,49 @@ public virtual string username partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable _modifiedby_value { get { - return this._introducedversion; + return this.__modifiedby_value; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable componentstate { get { - return this._createdon; + return this._componentstate; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property customizationlevel in the schema. /// @@ -560491,27 +560623,27 @@ public virtual byte[] content_binary partial void Oncontent_binaryChanging(byte[] value); partial void Oncontent_binaryChanged(); /// - /// There are no comments for Property path in the schema. + /// There are no comments for Property pluginassemblyid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string path + public virtual global::System.Nullable pluginassemblyid { get { - return this._path; + return this._pluginassemblyid; } set { - this.OnpathChanging(value); - this._path = value; - this.OnpathChanged(); + this.OnpluginassemblyidChanging(value); + this._pluginassemblyid = value; + this.OnpluginassemblyidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _path; - partial void OnpathChanging(string value); - partial void OnpathChanged(); + private global::System.Nullable _pluginassemblyid; + partial void OnpluginassemblyidChanging(global::System.Nullable value); + partial void OnpluginassemblyidChanged(); /// /// There are no comments for Property name in the schema. /// @@ -560535,71 +560667,71 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property minor in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable minor { get { - return this.__createdonbehalfby_value; + return this._minor; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnminorChanging(value); + this._minor = value; + this.OnminorChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _minor; + partial void OnminorChanging(global::System.Nullable value); + partial void OnminorChanged(); /// - /// There are no comments for Property ispasswordset in the schema. + /// There are no comments for Property pluginassemblyidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ispasswordset + public virtual global::System.Nullable pluginassemblyidunique { get { - return this._ispasswordset; + return this._pluginassemblyidunique; } set { - this.OnispasswordsetChanging(value); - this._ispasswordset = value; - this.OnispasswordsetChanged(); + this.OnpluginassemblyiduniqueChanging(value); + this._pluginassemblyidunique = value; + this.OnpluginassemblyiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ispasswordset; - partial void OnispasswordsetChanging(global::System.Nullable value); - partial void OnispasswordsetChanged(); + private global::System.Nullable _pluginassemblyidunique; + partial void OnpluginassemblyiduniqueChanging(global::System.Nullable value); + partial void OnpluginassemblyiduniqueChanged(); /// - /// There are no comments for Property password in the schema. + /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string password + public virtual string introducedversion { get { - return this._password; + return this._introducedversion; } set { - this.OnpasswordChanging(value); - this._password = value; - this.OnpasswordChanged(); + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _password; - partial void OnpasswordChanging(string value); - partial void OnpasswordChanged(); + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -560645,27 +560777,27 @@ public virtual string password partial void OnisolationmodeChanging(global::System.Nullable value); partial void OnisolationmodeChanged(); /// - /// There are no comments for Property url in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string url + public virtual global::System.Nullable createdon { get { - return this._url; + return this._createdon; } set { - this.OnurlChanging(value); - this._url = value; - this.OnurlChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _url; - partial void OnurlChanging(string value); - partial void OnurlChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property iscustomizable in the schema. /// @@ -560733,49 +560865,49 @@ public virtual string url partial void OnmajorChanging(global::System.Nullable value); partial void OnmajorChanged(); /// - /// There are no comments for Property minor in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable minor + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._minor; + return this.__createdonbehalfby_value; } set { - this.OnminorChanging(value); - this._minor = value; - this.OnminorChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _minor; - partial void OnminorChanging(global::System.Nullable value); - partial void OnminorChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable solutionid { get { - return this._componentstate; + return this._solutionid; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -560799,28 +560931,6 @@ public virtual string url partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// /// There are no comments for Property authtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -560865,28 +560975,6 @@ public virtual string url partial void OnsourcetypeChanging(global::System.Nullable value); partial void OnsourcetypeChanged(); /// - /// There are no comments for Property pluginassemblyid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable pluginassemblyid - { - get - { - return this._pluginassemblyid; - } - set - { - this.OnpluginassemblyidChanging(value); - this._pluginassemblyid = value; - this.OnpluginassemblyidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pluginassemblyid; - partial void OnpluginassemblyidChanging(global::System.Nullable value); - partial void OnpluginassemblyidChanged(); - /// /// There are no comments for Property ishidden in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -560909,49 +560997,27 @@ public virtual string url partial void OnishiddenChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OnishiddenChanged(); /// - /// There are no comments for Property pluginassemblyidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable pluginassemblyidunique - { - get - { - return this._pluginassemblyidunique; - } - set - { - this.OnpluginassemblyiduniqueChanging(value); - this._pluginassemblyidunique = value; - this.OnpluginassemblyiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pluginassemblyidunique; - partial void OnpluginassemblyiduniqueChanging(global::System.Nullable value); - partial void OnpluginassemblyiduniqueChanged(); - /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property password in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual string password { get { - return this._overwritetime; + return this._password; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnpasswordChanging(value); + this._password = value; + this.OnpasswordChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private string _password; + partial void OnpasswordChanging(string value); + partial void OnpasswordChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -561253,6 +561319,50 @@ public virtual string secureconfiguration partial void OnorganizationidChanging(global::System.Nullable value); partial void OnorganizationidChanged(); /// + /// There are no comments for Property pluginstepid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable pluginstepid + { + get + { + return this._pluginstepid; + } + set + { + this.OnpluginstepidChanging(value); + this._pluginstepid = value; + this.OnpluginstepidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _pluginstepid; + partial void OnpluginstepidChanging(global::System.Nullable value); + partial void OnpluginstepidChanged(); + /// + /// There are no comments for Property persistencekey in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable persistencekey + { + get + { + return this._persistencekey; + } + set + { + this.OnpersistencekeyChanging(value); + this._persistencekey = value; + this.OnpersistencekeyChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _persistencekey; + partial void OnpersistencekeyChanging(global::System.Nullable value); + partial void OnpersistencekeyChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -561275,71 +561385,71 @@ public virtual string secureconfiguration partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property performanceexecutionduration in the schema. + /// There are no comments for Property performanceexecutionstarttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable performanceexecutionduration + public virtual global::System.Nullable performanceexecutionstarttime { get { - return this._performanceexecutionduration; + return this._performanceexecutionstarttime; } set { - this.OnperformanceexecutiondurationChanging(value); - this._performanceexecutionduration = value; - this.OnperformanceexecutiondurationChanged(); + this.OnperformanceexecutionstarttimeChanging(value); + this._performanceexecutionstarttime = value; + this.OnperformanceexecutionstarttimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _performanceexecutionduration; - partial void OnperformanceexecutiondurationChanging(global::System.Nullable value); - partial void OnperformanceexecutiondurationChanged(); + private global::System.Nullable _performanceexecutionstarttime; + partial void OnperformanceexecutionstarttimeChanging(global::System.Nullable value); + partial void OnperformanceexecutionstarttimeChanged(); /// - /// There are no comments for Property plugintracelogid in the schema. + /// There are no comments for Property performanceexecutionduration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable plugintracelogid + public virtual global::System.Nullable performanceexecutionduration { get { - return this._plugintracelogid; + return this._performanceexecutionduration; } set { - this.OnplugintracelogidChanging(value); - this._plugintracelogid = value; - this.OnplugintracelogidChanged(); + this.OnperformanceexecutiondurationChanging(value); + this._performanceexecutionduration = value; + this.OnperformanceexecutiondurationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _plugintracelogid; - partial void OnplugintracelogidChanging(global::System.Nullable value); - partial void OnplugintracelogidChanged(); + private global::System.Nullable _performanceexecutionduration; + partial void OnperformanceexecutiondurationChanging(global::System.Nullable value); + partial void OnperformanceexecutiondurationChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property issystemcreated in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable issystemcreated { get { - return this._createdon; + return this._issystemcreated; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnissystemcreatedChanging(value); + this._issystemcreated = value; + this.OnissystemcreatedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _issystemcreated; + partial void OnissystemcreatedChanging(global::System.Nullable value); + partial void OnissystemcreatedChanged(); /// /// There are no comments for Property primaryentity in the schema. /// @@ -561363,137 +561473,159 @@ public virtual string primaryentity partial void OnprimaryentityChanging(string value); partial void OnprimaryentityChanged(); /// - /// There are no comments for Property performanceconstructorstarttime in the schema. + /// There are no comments for Property plugintracelogid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable performanceconstructorstarttime + public virtual global::System.Nullable plugintracelogid { get { - return this._performanceconstructorstarttime; + return this._plugintracelogid; } set { - this.OnperformanceconstructorstarttimeChanging(value); - this._performanceconstructorstarttime = value; - this.OnperformanceconstructorstarttimeChanged(); + this.OnplugintracelogidChanging(value); + this._plugintracelogid = value; + this.OnplugintracelogidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _performanceconstructorstarttime; - partial void OnperformanceconstructorstarttimeChanging(global::System.Nullable value); - partial void OnperformanceconstructorstarttimeChanged(); + private global::System.Nullable _plugintracelogid; + partial void OnplugintracelogidChanging(global::System.Nullable value); + partial void OnplugintracelogidChanged(); /// - /// There are no comments for Property persistencekey in the schema. + /// There are no comments for Property mode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable persistencekey + public virtual global::System.Nullable mode { get { - return this._persistencekey; + return this._mode; } set { - this.OnpersistencekeyChanging(value); - this._persistencekey = value; - this.OnpersistencekeyChanged(); + this.OnmodeChanging(value); + this._mode = value; + this.OnmodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _persistencekey; - partial void OnpersistencekeyChanging(global::System.Nullable value); - partial void OnpersistencekeyChanged(); + private global::System.Nullable _mode; + partial void OnmodeChanging(global::System.Nullable value); + partial void OnmodeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property correlationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable correlationid { get { - return this.__createdonbehalfby_value; + return this._correlationid; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OncorrelationidChanging(value); + this._correlationid = value; + this.OncorrelationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _correlationid; + partial void OncorrelationidChanging(global::System.Nullable value); + partial void OncorrelationidChanged(); /// - /// There are no comments for Property pluginstepid in the schema. + /// There are no comments for Property operationtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pluginstepid + public virtual global::System.Nullable operationtype { get { - return this._pluginstepid; + return this._operationtype; } set { - this.OnpluginstepidChanging(value); - this._pluginstepid = value; - this.OnpluginstepidChanged(); + this.OnoperationtypeChanging(value); + this._operationtype = value; + this.OnoperationtypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pluginstepid; - partial void OnpluginstepidChanging(global::System.Nullable value); - partial void OnpluginstepidChanged(); + private global::System.Nullable _operationtype; + partial void OnoperationtypeChanging(global::System.Nullable value); + partial void OnoperationtypeChanged(); /// - /// There are no comments for Property mode in the schema. + /// There are no comments for Property depth in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable mode + public virtual global::System.Nullable depth { get { - return this._mode; + return this._depth; } set { - this.OnmodeChanging(value); - this._mode = value; - this.OnmodeChanged(); + this.OndepthChanging(value); + this._depth = value; + this.OndepthChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _mode; - partial void OnmodeChanging(global::System.Nullable value); - partial void OnmodeChanged(); + private global::System.Nullable _depth; + partial void OndepthChanging(global::System.Nullable value); + partial void OndepthChanged(); /// - /// There are no comments for Property operationtype in the schema. + /// There are no comments for Property performanceconstructorduration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable operationtype + public virtual global::System.Nullable performanceconstructorduration { get { - return this._operationtype; + return this._performanceconstructorduration; } set { - this.OnoperationtypeChanging(value); - this._operationtype = value; - this.OnoperationtypeChanged(); + this.OnperformanceconstructordurationChanging(value); + this._performanceconstructorduration = value; + this.OnperformanceconstructordurationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _operationtype; - partial void OnoperationtypeChanging(global::System.Nullable value); - partial void OnoperationtypeChanged(); + private global::System.Nullable _performanceconstructorduration; + partial void OnperformanceconstructordurationChanging(global::System.Nullable value); + partial void OnperformanceconstructordurationChanged(); + /// + /// There are no comments for Property configuration in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string configuration + { + get + { + return this._configuration; + } + set + { + this.OnconfigurationChanging(value); + this._configuration = value; + this.OnconfigurationChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _configuration; + partial void OnconfigurationChanging(string value); + partial void OnconfigurationChanged(); /// /// There are no comments for Property messagename in the schema. /// @@ -561517,72 +561649,6 @@ public virtual string messagename partial void OnmessagenameChanging(string value); partial void OnmessagenameChanged(); /// - /// There are no comments for Property performanceconstructorduration in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable performanceconstructorduration - { - get - { - return this._performanceconstructorduration; - } - set - { - this.OnperformanceconstructordurationChanging(value); - this._performanceconstructorduration = value; - this.OnperformanceconstructordurationChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _performanceconstructorduration; - partial void OnperformanceconstructordurationChanging(global::System.Nullable value); - partial void OnperformanceconstructordurationChanged(); - /// - /// There are no comments for Property performanceexecutionstarttime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable performanceexecutionstarttime - { - get - { - return this._performanceexecutionstarttime; - } - set - { - this.OnperformanceexecutionstarttimeChanging(value); - this._performanceexecutionstarttime = value; - this.OnperformanceexecutionstarttimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _performanceexecutionstarttime; - partial void OnperformanceexecutionstarttimeChanging(global::System.Nullable value); - partial void OnperformanceexecutionstarttimeChanged(); - /// - /// There are no comments for Property configuration in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string configuration - { - get - { - return this._configuration; - } - set - { - this.OnconfigurationChanging(value); - this._configuration = value; - this.OnconfigurationChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _configuration; - partial void OnconfigurationChanging(string value); - partial void OnconfigurationChanged(); - /// /// There are no comments for Property profile in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -561605,28 +561671,6 @@ public virtual string profile partial void OnprofileChanging(string value); partial void OnprofileChanged(); /// - /// There are no comments for Property depth in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable depth - { - get - { - return this._depth; - } - set - { - this.OndepthChanging(value); - this._depth = value; - this.OndepthChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _depth; - partial void OndepthChanging(global::System.Nullable value); - partial void OndepthChanged(); - /// /// There are no comments for Property typename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -561649,49 +561693,49 @@ public virtual string typename partial void OntypenameChanging(string value); partial void OntypenameChanged(); /// - /// There are no comments for Property issystemcreated in the schema. + /// There are no comments for Property performanceconstructorstarttime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable issystemcreated + public virtual global::System.Nullable performanceconstructorstarttime { get { - return this._issystemcreated; + return this._performanceconstructorstarttime; } set { - this.OnissystemcreatedChanging(value); - this._issystemcreated = value; - this.OnissystemcreatedChanged(); + this.OnperformanceconstructorstarttimeChanging(value); + this._performanceconstructorstarttime = value; + this.OnperformanceconstructorstarttimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _issystemcreated; - partial void OnissystemcreatedChanging(global::System.Nullable value); - partial void OnissystemcreatedChanged(); + private global::System.Nullable _performanceconstructorstarttime; + partial void OnperformanceconstructorstarttimeChanging(global::System.Nullable value); + partial void OnperformanceconstructorstarttimeChanged(); /// - /// There are no comments for Property correlationid in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable correlationid + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._correlationid; + return this.__createdonbehalfby_value; } set { - this.OncorrelationidChanging(value); - this._correlationid = value; - this.OncorrelationidChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _correlationid; - partial void OncorrelationidChanging(global::System.Nullable value); - partial void OncorrelationidChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property requestid in the schema. /// @@ -561759,6 +561803,28 @@ public virtual string messageblock partial void OnmessageblockChanging(string value); partial void OnmessageblockChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property createdonbehalfby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -562120,49 +562186,27 @@ public static plugintype Createplugintype(global::EMBC.ESS.Utilities.Dynamics.Mi return plugintype; } /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property plugintypeid in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable plugintypeid + public virtual global::System.Nullable ismanaged { get { - return this._plugintypeid; + return this._ismanaged; } set { - this.OnplugintypeidChanging(value); - this._plugintypeid = value; - this.OnplugintypeidChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _plugintypeid; - partial void OnplugintypeidChanging(global::System.Nullable value); - partial void OnplugintypeidChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -562186,49 +562230,27 @@ public static plugintype Createplugintype(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property isworkflowactivity in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isworkflowactivity - { - get - { - return this._isworkflowactivity; - } - set - { - this.OnisworkflowactivityChanging(value); - this._isworkflowactivity = value; - this.OnisworkflowactivityChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isworkflowactivity; - partial void OnisworkflowactivityChanging(global::System.Nullable value); - partial void OnisworkflowactivityChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property plugintypeidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable plugintypeidunique { get { - return this.__createdonbehalfby_value; + return this._plugintypeidunique; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnplugintypeiduniqueChanging(value); + this._plugintypeidunique = value; + this.OnplugintypeiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _plugintypeidunique; + partial void OnplugintypeiduniqueChanging(global::System.Nullable value); + partial void OnplugintypeiduniqueChanged(); /// /// There are no comments for Property workflowactivitygroupname in the schema. /// @@ -562296,27 +562318,49 @@ public virtual string workflowactivitygroupname partial void OnminorChanging(global::System.Nullable value); partial void OnminorChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable solutionid { get { - return this.__createdby_value; + return this._solutionid; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property culture in the schema. /// @@ -562362,27 +562406,71 @@ public virtual string version partial void OnversionChanging(string value); partial void OnversionChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property customworkflowactivityinfo in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual string customworkflowactivityinfo { get { - return this._ismanaged; + return this._customworkflowactivityinfo; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.OncustomworkflowactivityinfoChanging(value); + this._customworkflowactivityinfo = value; + this.OncustomworkflowactivityinfoChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private string _customworkflowactivityinfo; + partial void OncustomworkflowactivityinfoChanging(string value); + partial void OncustomworkflowactivityinfoChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property plugintypeid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable plugintypeid + { + get + { + return this._plugintypeid; + } + set + { + this.OnplugintypeidChanging(value); + this._plugintypeid = value; + this.OnplugintypeidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _plugintypeid; + partial void OnplugintypeidChanging(global::System.Nullable value); + partial void OnplugintypeidChanged(); /// /// There are no comments for Property description in the schema. /// @@ -562428,27 +562516,27 @@ public virtual string description partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__modifiedonbehalfby_value; + return this.__createdonbehalfby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property friendlyname in the schema. /// @@ -562494,71 +562582,71 @@ public virtual string friendlyname partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property customizationlevel in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable customizationlevel + public virtual global::System.Nullable versionnumber { get { - return this._customizationlevel; + return this._versionnumber; } set { - this.OncustomizationlevelChanging(value); - this._customizationlevel = value; - this.OncustomizationlevelChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _customizationlevel; - partial void OncustomizationlevelChanging(global::System.Nullable value); - partial void OncustomizationlevelChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property customizationlevel in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable customizationlevel { get { - return this._solutionid; + return this._customizationlevel; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OncustomizationlevelChanging(value); + this._customizationlevel = value; + this.OncustomizationlevelChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable _customizationlevel; + partial void OncustomizationlevelChanging(global::System.Nullable value); + partial void OncustomizationlevelChanged(); /// - /// There are no comments for Property plugintypeidunique in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable plugintypeidunique + public virtual global::System.Nullable componentstate { get { - return this._plugintypeidunique; + return this._componentstate; } set { - this.OnplugintypeiduniqueChanging(value); - this._plugintypeidunique = value; - this.OnplugintypeiduniqueChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _plugintypeidunique; - partial void OnplugintypeiduniqueChanging(global::System.Nullable value); - partial void OnplugintypeiduniqueChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property name in the schema. /// @@ -562604,27 +562692,27 @@ public virtual string publickeytoken partial void OnpublickeytokenChanging(string value); partial void OnpublickeytokenChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property isworkflowactivity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable isworkflowactivity { get { - return this._componentstate; + return this._isworkflowactivity; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnisworkflowactivityChanging(value); + this._isworkflowactivity = value; + this.OnisworkflowactivityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _isworkflowactivity; + partial void OnisworkflowactivityChanging(global::System.Nullable value); + partial void OnisworkflowactivityChanged(); /// /// There are no comments for Property assemblyname in the schema. /// @@ -562648,28 +562736,6 @@ public virtual string assemblyname partial void OnassemblynameChanging(string value); partial void OnassemblynameChanged(); /// - /// There are no comments for Property customworkflowactivityinfo in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string customworkflowactivityinfo - { - get - { - return this._customworkflowactivityinfo; - } - set - { - this.OncustomworkflowactivityinfoChanging(value); - this._customworkflowactivityinfo = value; - this.OncustomworkflowactivityinfoChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _customworkflowactivityinfo; - partial void OncustomworkflowactivityinfoChanging(string value); - partial void OncustomworkflowactivityinfoChanged(); - /// /// There are no comments for Property _pluginassemblyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -563238,27 +563304,27 @@ public static plugintypestatistic Createplugintypestatistic(global::EMBC.ESS.Uti partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property terminatememorycontributionpercent in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable terminatememorycontributionpercent { get { - return this.__createdby_value; + return this._terminatememorycontributionpercent; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnterminatememorycontributionpercentChanging(value); + this._terminatememorycontributionpercent = value; + this.OnterminatememorycontributionpercentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _terminatememorycontributionpercent; + partial void OnterminatememorycontributionpercentChanging(global::System.Nullable value); + partial void OnterminatememorycontributionpercentChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -563304,94 +563370,6 @@ public static plugintypestatistic Createplugintypestatistic(global::EMBC.ESS.Uti partial void OncrashcountChanging(global::System.Nullable value); partial void OncrashcountChanged(); /// - /// There are no comments for Property executecount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable executecount - { - get - { - return this._executecount; - } - set - { - this.OnexecutecountChanging(value); - this._executecount = value; - this.OnexecutecountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _executecount; - partial void OnexecutecountChanging(global::System.Nullable value); - partial void OnexecutecountChanged(); - /// - /// There are no comments for Property terminatememorycontributionpercent in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable terminatememorycontributionpercent - { - get - { - return this._terminatememorycontributionpercent; - } - set - { - this.OnterminatememorycontributionpercentChanging(value); - this._terminatememorycontributionpercent = value; - this.OnterminatememorycontributionpercentChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _terminatememorycontributionpercent; - partial void OnterminatememorycontributionpercentChanging(global::System.Nullable value); - partial void OnterminatememorycontributionpercentChanged(); - /// - /// There are no comments for Property terminateothercontributionpercent in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable terminateothercontributionpercent - { - get - { - return this._terminateothercontributionpercent; - } - set - { - this.OnterminateothercontributionpercentChanging(value); - this._terminateothercontributionpercent = value; - this.OnterminateothercontributionpercentChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _terminateothercontributionpercent; - partial void OnterminateothercontributionpercentChanging(global::System.Nullable value); - partial void OnterminateothercontributionpercentChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property terminatecpucontributionpercent in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -563414,6 +563392,72 @@ public static plugintypestatistic Createplugintypestatistic(global::EMBC.ESS.Uti partial void OnterminatecpucontributionpercentChanging(global::System.Nullable value); partial void OnterminatecpucontributionpercentChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property failurepercent in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -563502,27 +563546,27 @@ public static plugintypestatistic Createplugintypestatistic(global::EMBC.ESS.Uti partial void On_plugintypeid_valueChanging(global::System.Nullable value); partial void On_plugintypeid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property terminateothercontributionpercent in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable terminateothercontributionpercent { get { - return this.__createdonbehalfby_value; + return this._terminateothercontributionpercent; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnterminateothercontributionpercentChanging(value); + this._terminateothercontributionpercent = value; + this.OnterminateothercontributionpercentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _terminateothercontributionpercent; + partial void OnterminateothercontributionpercentChanging(global::System.Nullable value); + partial void OnterminateothercontributionpercentChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -563612,6 +563656,28 @@ public static plugintypestatistic Createplugintypestatistic(global::EMBC.ESS.Uti partial void OncrashpercentChanging(global::System.Nullable value); partial void OncrashpercentChanged(); /// + /// There are no comments for Property executecount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable executecount + { + get + { + return this._executecount; + } + set + { + this.OnexecutecountChanging(value); + this._executecount = value; + this.OnexecutecountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _executecount; + partial void OnexecutecountChanging(global::System.Nullable value); + partial void OnexecutecountChanged(); + /// /// There are no comments for Property failurecount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -564200,6 +564266,28 @@ public static position Createposition(global::EMBC.ESS.Utilities.Dynamics.Micros return position; } /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -564244,49 +564332,49 @@ public static position Createposition(global::EMBC.ESS.Utilities.Dynamics.Micros partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable overriddencreatedon { get { - return this._name; + return this._overriddencreatedon; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable modifiedon { get { - return this.__modifiedby_value; + return this._modifiedon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _parentpositionid_value in the schema. /// @@ -564310,49 +564398,71 @@ public virtual string name partial void On_parentpositionid_valueChanging(global::System.Nullable value); partial void On_parentpositionid_valueChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _organizationid_value { get { - return this._exchangerate; + return this.__organizationid_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual string description { get { - return this.__organizationid_value; + return this._description; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -564420,49 +564530,27 @@ public virtual string name partial void OnpositionidChanging(global::System.Nullable value); partial void OnpositionidChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable importsequencenumber { get { - return this._statuscode; + return this._importsequencenumber; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -564508,28 +564596,6 @@ public virtual string name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property description in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string description - { - get - { - return this._description; - } - set - { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -564574,71 +564640,71 @@ public virtual string description partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable exchangerate { get { - return this._timezoneruleversionnumber; + return this._exchangerate; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._modifiedon; + return this._timezoneruleversionnumber; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable statuscode { get { - return this._importsequencenumber; + return this._statuscode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -565128,6 +565194,28 @@ public static postcomment Createpostcomment(global::EMBC.ESS.Utilities.Dynamics. return postcomment; } /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property text in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -565172,27 +565260,27 @@ public virtual string text partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable createdon { get { - return this._utcconversiontimezonecode; + return this._createdon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -565216,28 +565304,6 @@ public virtual string text partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -565304,27 +565370,27 @@ public virtual string text partial void OnpostcommentidChanging(global::System.Nullable value); partial void OnpostcommentidChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._createdon; + return this.__createdonbehalfby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -567003,49 +567069,49 @@ public static postlike Createpostlike(global::EMBC.ESS.Utilities.Dynamics.Micros return postlike; } /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__createdonbehalfby_value; + return this.__createdby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _postid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _postid_value { get { - return this.__createdby_value; + return this.__postid_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_postid_valueChanging(value); + this.__postid_value = value; + this.On_postid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __postid_value; + partial void On_postid_valueChanging(global::System.Nullable value); + partial void On_postid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -567069,49 +567135,49 @@ public static postlike Createpostlike(global::EMBC.ESS.Utilities.Dynamics.Micros partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _postid_value in the schema. + /// There are no comments for Property postlikeid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _postid_value + public virtual global::System.Nullable postlikeid { get { - return this.__postid_value; + return this._postlikeid; } set { - this.On_postid_valueChanging(value); - this.__postid_value = value; - this.On_postid_valueChanged(); + this.OnpostlikeidChanging(value); + this._postlikeid = value; + this.OnpostlikeidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __postid_value; - partial void On_postid_valueChanging(global::System.Nullable value); - partial void On_postid_valueChanged(); + private global::System.Nullable _postlikeid; + partial void OnpostlikeidChanging(global::System.Nullable value); + partial void OnpostlikeidChanged(); /// - /// There are no comments for Property postlikeid in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable postlikeid + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._postlikeid; + return this.__createdonbehalfby_value; } set { - this.OnpostlikeidChanging(value); - this._postlikeid = value; - this.OnpostlikeidChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _postlikeid; - partial void OnpostlikeidChanging(global::System.Nullable value); - partial void OnpostlikeidChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -568686,27 +568752,27 @@ public static post Createpost(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dyna partial void OntypeChanging(global::System.Nullable value); partial void OntypeChanged(); /// - /// There are no comments for Property text in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string text + public virtual global::System.Nullable modifiedon { get { - return this._text; + return this._modifiedon; } set { - this.OntextChanging(value); - this._text = value; - this.OntextChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _text; - partial void OntextChanging(string value); - partial void OntextChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -568840,27 +568906,27 @@ public virtual string text partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property text in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string text { get { - return this._modifiedon; + return this._text; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OntextChanging(value); + this._text = value; + this.OntextChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private string _text; + partial void OntextChanging(string value); + partial void OntextChanged(); /// /// There are no comments for Property _regardingobjectownerid_value in the schema. /// @@ -569787,27 +569853,27 @@ public static pricelevel Createpricelevel(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable _organizationid_value { get { - return this._description; + return this.__organizationid_value; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -569875,28 +569941,6 @@ public virtual string description partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -569963,27 +570007,49 @@ public virtual string name partial void OnfreighttermscodeChanging(global::System.Nullable value); partial void OnfreighttermscodeChanged(); /// - /// There are no comments for Property pricelevelid in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pricelevelid + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._pricelevelid; + return this.__createdonbehalfby_value; } set { - this.OnpricelevelidChanging(value); - this._pricelevelid = value; - this.OnpricelevelidChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pricelevelid; - partial void OnpricelevelidChanging(global::System.Nullable value); - partial void OnpricelevelidChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property description in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string description + { + get + { + return this._description; + } + set + { + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -570051,6 +570117,28 @@ public virtual string name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// + /// There are no comments for Property pricelevelid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable pricelevelid + { + get + { + return this._pricelevelid; + } + set + { + this.OnpricelevelidChanging(value); + this._pricelevelid = value; + this.OnpricelevelidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _pricelevelid; + partial void OnpricelevelidChanging(global::System.Nullable value); + partial void OnpricelevelidChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -570095,6 +570183,28 @@ public virtual string name partial void OnpaymentmethodcodeChanging(global::System.Nullable value); partial void OnpaymentmethodcodeChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -570117,27 +570227,49 @@ public virtual string name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property begindate in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable begindate + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._begindate; + return this._utcconversiontimezonecode; } set { - this.OnbegindateChanging(value); - this._begindate = value; - this.OnbegindateChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _begindate; - partial void OnbegindateChanging(global::System.Nullable value); - partial void OnbegindateChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -570161,27 +570293,27 @@ public virtual string name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property begindate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable begindate { get { - return this.__createdonbehalfby_value; + return this._begindate; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnbegindateChanging(value); + this._begindate = value; + this.OnbegindateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _begindate; + partial void OnbegindateChanging(global::System.Nullable value); + partial void OnbegindateChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -570205,50 +570337,6 @@ public virtual string name partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -570271,28 +570359,6 @@ public virtual string name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -584814,28 +584880,6 @@ public static privilege Createprivilege(global::EMBC.ESS.Utilities.Dynamics.Micr partial void OnprivilegerowidChanging(global::System.Nullable value); partial void OnprivilegerowidChanged(); /// - /// There are no comments for Property canbebasic in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable canbebasic - { - get - { - return this._canbebasic; - } - set - { - this.OncanbebasicChanging(value); - this._canbebasic = value; - this.OncanbebasicChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _canbebasic; - partial void OncanbebasicChanging(global::System.Nullable value); - partial void OncanbebasicChanged(); - /// /// There are no comments for Property accessright in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -584858,27 +584902,27 @@ public static privilege Createprivilege(global::EMBC.ESS.Utilities.Dynamics.Micr partial void OnaccessrightChanging(global::System.Nullable value); partial void OnaccessrightChanged(); /// - /// There are no comments for Property privilegeid in the schema. + /// There are no comments for Property canbebasic in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable privilegeid + public virtual global::System.Nullable canbebasic { get { - return this._privilegeid; + return this._canbebasic; } set { - this.OnprivilegeidChanging(value); - this._privilegeid = value; - this.OnprivilegeidChanged(); + this.OncanbebasicChanging(value); + this._canbebasic = value; + this.OncanbebasicChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _privilegeid; - partial void OnprivilegeidChanging(global::System.Nullable value); - partial void OnprivilegeidChanged(); + private global::System.Nullable _canbebasic; + partial void OncanbebasicChanging(global::System.Nullable value); + partial void OncanbebasicChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -584924,27 +584968,27 @@ public static privilege Createprivilege(global::EMBC.ESS.Utilities.Dynamics.Micr partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property privilegeid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable privilegeid { get { - return this._solutionid; + return this._privilegeid; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OnprivilegeidChanging(value); + this._privilegeid = value; + this.OnprivilegeidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable _privilegeid; + partial void OnprivilegeidChanging(global::System.Nullable value); + partial void OnprivilegeidChanged(); /// /// There are no comments for Property canbeentityreference in the schema. /// @@ -585122,6 +585166,28 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// /// There are no comments for Property canbelocal in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -592361,6 +592427,28 @@ public static processsession Createprocesssession(global::EMBC.ESS.Utilities.Dyn partial void OncompletedonChanging(global::System.Nullable value); partial void OncompletedonChanged(); /// + /// There are no comments for Property inputarguments in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string inputarguments + { + get + { + return this._inputarguments; + } + set + { + this.OninputargumentsChanging(value); + this._inputarguments = value; + this.OninputargumentsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _inputarguments; + partial void OninputargumentsChanging(string value); + partial void OninputargumentsChanged(); + /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -592405,159 +592493,115 @@ public static processsession Createprocesssession(global::EMBC.ESS.Utilities.Dyn partial void On_executedby_valueChanging(global::System.Nullable value); partial void On_executedby_valueChanged(); /// - /// There are no comments for Property processstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string processstate - { - get - { - return this._processstate; - } - set - { - this.OnprocessstateChanging(value); - this._processstate = value; - this.OnprocessstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _processstate; - partial void OnprocessstateChanging(string value); - partial void OnprocessstateChanged(); - /// - /// There are no comments for Property processstate_binary in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual byte[] processstate_binary - { - get - { - return this._processstate_binary; - } - set - { - this.Onprocessstate_binaryChanging(value); - this._processstate_binary = value; - this.Onprocessstate_binaryChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _processstate_binary; - partial void Onprocessstate_binaryChanging(byte[] value); - partial void Onprocessstate_binaryChanged(); - /// - /// There are no comments for Property _completedby_value in the schema. + /// There are no comments for Property errorcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _completedby_value + public virtual global::System.Nullable errorcode { get { - return this.__completedby_value; + return this._errorcode; } set { - this.On_completedby_valueChanging(value); - this.__completedby_value = value; - this.On_completedby_valueChanged(); + this.OnerrorcodeChanging(value); + this._errorcode = value; + this.OnerrorcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __completedby_value; - partial void On_completedby_valueChanging(global::System.Nullable value); - partial void On_completedby_valueChanged(); + private global::System.Nullable _errorcode; + partial void OnerrorcodeChanging(global::System.Nullable value); + partial void OnerrorcodeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property executedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable executedon { get { - return this.__owningbusinessunit_value; + return this._executedon; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnexecutedonChanging(value); + this._executedon = value; + this.OnexecutedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable _executedon; + partial void OnexecutedonChanging(global::System.Nullable value); + partial void OnexecutedonChanged(); /// - /// There are no comments for Property _processid_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _processid_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__processid_value; + return this.__modifiedby_value; } set { - this.On_processid_valueChanging(value); - this.__processid_value = value; - this.On_processid_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __processid_value; - partial void On_processid_valueChanging(global::System.Nullable value); - partial void On_processid_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _nextlinkedsessionid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _nextlinkedsessionid_value { get { - return this._modifiedon; + return this.__nextlinkedsessionid_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_nextlinkedsessionid_valueChanging(value); + this.__nextlinkedsessionid_value = value; + this.On_nextlinkedsessionid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __nextlinkedsessionid_value; + partial void On_nextlinkedsessionid_valueChanging(global::System.Nullable value); + partial void On_nextlinkedsessionid_valueChanged(); /// - /// There are no comments for Property _nextlinkedsessionid_value in the schema. + /// There are no comments for Property _completedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _nextlinkedsessionid_value + public virtual global::System.Nullable _completedby_value { get { - return this.__nextlinkedsessionid_value; + return this.__completedby_value; } set { - this.On_nextlinkedsessionid_valueChanging(value); - this.__nextlinkedsessionid_value = value; - this.On_nextlinkedsessionid_valueChanged(); + this.On_completedby_valueChanging(value); + this.__completedby_value = value; + this.On_completedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __nextlinkedsessionid_value; - partial void On_nextlinkedsessionid_valueChanging(global::System.Nullable value); - partial void On_nextlinkedsessionid_valueChanged(); + private global::System.Nullable __completedby_value; + partial void On_completedby_valueChanging(global::System.Nullable value); + partial void On_completedby_valueChanged(); /// /// There are no comments for Property name in the schema. /// @@ -592647,6 +592691,50 @@ public virtual string name partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property processstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string processstate + { + get + { + return this._processstate; + } + set + { + this.OnprocessstateChanging(value); + this._processstate = value; + this.OnprocessstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _processstate; + partial void OnprocessstateChanging(string value); + partial void OnprocessstateChanged(); + /// + /// There are no comments for Property processstate_binary in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual byte[] processstate_binary + { + get + { + return this._processstate_binary; + } + set + { + this.Onprocessstate_binaryChanging(value); + this._processstate_binary = value; + this.Onprocessstate_binaryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private byte[] _processstate_binary; + partial void Onprocessstate_binaryChanging(byte[] value); + partial void Onprocessstate_binaryChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -592713,72 +592801,6 @@ public virtual string name partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property inputarguments in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string inputarguments - { - get - { - return this._inputarguments; - } - set - { - this.OninputargumentsChanging(value); - this._inputarguments = value; - this.OninputargumentsChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _inputarguments; - partial void OninputargumentsChanging(string value); - partial void OninputargumentsChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property processstagename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string processstagename - { - get - { - return this._processstagename; - } - set - { - this.OnprocessstagenameChanging(value); - this._processstagename = value; - this.OnprocessstagenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _processstagename; - partial void OnprocessstagenameChanging(string value); - partial void OnprocessstagenameChanged(); - /// /// There are no comments for Property _canceledby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -592911,27 +592933,27 @@ public virtual string activityname partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property processsessionid in the schema. + /// There are no comments for Property processstagename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processsessionid + public virtual string processstagename { get { - return this._processsessionid; + return this._processstagename; } set { - this.OnprocesssessionidChanging(value); - this._processsessionid = value; - this.OnprocesssessionidChanged(); + this.OnprocessstagenameChanging(value); + this._processstagename = value; + this.OnprocessstagenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processsessionid; - partial void OnprocesssessionidChanging(global::System.Nullable value); - partial void OnprocesssessionidChanged(); + private string _processstagename; + partial void OnprocessstagenameChanging(string value); + partial void OnprocessstagenameChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -592955,27 +592977,71 @@ public virtual string activityname partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property errorcode in the schema. + /// There are no comments for Property processsessionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable errorcode + public virtual global::System.Nullable processsessionid { get { - return this._errorcode; + return this._processsessionid; } set { - this.OnerrorcodeChanging(value); - this._errorcode = value; - this.OnerrorcodeChanged(); + this.OnprocesssessionidChanging(value); + this._processsessionid = value; + this.OnprocesssessionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _errorcode; - partial void OnerrorcodeChanging(global::System.Nullable value); - partial void OnerrorcodeChanged(); + private global::System.Nullable _processsessionid; + partial void OnprocesssessionidChanging(global::System.Nullable value); + partial void OnprocesssessionidChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property _processid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _processid_value + { + get + { + return this.__processid_value; + } + set + { + this.On_processid_valueChanging(value); + this.__processid_value = value; + this.On_processid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __processid_value; + partial void On_processid_valueChanging(global::System.Nullable value); + partial void On_processid_valueChanged(); /// /// There are no comments for Property _startedby_value in the schema. /// @@ -593043,28 +593109,6 @@ public virtual string stepname partial void On_regardingobjectid_valueChanging(global::System.Nullable value); partial void On_regardingobjectid_valueChanged(); /// - /// There are no comments for Property executedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable executedon - { - get - { - return this._executedon; - } - set - { - this.OnexecutedonChanging(value); - this._executedon = value; - this.OnexecutedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _executedon; - partial void OnexecutedonChanging(global::System.Nullable value); - partial void OnexecutedonChanged(); - /// /// There are no comments for Property startedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -593109,6 +593153,28 @@ public virtual string stepname partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property regardingobjectid_theme in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -599537,27 +599603,27 @@ public virtual string value partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable createdon { get { - return this._utcconversiontimezonecode; + return this._createdon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -599603,50 +599669,6 @@ public virtual string value partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// /// There are no comments for Property _processstageid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -599691,6 +599713,28 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -599757,28 +599801,6 @@ public virtual string name partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -599801,6 +599823,50 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property processstageparameterid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -600988,6 +601054,28 @@ public static processstage Createprocessstage(global::EMBC.ESS.Utilities.Dynamic return processstage; } /// + /// There are no comments for Property processstageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable processstageid + { + get + { + return this._processstageid; + } + set + { + this.OnprocessstageidChanging(value); + this._processstageid = value; + this.OnprocessstageidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _processstageid; + partial void OnprocessstageidChanging(global::System.Nullable value); + partial void OnprocessstageidChanged(); + /// /// There are no comments for Property stagecategory in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -601142,28 +601230,6 @@ public virtual string connector partial void OnoperationkindChanging(global::System.Nullable value); partial void OnoperationkindChanged(); /// - /// There are no comments for Property _processid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _processid_value - { - get - { - return this.__processid_value; - } - set - { - this.On_processid_valueChanging(value); - this.__processid_value = value; - this.On_processid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __processid_value; - partial void On_processid_valueChanging(global::System.Nullable value); - partial void On_processid_valueChanged(); - /// /// There are no comments for Property stagename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -601186,27 +601252,27 @@ public virtual string stagename partial void OnstagenameChanging(string value); partial void OnstagenameChanged(); /// - /// There are no comments for Property operationtype in the schema. + /// There are no comments for Property _processid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable operationtype + public virtual global::System.Nullable _processid_value { get { - return this._operationtype; + return this.__processid_value; } set { - this.OnoperationtypeChanging(value); - this._operationtype = value; - this.OnoperationtypeChanged(); + this.On_processid_valueChanging(value); + this.__processid_value = value; + this.On_processid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _operationtype; - partial void OnoperationtypeChanging(global::System.Nullable value); - partial void OnoperationtypeChanged(); + private global::System.Nullable __processid_value; + partial void On_processid_valueChanging(global::System.Nullable value); + partial void On_processid_valueChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -601252,27 +601318,27 @@ public virtual string stagename partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property processstageid in the schema. + /// There are no comments for Property operationtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processstageid + public virtual global::System.Nullable operationtype { get { - return this._processstageid; + return this._operationtype; } set { - this.OnprocessstageidChanging(value); - this._processstageid = value; - this.OnprocessstageidChanged(); + this.OnoperationtypeChanging(value); + this._operationtype = value; + this.OnoperationtypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processstageid; - partial void OnprocessstageidChanging(global::System.Nullable value); - partial void OnprocessstageidChanged(); + private global::System.Nullable _operationtype; + partial void OnoperationtypeChanging(global::System.Nullable value); + partial void OnoperationtypeChanged(); /// /// There are no comments for Property operationid in the schema. /// @@ -602408,27 +602474,49 @@ public static processtrigger Createprocesstrigger(global::EMBC.ESS.Utilities.Dyn partial void OnmethodidChanging(global::System.Nullable value); partial void OnmethodidChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this.__ownerid_value; + return this._iscustomizable; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); + /// + /// There are no comments for Property controltype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable controltype + { + get + { + return this._controltype; + } + set + { + this.OncontroltypeChanging(value); + this._controltype = value; + this.OncontroltypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _controltype; + partial void OncontroltypeChanging(global::System.Nullable value); + partial void OncontroltypeChanged(); /// /// There are no comments for Property scope in the schema. /// @@ -602518,49 +602606,49 @@ public static processtrigger Createprocesstrigger(global::EMBC.ESS.Utilities.Dyn partial void OnowninguserChanging(global::System.Nullable value); partial void OnowninguserChanged(); /// - /// There are no comments for Property pipelinestage in the schema. + /// There are no comments for Property owningbusinessunit in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pipelinestage + public virtual global::System.Nullable owningbusinessunit { get { - return this._pipelinestage; + return this._owningbusinessunit; } set { - this.OnpipelinestageChanging(value); - this._pipelinestage = value; - this.OnpipelinestageChanged(); + this.OnowningbusinessunitChanging(value); + this._owningbusinessunit = value; + this.OnowningbusinessunitChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pipelinestage; - partial void OnpipelinestageChanging(global::System.Nullable value); - partial void OnpipelinestageChanged(); + private global::System.Nullable _owningbusinessunit; + partial void OnowningbusinessunitChanging(global::System.Nullable value); + partial void OnowningbusinessunitChanged(); /// - /// There are no comments for Property controlname in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string controlname + public virtual global::System.Nullable _createdby_value { get { - return this._controlname; + return this.__createdby_value; } set { - this.OncontrolnameChanging(value); - this._controlname = value; - this.OncontrolnameChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _controlname; - partial void OncontrolnameChanging(string value); - partial void OncontrolnameChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property processtriggeridunique in the schema. /// @@ -602650,6 +602738,28 @@ public virtual string primaryentitytypecode partial void OnprimaryentitytypecodeChanging(string value); partial void OnprimaryentitytypecodeChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -602694,28 +602804,6 @@ public virtual string primaryentitytypecode partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property iscustomizable in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable - { - get - { - return this._iscustomizable; - } - set - { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); - /// /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -602738,49 +602826,49 @@ public virtual string primaryentitytypecode partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property owningbusinessunit in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable owningbusinessunit + public virtual global::System.Nullable solutionid { get { - return this._owningbusinessunit; + return this._solutionid; } set { - this.OnowningbusinessunitChanging(value); - this._owningbusinessunit = value; - this.OnowningbusinessunitChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _owningbusinessunit; - partial void OnowningbusinessunitChanging(global::System.Nullable value); - partial void OnowningbusinessunitChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// - /// There are no comments for Property controltype in the schema. + /// There are no comments for Property pipelinestage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable controltype + public virtual global::System.Nullable pipelinestage { get { - return this._controltype; + return this._pipelinestage; } set { - this.OncontroltypeChanging(value); - this._controltype = value; - this.OncontroltypeChanged(); + this.OnpipelinestageChanging(value); + this._pipelinestage = value; + this.OnpipelinestageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _controltype; - partial void OncontroltypeChanging(global::System.Nullable value); - partial void OncontroltypeChanged(); + private global::System.Nullable _pipelinestage; + partial void OnpipelinestageChanging(global::System.Nullable value); + partial void OnpipelinestageChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -602826,27 +602914,27 @@ public virtual string @event partial void OneventChanging(string value); partial void OneventChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property controlname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual string controlname { get { - return this._solutionid; + return this._controlname; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OncontrolnameChanging(value); + this._controlname = value; + this.OncontrolnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private string _controlname; + partial void OncontrolnameChanging(string value); + partial void OncontrolnameChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -602892,28 +602980,6 @@ public virtual string @event partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property createdonbehalfby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -603664,28 +603730,6 @@ public static productassociation Createproductassociation(global::EMBC.ESS.Utili partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property productassociationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -603708,28 +603752,6 @@ public static productassociation Createproductassociation(global::EMBC.ESS.Utili partial void OnproductassociationidChanging(global::System.Nullable value); partial void OnproductassociationidChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property dmtimportstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -603774,6 +603796,28 @@ public static productassociation Createproductassociation(global::EMBC.ESS.Utili partial void OnquantityChanging(global::System.Nullable value); partial void OnquantityChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -603818,27 +603862,27 @@ public static productassociation Createproductassociation(global::EMBC.ESS.Utili partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _associatedproduct_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _associatedproduct_value { get { - return this._exchangerate; + return this.__associatedproduct_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_associatedproduct_valueChanging(value); + this.__associatedproduct_value = value; + this.On_associatedproduct_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __associatedproduct_value; + partial void On_associatedproduct_valueChanging(global::System.Nullable value); + partial void On_associatedproduct_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -603862,28 +603906,6 @@ public static productassociation Createproductassociation(global::EMBC.ESS.Utili partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _uomid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _uomid_value - { - get - { - return this.__uomid_value; - } - set - { - this.On_uomid_valueChanging(value); - this.__uomid_value = value; - this.On_uomid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __uomid_value; - partial void On_uomid_valueChanging(global::System.Nullable value); - partial void On_uomid_valueChanged(); - /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -603950,6 +603972,28 @@ public static productassociation Createproductassociation(global::EMBC.ESS.Utili partial void On_productid_valueChanging(global::System.Nullable value); partial void On_productid_valueChanged(); /// + /// There are no comments for Property _uomid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _uomid_value + { + get + { + return this.__uomid_value; + } + set + { + this.On_uomid_valueChanging(value); + this.__uomid_value = value; + this.On_uomid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __uomid_value; + partial void On_uomid_valueChanging(global::System.Nullable value); + partial void On_uomid_valueChanged(); + /// /// There are no comments for Property propertycustomizationstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -603994,71 +604038,93 @@ public static productassociation Createproductassociation(global::EMBC.ESS.Utili partial void OnproductisrequiredChanging(global::System.Nullable value); partial void OnproductisrequiredChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._timezoneruleversionnumber; + return this.__createdonbehalfby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable statuscode { get { - return this._utcconversiontimezonecode; + return this._statuscode; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._statuscode; + return this.__modifiedonbehalfby_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -604104,49 +604170,49 @@ public static productassociation Createproductassociation(global::EMBC.ESS.Utili partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _associatedproduct_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _associatedproduct_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__associatedproduct_value; + return this._timezoneruleversionnumber; } set { - this.On_associatedproduct_valueChanging(value); - this.__associatedproduct_value = value; - this.On_associatedproduct_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __associatedproduct_value; - partial void On_associatedproduct_valueChanging(global::System.Nullable value); - partial void On_associatedproduct_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable exchangerate { get { - return this.__createdonbehalfby_value; + return this._exchangerate; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -605139,269 +605205,71 @@ public virtual string productnumber partial void Onamount_baseChanging(global::System.Nullable value); partial void Onamount_baseChanged(); /// - /// There are no comments for Property _productid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _productid_value - { - get - { - return this.__productid_value; - } - set - { - this.On_productid_valueChanging(value); - this.__productid_value = value; - this.On_productid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __productid_value; - partial void On_productid_valueChanging(global::System.Nullable value); - partial void On_productid_valueChanged(); - /// - /// There are no comments for Property roundingoptionamount_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable roundingoptionamount_base - { - get - { - return this._roundingoptionamount_base; - } - set - { - this.Onroundingoptionamount_baseChanging(value); - this._roundingoptionamount_base = value; - this.Onroundingoptionamount_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _roundingoptionamount_base; - partial void Onroundingoptionamount_baseChanging(global::System.Nullable value); - partial void Onroundingoptionamount_baseChanged(); - /// - /// There are no comments for Property roundingoptioncode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable roundingoptioncode - { - get - { - return this._roundingoptioncode; - } - set - { - this.OnroundingoptioncodeChanging(value); - this._roundingoptioncode = value; - this.OnroundingoptioncodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _roundingoptioncode; - partial void OnroundingoptioncodeChanging(global::System.Nullable value); - partial void OnroundingoptioncodeChanged(); - /// - /// There are no comments for Property traversedpath in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string traversedpath - { - get - { - return this._traversedpath; - } - set - { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); - /// - /// There are no comments for Property amount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable amount - { - get - { - return this._amount; - } - set - { - this.OnamountChanging(value); - this._amount = value; - this.OnamountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _amount; - partial void OnamountChanging(global::System.Nullable value); - partial void OnamountChanged(); - /// - /// There are no comments for Property stageid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable stageid - { - get - { - return this._stageid; - } - set - { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stageid; - partial void OnstageidChanging(global::System.Nullable value); - partial void OnstageidChanged(); - /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property percentage in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable percentage - { - get - { - return this._percentage; - } - set - { - this.OnpercentageChanging(value); - this._percentage = value; - this.OnpercentageChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _percentage; - partial void OnpercentageChanging(global::System.Nullable value); - partial void OnpercentageChanged(); - /// - /// There are no comments for Property _pricelevelid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _pricelevelid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__pricelevelid_value; + return this._importsequencenumber; } set { - this.On_pricelevelid_valueChanging(value); - this.__pricelevelid_value = value; - this.On_pricelevelid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __pricelevelid_value; - partial void On_pricelevelid_valueChanging(global::System.Nullable value); - partial void On_pricelevelid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _discounttypeid_value in the schema. + /// There are no comments for Property _productid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _discounttypeid_value + public virtual global::System.Nullable _productid_value { get { - return this.__discounttypeid_value; + return this.__productid_value; } set { - this.On_discounttypeid_valueChanging(value); - this.__discounttypeid_value = value; - this.On_discounttypeid_valueChanged(); + this.On_productid_valueChanging(value); + this.__productid_value = value; + this.On_productid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __discounttypeid_value; - partial void On_discounttypeid_valueChanging(global::System.Nullable value); - partial void On_discounttypeid_valueChanged(); + private global::System.Nullable __productid_value; + partial void On_productid_valueChanging(global::System.Nullable value); + partial void On_productid_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property roundingoptionamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable roundingoptionamount { get { - return this.__modifiedby_value; + return this._roundingoptionamount; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnroundingoptionamountChanging(value); + this._roundingoptionamount = value; + this.OnroundingoptionamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _roundingoptionamount; + partial void OnroundingoptionamountChanging(global::System.Nullable value); + partial void OnroundingoptionamountChanged(); /// /// There are no comments for Property _uomscheduleid_value in the schema. /// @@ -605425,137 +605293,137 @@ public virtual string traversedpath partial void On_uomscheduleid_valueChanging(global::System.Nullable value); partial void On_uomscheduleid_valueChanged(); /// - /// There are no comments for Property processid in the schema. + /// There are no comments for Property roundingoptionamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processid + public virtual global::System.Nullable roundingoptionamount_base { get { - return this._processid; + return this._roundingoptionamount_base; } set { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); + this.Onroundingoptionamount_baseChanging(value); + this._roundingoptionamount_base = value; + this.Onroundingoptionamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); + private global::System.Nullable _roundingoptionamount_base; + partial void Onroundingoptionamount_baseChanging(global::System.Nullable value); + partial void Onroundingoptionamount_baseChanged(); /// - /// There are no comments for Property roundingoptionamount in the schema. + /// There are no comments for Property roundingoptioncode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable roundingoptionamount + public virtual global::System.Nullable roundingoptioncode { get { - return this._roundingoptionamount; + return this._roundingoptioncode; } set { - this.OnroundingoptionamountChanging(value); - this._roundingoptionamount = value; - this.OnroundingoptionamountChanged(); + this.OnroundingoptioncodeChanging(value); + this._roundingoptioncode = value; + this.OnroundingoptioncodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _roundingoptionamount; - partial void OnroundingoptionamountChanging(global::System.Nullable value); - partial void OnroundingoptionamountChanged(); + private global::System.Nullable _roundingoptioncode; + partial void OnroundingoptioncodeChanging(global::System.Nullable value); + partial void OnroundingoptioncodeChanged(); /// - /// There are no comments for Property _uomid_value in the schema. + /// There are no comments for Property productpricelevelid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _uomid_value + public virtual global::System.Nullable productpricelevelid { get { - return this.__uomid_value; + return this._productpricelevelid; } set { - this.On_uomid_valueChanging(value); - this.__uomid_value = value; - this.On_uomid_valueChanged(); + this.OnproductpricelevelidChanging(value); + this._productpricelevelid = value; + this.OnproductpricelevelidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __uomid_value; - partial void On_uomid_valueChanging(global::System.Nullable value); - partial void On_uomid_valueChanged(); + private global::System.Nullable _productpricelevelid; + partial void OnproductpricelevelidChanging(global::System.Nullable value); + partial void OnproductpricelevelidChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _discounttypeid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _discounttypeid_value { get { - return this._modifiedon; + return this.__discounttypeid_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_discounttypeid_valueChanging(value); + this.__discounttypeid_value = value; + this.On_discounttypeid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __discounttypeid_value; + partial void On_discounttypeid_valueChanging(global::System.Nullable value); + partial void On_discounttypeid_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property amount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable amount { get { - return this._versionnumber; + return this._amount; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnamountChanging(value); + this._amount = value; + this.OnamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _amount; + partial void OnamountChanging(global::System.Nullable value); + partial void OnamountChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._utcconversiontimezonecode; + return this.__transactioncurrencyid_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property organizationid in the schema. /// @@ -605579,6 +605447,182 @@ public virtual string traversedpath partial void OnorganizationidChanging(global::System.Nullable value); partial void OnorganizationidChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property percentage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable percentage + { + get + { + return this._percentage; + } + set + { + this.OnpercentageChanging(value); + this._percentage = value; + this.OnpercentageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _percentage; + partial void OnpercentageChanging(global::System.Nullable value); + partial void OnpercentageChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// + /// There are no comments for Property _uomid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _uomid_value + { + get + { + return this.__uomid_value; + } + set + { + this.On_uomid_valueChanging(value); + this.__uomid_value = value; + this.On_uomid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __uomid_value; + partial void On_uomid_valueChanging(global::System.Nullable value); + partial void On_uomid_valueChanged(); + /// + /// There are no comments for Property processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable processid + { + get + { + return this._processid; + } + set + { + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property traversedpath in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string traversedpath + { + get + { + return this._traversedpath; + } + set + { + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -605601,27 +605645,27 @@ public virtual string traversedpath partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property quantitysellingcode in the schema. + /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable quantitysellingcode + public virtual global::System.Nullable stageid { get { - return this._quantitysellingcode; + return this._stageid; } set { - this.OnquantitysellingcodeChanging(value); - this._quantitysellingcode = value; - this.OnquantitysellingcodeChanged(); + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quantitysellingcode; - partial void OnquantitysellingcodeChanging(global::System.Nullable value); - partial void OnquantitysellingcodeChanged(); + private global::System.Nullable _stageid; + partial void OnstageidChanging(global::System.Nullable value); + partial void OnstageidChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -605689,6 +605733,28 @@ public virtual string traversedpath partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// + /// There are no comments for Property quantitysellingcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable quantitysellingcode + { + get + { + return this._quantitysellingcode; + } + set + { + this.OnquantitysellingcodeChanging(value); + this._quantitysellingcode = value; + this.OnquantitysellingcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _quantitysellingcode; + partial void OnquantitysellingcodeChanging(global::System.Nullable value); + partial void OnquantitysellingcodeChanged(); + /// /// There are no comments for Property pricingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -605711,27 +605777,27 @@ public virtual string traversedpath partial void OnpricingmethodcodeChanging(global::System.Nullable value); partial void OnpricingmethodcodeChanged(); /// - /// There are no comments for Property productpricelevelid in the schema. + /// There are no comments for Property _pricelevelid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable productpricelevelid + public virtual global::System.Nullable _pricelevelid_value { get { - return this._productpricelevelid; + return this.__pricelevelid_value; } set { - this.OnproductpricelevelidChanging(value); - this._productpricelevelid = value; - this.OnproductpricelevelidChanged(); + this.On_pricelevelid_valueChanging(value); + this.__pricelevelid_value = value; + this.On_pricelevelid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _productpricelevelid; - partial void OnproductpricelevelidChanging(global::System.Nullable value); - partial void OnproductpricelevelidChanged(); + private global::System.Nullable __pricelevelid_value; + partial void On_pricelevelid_valueChanging(global::System.Nullable value); + partial void On_pricelevelid_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -605777,27 +605843,27 @@ public virtual string traversedpath partial void OnroundingpolicycodeChanging(global::System.Nullable value); partial void OnroundingpolicycodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable _modifiedby_value { get { - return this._importsequencenumber; + return this.__modifiedby_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -607236,27 +607302,71 @@ public static product Createproduct(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property currentcost_base in the schema. + /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable currentcost_base + public virtual global::System.Nullable entityimage_timestamp { get { - return this._currentcost_base; + return this._entityimage_timestamp; } set { - this.Oncurrentcost_baseChanging(value); - this._currentcost_base = value; - this.Oncurrentcost_baseChanged(); + this.Onentityimage_timestampChanging(value); + this._entityimage_timestamp = value; + this.Onentityimage_timestampChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _currentcost_base; - partial void Oncurrentcost_baseChanging(global::System.Nullable value); - partial void Oncurrentcost_baseChanged(); + private global::System.Nullable _entityimage_timestamp; + partial void Onentityimage_timestampChanging(global::System.Nullable value); + partial void Onentityimage_timestampChanged(); + /// + /// There are no comments for Property entityimage_url in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string entityimage_url + { + get + { + return this._entityimage_url; + } + set + { + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); + /// + /// There are no comments for Property productstructure in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable productstructure + { + get + { + return this._productstructure; + } + set + { + this.OnproductstructureChanging(value); + this._productstructure = value; + this.OnproductstructureChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _productstructure; + partial void OnproductstructureChanging(global::System.Nullable value); + partial void OnproductstructureChanged(); /// /// There are no comments for Property processid in the schema. /// @@ -607302,49 +607412,93 @@ public virtual string suppliername partial void OnsuppliernameChanging(string value); partial void OnsuppliernameChanged(); /// - /// There are no comments for Property _defaultuomscheduleid_value in the schema. + /// There are no comments for Property producttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _defaultuomscheduleid_value + public virtual global::System.Nullable producttypecode { get { - return this.__defaultuomscheduleid_value; + return this._producttypecode; } set { - this.On_defaultuomscheduleid_valueChanging(value); - this.__defaultuomscheduleid_value = value; - this.On_defaultuomscheduleid_valueChanged(); + this.OnproducttypecodeChanging(value); + this._producttypecode = value; + this.OnproducttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __defaultuomscheduleid_value; - partial void On_defaultuomscheduleid_valueChanging(global::System.Nullable value); - partial void On_defaultuomscheduleid_valueChanged(); + private global::System.Nullable _producttypecode; + partial void OnproducttypecodeChanging(global::System.Nullable value); + partial void OnproducttypecodeChanged(); /// - /// There are no comments for Property productstructure in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable productstructure + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._productstructure; + return this._timezoneruleversionnumber; } set { - this.OnproductstructureChanging(value); - this._productstructure = value; - this.OnproductstructureChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _productstructure; - partial void OnproductstructureChanging(global::System.Nullable value); - partial void OnproductstructureChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property producturl in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string producturl + { + get + { + return this._producturl; + } + set + { + this.OnproducturlChanging(value); + this._producturl = value; + this.OnproducturlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _producturl; + partial void OnproducturlChanging(string value); + partial void OnproducturlChanged(); + /// + /// There are no comments for Property vendorpartnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string vendorpartnumber + { + get + { + return this._vendorpartnumber; + } + set + { + this.OnvendorpartnumberChanging(value); + this._vendorpartnumber = value; + this.OnvendorpartnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _vendorpartnumber; + partial void OnvendorpartnumberChanging(string value); + partial void OnvendorpartnumberChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -607390,27 +607544,27 @@ public virtual string suppliername partial void OnstockvolumeChanging(global::System.Nullable value); partial void OnstockvolumeChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property _defaultuomscheduleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable _defaultuomscheduleid_value { get { - return this.__transactioncurrencyid_value; + return this.__defaultuomscheduleid_value; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.On_defaultuomscheduleid_valueChanging(value); + this.__defaultuomscheduleid_value = value; + this.On_defaultuomscheduleid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable __defaultuomscheduleid_value; + partial void On_defaultuomscheduleid_valueChanging(global::System.Nullable value); + partial void On_defaultuomscheduleid_valueChanged(); /// /// There are no comments for Property description in the schema. /// @@ -607434,115 +607588,115 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._createdon; + return this.__modifiedonbehalfby_value; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _pricelevelid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _pricelevelid_value { get { - return this.__modifiedonbehalfby_value; + return this.__pricelevelid_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_pricelevelid_valueChanging(value); + this.__pricelevelid_value = value; + this.On_pricelevelid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __pricelevelid_value; + partial void On_pricelevelid_valueChanging(global::System.Nullable value); + partial void On_pricelevelid_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property hierarchypath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string hierarchypath { get { - return this.__createdby_value; + return this._hierarchypath; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnhierarchypathChanging(value); + this._hierarchypath = value; + this.OnhierarchypathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _hierarchypath; + partial void OnhierarchypathChanging(string value); + partial void OnhierarchypathChanged(); /// - /// There are no comments for Property _defaultuomid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _defaultuomid_value + public virtual global::System.Nullable createdon { get { - return this.__defaultuomid_value; + return this._createdon; } set { - this.On_defaultuomid_valueChanging(value); - this.__defaultuomid_value = value; - this.On_defaultuomid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __defaultuomid_value; - partial void On_defaultuomid_valueChanging(global::System.Nullable value); - partial void On_defaultuomid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property entityimage_timestamp in the schema. + /// There are no comments for Property _defaultuomid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimage_timestamp + public virtual global::System.Nullable _defaultuomid_value { get { - return this._entityimage_timestamp; + return this.__defaultuomid_value; } set { - this.Onentityimage_timestampChanging(value); - this._entityimage_timestamp = value; - this.Onentityimage_timestampChanged(); + this.On_defaultuomid_valueChanging(value); + this.__defaultuomid_value = value; + this.On_defaultuomid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimage_timestamp; - partial void Onentityimage_timestampChanging(global::System.Nullable value); - partial void Onentityimage_timestampChanged(); + private global::System.Nullable __defaultuomid_value; + partial void On_defaultuomid_valueChanging(global::System.Nullable value); + partial void On_defaultuomid_valueChanged(); /// /// There are no comments for Property currentcost in the schema. /// @@ -607808,27 +607962,27 @@ public virtual string traversedpath partial void OnstockweightChanging(global::System.Nullable value); partial void OnstockweightChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual byte[] entityimage { get { - return this._entityimage_url; + return this._entityimage; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -607852,6 +608006,28 @@ public virtual string entityimage_url partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -607918,27 +608094,27 @@ public virtual string entityimage_url partial void On_parentproductid_valueChanging(global::System.Nullable value); partial void On_parentproductid_valueChanged(); /// - /// There are no comments for Property _pricelevelid_value in the schema. + /// There are no comments for Property entityimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _pricelevelid_value + public virtual global::System.Nullable entityimageid { get { - return this.__pricelevelid_value; + return this._entityimageid; } set { - this.On_pricelevelid_valueChanging(value); - this.__pricelevelid_value = value; - this.On_pricelevelid_valueChanged(); + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __pricelevelid_value; - partial void On_pricelevelid_valueChanging(global::System.Nullable value); - partial void On_pricelevelid_valueChanged(); + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); /// /// There are no comments for Property standardcost in the schema. /// @@ -608028,6 +608204,28 @@ public virtual string vendorname partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); partial void On_createdbyexternalparty_valueChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property price_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -608094,71 +608292,27 @@ public virtual string vendorname partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property hierarchypath in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string hierarchypath - { - get - { - return this._hierarchypath; - } - set - { - this.OnhierarchypathChanging(value); - this._hierarchypath = value; - this.OnhierarchypathChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _hierarchypath; - partial void OnhierarchypathChanging(string value); - partial void OnhierarchypathChanged(); - /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property producttypecode in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable producttypecode + public virtual string name { get { - return this._producttypecode; + return this._name; } set { - this.OnproducttypecodeChanging(value); - this._producttypecode = value; - this.OnproducttypecodeChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _producttypecode; - partial void OnproducttypecodeChanging(global::System.Nullable value); - partial void OnproducttypecodeChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property iskit in the schema. /// @@ -608182,28 +608336,6 @@ public virtual string hierarchypath partial void OniskitChanging(global::System.Nullable value); partial void OniskitChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property isstockitem in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -608248,71 +608380,71 @@ public virtual string vendorid partial void OnvendoridChanging(string value); partial void OnvendoridChanged(); /// - /// There are no comments for Property vendorpartnumber in the schema. + /// There are no comments for Property currentcost_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string vendorpartnumber + public virtual global::System.Nullable currentcost_base { get { - return this._vendorpartnumber; + return this._currentcost_base; } set { - this.OnvendorpartnumberChanging(value); - this._vendorpartnumber = value; - this.OnvendorpartnumberChanged(); + this.Oncurrentcost_baseChanging(value); + this._currentcost_base = value; + this.Oncurrentcost_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _vendorpartnumber; - partial void OnvendorpartnumberChanging(string value); - partial void OnvendorpartnumberChanged(); + private global::System.Nullable _currentcost_base; + partial void Oncurrentcost_baseChanging(global::System.Nullable value); + partial void Oncurrentcost_baseChanged(); /// - /// There are no comments for Property entityimage in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] entityimage + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._entityimage; + return this.__transactioncurrencyid_value; } set { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property dmtimportstate in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable dmtimportstate + public virtual global::System.Nullable _createdby_value { get { - return this._dmtimportstate; + return this.__createdby_value; } set { - this.OndmtimportstateChanging(value); - this._dmtimportstate = value; - this.OndmtimportstateChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _dmtimportstate; - partial void OndmtimportstateChanging(global::System.Nullable value); - partial void OndmtimportstateChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property productid in the schema. /// @@ -608336,28 +608468,6 @@ public virtual byte[] entityimage partial void OnproductidChanging(global::System.Nullable value); partial void OnproductidChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -608380,50 +608490,6 @@ public virtual string name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property producturl in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string producturl - { - get - { - return this._producturl; - } - set - { - this.OnproducturlChanging(value); - this._producturl = value; - this.OnproducturlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _producturl; - partial void OnproducturlChanging(string value); - partial void OnproducturlChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property productnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -608490,27 +608556,27 @@ public virtual string productnumber partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property entityimageid in the schema. + /// There are no comments for Property dmtimportstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimageid + public virtual global::System.Nullable dmtimportstate { get { - return this._entityimageid; + return this._dmtimportstate; } set { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); + this.OndmtimportstateChanging(value); + this._dmtimportstate = value; + this.OndmtimportstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); + private global::System.Nullable _dmtimportstate; + partial void OndmtimportstateChanging(global::System.Nullable value); + partial void OndmtimportstateChanged(); /// /// There are no comments for Property Product_AsyncOperations in the schema. /// @@ -610292,27 +610358,27 @@ public static productsubstitute Createproductsubstitute(global::EMBC.ESS.Utiliti return productsubstitute; } /// - /// There are no comments for Property direction in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable direction + public virtual global::System.Nullable modifiedon { get { - return this._direction; + return this._modifiedon; } set { - this.OndirectionChanging(value); - this._direction = value; - this.OndirectionChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _direction; - partial void OndirectionChanging(global::System.Nullable value); - partial void OndirectionChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -610336,49 +610402,49 @@ public static productsubstitute Createproductsubstitute(global::EMBC.ESS.Utiliti partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable statecode { get { - return this._modifiedon; + return this._statecode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._statecode; + return this.__modifiedonbehalfby_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -610468,6 +610534,28 @@ public static productsubstitute Createproductsubstitute(global::EMBC.ESS.Utiliti partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property direction in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable direction + { + get + { + return this._direction; + } + set + { + this.OndirectionChanging(value); + this._direction = value; + this.OndirectionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _direction; + partial void OndirectionChanging(global::System.Nullable value); + partial void OndirectionChanged(); + /// /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -610600,50 +610688,6 @@ public static productsubstitute Createproductsubstitute(global::EMBC.ESS.Utiliti partial void On_substitutedproductid_valueChanging(global::System.Nullable value); partial void On_substitutedproductid_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -610710,6 +610754,28 @@ public static productsubstitute Createproductsubstitute(global::EMBC.ESS.Utiliti partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -611252,137 +611318,137 @@ public provisionlanguageforuserSingle(global::Microsoft.OData.Client.DataService public partial class provisionlanguageforuser : crmbaseentity { /// - /// There are no comments for Property provisionlanguageforuserid in the schema. + /// There are no comments for Property asyncoperationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable provisionlanguageforuserid + public virtual global::System.Nullable asyncoperationid { get { - return this._provisionlanguageforuserid; + return this._asyncoperationid; } set { - this.OnprovisionlanguageforuseridChanging(value); - this._provisionlanguageforuserid = value; - this.OnprovisionlanguageforuseridChanged(); + this.OnasyncoperationidChanging(value); + this._asyncoperationid = value; + this.OnasyncoperationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _provisionlanguageforuserid; - partial void OnprovisionlanguageforuseridChanging(global::System.Nullable value); - partial void OnprovisionlanguageforuseridChanged(); + private global::System.Nullable _asyncoperationid; + partial void OnasyncoperationidChanging(global::System.Nullable value); + partial void OnasyncoperationidChanged(); /// - /// There are no comments for Property userid in the schema. + /// There are no comments for Property operationstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable userid + public virtual global::System.Nullable operationstatus { get { - return this._userid; + return this._operationstatus; } set { - this.OnuseridChanging(value); - this._userid = value; - this.OnuseridChanged(); + this.OnoperationstatusChanging(value); + this._operationstatus = value; + this.OnoperationstatusChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _userid; - partial void OnuseridChanging(global::System.Nullable value); - partial void OnuseridChanged(); + private global::System.Nullable _operationstatus; + partial void OnoperationstatusChanging(global::System.Nullable value); + partial void OnoperationstatusChanged(); /// - /// There are no comments for Property organizationid in the schema. + /// There are no comments for Property userid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable organizationid + public virtual global::System.Nullable userid { get { - return this._organizationid; + return this._userid; } set { - this.OnorganizationidChanging(value); - this._organizationid = value; - this.OnorganizationidChanged(); + this.OnuseridChanging(value); + this._userid = value; + this.OnuseridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _organizationid; - partial void OnorganizationidChanging(global::System.Nullable value); - partial void OnorganizationidChanged(); + private global::System.Nullable _userid; + partial void OnuseridChanging(global::System.Nullable value); + partial void OnuseridChanged(); /// - /// There are no comments for Property operationstatus in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable operationstatus + public virtual string name { get { - return this._operationstatus; + return this._name; } set { - this.OnoperationstatusChanging(value); - this._operationstatus = value; - this.OnoperationstatusChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _operationstatus; - partial void OnoperationstatusChanging(global::System.Nullable value); - partial void OnoperationstatusChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property asyncoperationid in the schema. + /// There are no comments for Property organizationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable asyncoperationid + public virtual global::System.Nullable organizationid { get { - return this._asyncoperationid; + return this._organizationid; } set { - this.OnasyncoperationidChanging(value); - this._asyncoperationid = value; - this.OnasyncoperationidChanged(); + this.OnorganizationidChanging(value); + this._organizationid = value; + this.OnorganizationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _asyncoperationid; - partial void OnasyncoperationidChanging(global::System.Nullable value); - partial void OnasyncoperationidChanged(); + private global::System.Nullable _organizationid; + partial void OnorganizationidChanging(global::System.Nullable value); + partial void OnorganizationidChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property provisionlanguageforuserid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable provisionlanguageforuserid { get { - return this._name; + return this._provisionlanguageforuserid; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnprovisionlanguageforuseridChanging(value); + this._provisionlanguageforuserid = value; + this.OnprovisionlanguageforuseridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _provisionlanguageforuserid; + partial void OnprovisionlanguageforuseridChanging(global::System.Nullable value); + partial void OnprovisionlanguageforuseridChanged(); /// /// There are no comments for Property lcid in the schema. /// @@ -611760,27 +611826,49 @@ public virtual string line3 partial void Online3Changing(string value); partial void Online3Changed(); /// - /// There are no comments for Property publisheraddressid in the schema. + /// There are no comments for Property city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable publisheraddressid + public virtual string city { get { - return this._publisheraddressid; + return this._city; } set { - this.OnpublisheraddressidChanging(value); - this._publisheraddressid = value; - this.OnpublisheraddressidChanged(); + this.OncityChanging(value); + this._city = value; + this.OncityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _publisheraddressid; - partial void OnpublisheraddressidChanging(global::System.Nullable value); - partial void OnpublisheraddressidChanged(); + private string _city; + partial void OncityChanging(string value); + partial void OncityChanged(); + /// + /// There are no comments for Property upszone in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string upszone + { + get + { + return this._upszone; + } + set + { + this.OnupszoneChanging(value); + this._upszone = value; + this.OnupszoneChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _upszone; + partial void OnupszoneChanging(string value); + partial void OnupszoneChanged(); /// /// There are no comments for Property telephone1 in the schema. /// @@ -611826,27 +611914,49 @@ public virtual string telephone1 partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property latitude in the schema. + /// There are no comments for Property addressnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable latitude + public virtual global::System.Nullable addressnumber { get { - return this._latitude; + return this._addressnumber; } set { - this.OnlatitudeChanging(value); - this._latitude = value; - this.OnlatitudeChanged(); + this.OnaddressnumberChanging(value); + this._addressnumber = value; + this.OnaddressnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _latitude; - partial void OnlatitudeChanging(global::System.Nullable value); - partial void OnlatitudeChanged(); + private global::System.Nullable _addressnumber; + partial void OnaddressnumberChanging(global::System.Nullable value); + partial void OnaddressnumberChanged(); + /// + /// There are no comments for Property fax in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string fax + { + get + { + return this._fax; + } + set + { + this.OnfaxChanging(value); + this._fax = value; + this.OnfaxChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _fax; + partial void OnfaxChanging(string value); + partial void OnfaxChanged(); /// /// There are no comments for Property line1 in the schema. /// @@ -611870,49 +611980,27 @@ public virtual string line1 partial void Online1Changing(string value); partial void Online1Changed(); /// - /// There are no comments for Property longitude in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable longitude - { - get - { - return this._longitude; - } - set - { - this.OnlongitudeChanging(value); - this._longitude = value; - this.OnlongitudeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _longitude; - partial void OnlongitudeChanging(global::System.Nullable value); - partial void OnlongitudeChanged(); - /// - /// There are no comments for Property primarycontactname in the schema. + /// There are no comments for Property postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string primarycontactname + public virtual string postalcode { get { - return this._primarycontactname; + return this._postalcode; } set { - this.OnprimarycontactnameChanging(value); - this._primarycontactname = value; - this.OnprimarycontactnameChanged(); + this.OnpostalcodeChanging(value); + this._postalcode = value; + this.OnpostalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _primarycontactname; - partial void OnprimarycontactnameChanging(string value); - partial void OnprimarycontactnameChanged(); + private string _postalcode; + partial void OnpostalcodeChanging(string value); + partial void OnpostalcodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -611958,27 +612046,27 @@ public virtual string primarycontactname partial void OnshippingmethodcodeChanging(global::System.Nullable value); partial void OnshippingmethodcodeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable longitude { get { - return this._utcconversiontimezonecode; + return this._longitude; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnlongitudeChanging(value); + this._longitude = value; + this.OnlongitudeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _longitude; + partial void OnlongitudeChanging(global::System.Nullable value); + partial void OnlongitudeChanged(); /// /// There are no comments for Property country in the schema. /// @@ -612112,27 +612200,27 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property county in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string county + public virtual global::System.Nullable _modifiedby_value { get { - return this._county; + return this.__modifiedby_value; } set { - this.OncountyChanging(value); - this._county = value; - this.OncountyChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _county; - partial void OncountyChanging(string value); - partial void OncountyChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property line2 in the schema. /// @@ -612156,28 +612244,6 @@ public virtual string line2 partial void Online2Changing(string value); partial void Online2Changed(); /// - /// There are no comments for Property postalcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string postalcode - { - get - { - return this._postalcode; - } - set - { - this.OnpostalcodeChanging(value); - this._postalcode = value; - this.OnpostalcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _postalcode; - partial void OnpostalcodeChanging(string value); - partial void OnpostalcodeChanged(); - /// /// There are no comments for Property _parentid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -612288,115 +612354,137 @@ public virtual string stateorprovince partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property fax in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string fax + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._fax; + return this._utcconversiontimezonecode; } set { - this.OnfaxChanging(value); - this._fax = value; - this.OnfaxChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _fax; - partial void OnfaxChanging(string value); - partial void OnfaxChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property publisheraddressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable publisheraddressid { get { - return this.__modifiedby_value; + return this._publisheraddressid; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnpublisheraddressidChanging(value); + this._publisheraddressid = value; + this.OnpublisheraddressidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _publisheraddressid; + partial void OnpublisheraddressidChanging(global::System.Nullable value); + partial void OnpublisheraddressidChanged(); /// - /// There are no comments for Property city in the schema. + /// There are no comments for Property primarycontactname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string city + public virtual string primarycontactname { get { - return this._city; + return this._primarycontactname; } set { - this.OncityChanging(value); - this._city = value; - this.OncityChanged(); + this.OnprimarycontactnameChanging(value); + this._primarycontactname = value; + this.OnprimarycontactnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _city; - partial void OncityChanging(string value); - partial void OncityChanged(); + private string _primarycontactname; + partial void OnprimarycontactnameChanging(string value); + partial void OnprimarycontactnameChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property telephone2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual string telephone2 { get { - return this._createdon; + return this._telephone2; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.Ontelephone2Changing(value); + this._telephone2 = value; + this.Ontelephone2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private string _telephone2; + partial void Ontelephone2Changing(string value); + partial void Ontelephone2Changed(); /// - /// There are no comments for Property telephone2 in the schema. + /// There are no comments for Property latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string telephone2 + public virtual global::System.Nullable latitude { get { - return this._telephone2; + return this._latitude; } set { - this.Ontelephone2Changing(value); - this._telephone2 = value; - this.Ontelephone2Changed(); + this.OnlatitudeChanging(value); + this._latitude = value; + this.OnlatitudeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _telephone2; - partial void Ontelephone2Changing(string value); - partial void Ontelephone2Changed(); + private global::System.Nullable _latitude; + partial void OnlatitudeChanging(global::System.Nullable value); + partial void OnlatitudeChanged(); + /// + /// There are no comments for Property county in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string county + { + get + { + return this._county; + } + set + { + this.OncountyChanging(value); + this._county = value; + this.OncountyChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _county; + partial void OncountyChanging(string value); + partial void OncountyChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -612442,49 +612530,27 @@ public virtual string telephone2 partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property upszone in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string upszone - { - get - { - return this._upszone; - } - set - { - this.OnupszoneChanging(value); - this._upszone = value; - this.OnupszoneChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _upszone; - partial void OnupszoneChanging(string value); - partial void OnupszoneChanged(); - /// - /// There are no comments for Property addressnumber in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable addressnumber + public virtual global::System.Nullable createdon { get { - return this._addressnumber; + return this._createdon; } set { - this.OnaddressnumberChanging(value); - this._addressnumber = value; - this.OnaddressnumberChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _addressnumber; - partial void OnaddressnumberChanging(global::System.Nullable value); - partial void OnaddressnumberChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -612905,27 +612971,27 @@ public static publisher Createpublisher(global::EMBC.ESS.Utilities.Dynamics.Micr return publisher; } /// - /// There are no comments for Property friendlyname in the schema. + /// There are no comments for Property address1_county in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string friendlyname + public virtual string address1_county { get { - return this._friendlyname; + return this._address1_county; } set { - this.OnfriendlynameChanging(value); - this._friendlyname = value; - this.OnfriendlynameChanged(); + this.Onaddress1_countyChanging(value); + this._address1_county = value; + this.Onaddress1_countyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _friendlyname; - partial void OnfriendlynameChanging(string value); - partial void OnfriendlynameChanged(); + private string _address1_county; + partial void Onaddress1_countyChanging(string value); + partial void Onaddress1_countyChanged(); /// /// There are no comments for Property publisherid in the schema. /// @@ -612949,49 +613015,27 @@ public virtual string friendlyname partial void OnpublisheridChanging(global::System.Nullable value); partial void OnpublisheridChanged(); /// - /// There are no comments for Property address2_utcoffset in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable address2_utcoffset - { - get - { - return this._address2_utcoffset; - } - set - { - this.Onaddress2_utcoffsetChanging(value); - this._address2_utcoffset = value; - this.Onaddress2_utcoffsetChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_utcoffset; - partial void Onaddress2_utcoffsetChanging(global::System.Nullable value); - partial void Onaddress2_utcoffsetChanged(); - /// - /// There are no comments for Property address1_line2 in the schema. + /// There are no comments for Property address2_upszone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_line2 + public virtual string address2_upszone { get { - return this._address1_line2; + return this._address2_upszone; } set { - this.Onaddress1_line2Changing(value); - this._address1_line2 = value; - this.Onaddress1_line2Changed(); + this.Onaddress2_upszoneChanging(value); + this._address2_upszone = value; + this.Onaddress2_upszoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line2; - partial void Onaddress1_line2Changing(string value); - partial void Onaddress1_line2Changed(); + private string _address2_upszone; + partial void Onaddress2_upszoneChanging(string value); + partial void Onaddress2_upszoneChanged(); /// /// There are no comments for Property address1_upszone in the schema. /// @@ -613037,27 +613081,27 @@ public virtual string address2_county partial void Onaddress2_countyChanging(string value); partial void Onaddress2_countyChanged(); /// - /// There are no comments for Property address1_shippingmethodcode in the schema. + /// There are no comments for Property friendlyname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_shippingmethodcode + public virtual string friendlyname { get { - return this._address1_shippingmethodcode; + return this._friendlyname; } set { - this.Onaddress1_shippingmethodcodeChanging(value); - this._address1_shippingmethodcode = value; - this.Onaddress1_shippingmethodcodeChanged(); + this.OnfriendlynameChanging(value); + this._friendlyname = value; + this.OnfriendlynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_shippingmethodcode; - partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress1_shippingmethodcodeChanged(); + private string _friendlyname; + partial void OnfriendlynameChanging(string value); + partial void OnfriendlynameChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -613081,28 +613125,6 @@ public virtual string address2_county partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property isreadonly in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isreadonly - { - get - { - return this._isreadonly; - } - set - { - this.OnisreadonlyChanging(value); - this._isreadonly = value; - this.OnisreadonlyChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isreadonly; - partial void OnisreadonlyChanging(global::System.Nullable value); - partial void OnisreadonlyChanged(); - /// /// There are no comments for Property address1_telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -613147,49 +613169,49 @@ public virtual string address1_telephone3 partial void Onentityimage_timestampChanging(global::System.Nullable value); partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property address1_country in the schema. + /// There are no comments for Property address1_longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_country + public virtual global::System.Nullable address1_longitude { get { - return this._address1_country; + return this._address1_longitude; } set { - this.Onaddress1_countryChanging(value); - this._address1_country = value; - this.Onaddress1_countryChanged(); + this.Onaddress1_longitudeChanging(value); + this._address1_longitude = value; + this.Onaddress1_longitudeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_country; - partial void Onaddress1_countryChanging(string value); - partial void Onaddress1_countryChanged(); + private global::System.Nullable _address1_longitude; + partial void Onaddress1_longitudeChanging(global::System.Nullable value); + partial void Onaddress1_longitudeChanged(); /// - /// There are no comments for Property pinpointpublisherdefaultlocale in the schema. + /// There are no comments for Property address1_country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string pinpointpublisherdefaultlocale + public virtual string address1_country { get { - return this._pinpointpublisherdefaultlocale; + return this._address1_country; } set { - this.OnpinpointpublisherdefaultlocaleChanging(value); - this._pinpointpublisherdefaultlocale = value; - this.OnpinpointpublisherdefaultlocaleChanged(); + this.Onaddress1_countryChanging(value); + this._address1_country = value; + this.Onaddress1_countryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _pinpointpublisherdefaultlocale; - partial void OnpinpointpublisherdefaultlocaleChanging(string value); - partial void OnpinpointpublisherdefaultlocaleChanged(); + private string _address1_country; + partial void Onaddress1_countryChanging(string value); + partial void Onaddress1_countryChanged(); /// /// There are no comments for Property address2_name in the schema. /// @@ -613235,27 +613257,27 @@ public virtual string address1_telephone1 partial void Onaddress1_telephone1Changing(string value); partial void Onaddress1_telephone1Changed(); /// - /// There are no comments for Property address1_name in the schema. + /// There are no comments for Property address2_addressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_name + public virtual global::System.Nullable address2_addressid { get { - return this._address1_name; + return this._address2_addressid; } set { - this.Onaddress1_nameChanging(value); - this._address1_name = value; - this.Onaddress1_nameChanged(); + this.Onaddress2_addressidChanging(value); + this._address2_addressid = value; + this.Onaddress2_addressidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_name; - partial void Onaddress1_nameChanging(string value); - partial void Onaddress1_nameChanged(); + private global::System.Nullable _address2_addressid; + partial void Onaddress2_addressidChanging(global::System.Nullable value); + partial void Onaddress2_addressidChanged(); /// /// There are no comments for Property description in the schema. /// @@ -613279,27 +613301,49 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property address1_addressid in the schema. + /// There are no comments for Property address1_shippingmethodcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_addressid + public virtual global::System.Nullable address1_shippingmethodcode { get { - return this._address1_addressid; + return this._address1_shippingmethodcode; } set { - this.Onaddress1_addressidChanging(value); - this._address1_addressid = value; - this.Onaddress1_addressidChanged(); + this.Onaddress1_shippingmethodcodeChanging(value); + this._address1_shippingmethodcode = value; + this.Onaddress1_shippingmethodcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_addressid; - partial void Onaddress1_addressidChanging(global::System.Nullable value); - partial void Onaddress1_addressidChanged(); + private global::System.Nullable _address1_shippingmethodcode; + partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress1_shippingmethodcodeChanged(); + /// + /// There are no comments for Property customizationprefix in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string customizationprefix + { + get + { + return this._customizationprefix; + } + set + { + this.OncustomizationprefixChanging(value); + this._customizationprefix = value; + this.OncustomizationprefixChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _customizationprefix; + partial void OncustomizationprefixChanging(string value); + partial void OncustomizationprefixChanged(); /// /// There are no comments for Property address2_stateorprovince in the schema. /// @@ -613345,27 +613389,27 @@ public virtual string address2_stateorprovince partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); partial void Onaddress1_addresstypecodeChanged(); /// - /// There are no comments for Property address2_addressid in the schema. + /// There are no comments for Property address1_utcoffset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_addressid + public virtual global::System.Nullable address1_utcoffset { get { - return this._address2_addressid; + return this._address1_utcoffset; } set { - this.Onaddress2_addressidChanging(value); - this._address2_addressid = value; - this.Onaddress2_addressidChanged(); + this.Onaddress1_utcoffsetChanging(value); + this._address1_utcoffset = value; + this.Onaddress1_utcoffsetChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_addressid; - partial void Onaddress2_addressidChanging(global::System.Nullable value); - partial void Onaddress2_addressidChanged(); + private global::System.Nullable _address1_utcoffset; + partial void Onaddress1_utcoffsetChanging(global::System.Nullable value); + partial void Onaddress1_utcoffsetChanged(); /// /// There are no comments for Property address2_city in the schema. /// @@ -613389,6 +613433,28 @@ public virtual string address2_city partial void Onaddress2_cityChanging(string value); partial void Onaddress2_cityChanged(); /// + /// There are no comments for Property address1_telephone2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_telephone2 + { + get + { + return this._address1_telephone2; + } + set + { + this.Onaddress1_telephone2Changing(value); + this._address1_telephone2 = value; + this.Onaddress1_telephone2Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_telephone2; + partial void Onaddress1_telephone2Changing(string value); + partial void Onaddress1_telephone2Changed(); + /// /// There are no comments for Property address1_line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -613433,6 +613499,28 @@ public virtual string address2_line1 partial void Onaddress2_line1Changing(string value); partial void Onaddress2_line1Changed(); /// + /// There are no comments for Property address2_telephone3 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_telephone3 + { + get + { + return this._address2_telephone3; + } + set + { + this.Onaddress2_telephone3Changing(value); + this._address2_telephone3 = value; + this.Onaddress2_telephone3Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_telephone3; + partial void Onaddress2_telephone3Changing(string value); + partial void Onaddress2_telephone3Changed(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -613455,6 +613543,28 @@ public virtual string address2_line1 partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property address2_shippingmethodcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address2_shippingmethodcode + { + get + { + return this._address2_shippingmethodcode; + } + set + { + this.Onaddress2_shippingmethodcodeChanging(value); + this._address2_shippingmethodcode = value; + this.Onaddress2_shippingmethodcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address2_shippingmethodcode; + partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress2_shippingmethodcodeChanged(); + /// /// There are no comments for Property pinpointpublisherid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -613499,27 +613609,27 @@ public virtual string address2_line1 partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property customizationprefix in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string customizationprefix + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._customizationprefix; + return this.__createdonbehalfby_value; } set { - this.OncustomizationprefixChanging(value); - this._customizationprefix = value; - this.OncustomizationprefixChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _customizationprefix; - partial void OncustomizationprefixChanging(string value); - partial void OncustomizationprefixChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property address2_line3 in the schema. /// @@ -613565,27 +613675,27 @@ public virtual string address2_line3 partial void Onaddress2_longitudeChanging(global::System.Nullable value); partial void Onaddress2_longitudeChanged(); /// - /// There are no comments for Property address1_fax in the schema. + /// There are no comments for Property pinpointpublisherdefaultlocale in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_fax + public virtual string pinpointpublisherdefaultlocale { get { - return this._address1_fax; + return this._pinpointpublisherdefaultlocale; } set { - this.Onaddress1_faxChanging(value); - this._address1_fax = value; - this.Onaddress1_faxChanged(); + this.OnpinpointpublisherdefaultlocaleChanging(value); + this._pinpointpublisherdefaultlocale = value; + this.OnpinpointpublisherdefaultlocaleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_fax; - partial void Onaddress1_faxChanging(string value); - partial void Onaddress1_faxChanged(); + private string _pinpointpublisherdefaultlocale; + partial void OnpinpointpublisherdefaultlocaleChanging(string value); + partial void OnpinpointpublisherdefaultlocaleChanged(); /// /// There are no comments for Property entityimage_url in the schema. /// @@ -613653,71 +613763,27 @@ public virtual string address1_line1 partial void Onaddress1_line1Changing(string value); partial void Onaddress1_line1Changed(); /// - /// There are no comments for Property address2_shippingmethodcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable address2_shippingmethodcode - { - get - { - return this._address2_shippingmethodcode; - } - set - { - this.Onaddress2_shippingmethodcodeChanging(value); - this._address2_shippingmethodcode = value; - this.Onaddress2_shippingmethodcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_shippingmethodcode; - partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress2_shippingmethodcodeChanged(); - /// - /// There are no comments for Property address2_line2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_line2 - { - get - { - return this._address2_line2; - } - set - { - this.Onaddress2_line2Changing(value); - this._address2_line2 = value; - this.Onaddress2_line2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line2; - partial void Onaddress2_line2Changing(string value); - partial void Onaddress2_line2Changed(); - /// - /// There are no comments for Property address1_postalcode in the schema. + /// There are no comments for Property isreadonly in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_postalcode + public virtual global::System.Nullable isreadonly { get { - return this._address1_postalcode; + return this._isreadonly; } set { - this.Onaddress1_postalcodeChanging(value); - this._address1_postalcode = value; - this.Onaddress1_postalcodeChanged(); + this.OnisreadonlyChanging(value); + this._isreadonly = value; + this.OnisreadonlyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_postalcode; - partial void Onaddress1_postalcodeChanging(string value); - partial void Onaddress1_postalcodeChanged(); + private global::System.Nullable _isreadonly; + partial void OnisreadonlyChanging(global::System.Nullable value); + partial void OnisreadonlyChanged(); /// /// There are no comments for Property address2_postalcode in the schema. /// @@ -613741,27 +613807,27 @@ public virtual string address2_postalcode partial void Onaddress2_postalcodeChanging(string value); partial void Onaddress2_postalcodeChanged(); /// - /// There are no comments for Property address1_county in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_county + public virtual global::System.Nullable _modifiedby_value { get { - return this._address1_county; + return this.__modifiedby_value; } set { - this.Onaddress1_countyChanging(value); - this._address1_county = value; - this.Onaddress1_countyChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_county; - partial void Onaddress1_countyChanging(string value); - partial void Onaddress1_countyChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property address1_postofficebox in the schema. /// @@ -613829,27 +613895,49 @@ public virtual string address1_postofficebox partial void OncustomizationoptionvalueprefixChanging(global::System.Nullable value); partial void OncustomizationoptionvalueprefixChanged(); /// - /// There are no comments for Property address2_upszone in the schema. + /// There are no comments for Property address1_addressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_upszone + public virtual global::System.Nullable address1_addressid { get { - return this._address2_upszone; + return this._address1_addressid; } set { - this.Onaddress2_upszoneChanging(value); - this._address2_upszone = value; - this.Onaddress2_upszoneChanged(); + this.Onaddress1_addressidChanging(value); + this._address1_addressid = value; + this.Onaddress1_addressidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_upszone; - partial void Onaddress2_upszoneChanging(string value); - partial void Onaddress2_upszoneChanged(); + private global::System.Nullable _address1_addressid; + partial void Onaddress1_addressidChanging(global::System.Nullable value); + partial void Onaddress1_addressidChanged(); + /// + /// There are no comments for Property address2_line2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_line2 + { + get + { + return this._address2_line2; + } + set + { + this.Onaddress2_line2Changing(value); + this._address2_line2 = value; + this.Onaddress2_line2Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_line2; + partial void Onaddress2_line2Changing(string value); + partial void Onaddress2_line2Changed(); /// /// There are no comments for Property address2_country in the schema. /// @@ -613939,115 +614027,137 @@ public virtual string address2_telephone1 partial void Onaddress2_telephone1Changing(string value); partial void Onaddress2_telephone1Changed(); /// - /// There are no comments for Property address1_longitude in the schema. + /// There are no comments for Property supportingwebsiteurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_longitude + public virtual string supportingwebsiteurl { get { - return this._address1_longitude; + return this._supportingwebsiteurl; } set { - this.Onaddress1_longitudeChanging(value); - this._address1_longitude = value; - this.Onaddress1_longitudeChanged(); + this.OnsupportingwebsiteurlChanging(value); + this._supportingwebsiteurl = value; + this.OnsupportingwebsiteurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_longitude; - partial void Onaddress1_longitudeChanging(global::System.Nullable value); - partial void Onaddress1_longitudeChanged(); + private string _supportingwebsiteurl; + partial void OnsupportingwebsiteurlChanging(string value); + partial void OnsupportingwebsiteurlChanged(); /// - /// There are no comments for Property address1_utcoffset in the schema. + /// There are no comments for Property address1_stateorprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_utcoffset + public virtual string address1_stateorprovince { get { - return this._address1_utcoffset; + return this._address1_stateorprovince; } set { - this.Onaddress1_utcoffsetChanging(value); - this._address1_utcoffset = value; - this.Onaddress1_utcoffsetChanged(); + this.Onaddress1_stateorprovinceChanging(value); + this._address1_stateorprovince = value; + this.Onaddress1_stateorprovinceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_utcoffset; - partial void Onaddress1_utcoffsetChanging(global::System.Nullable value); - partial void Onaddress1_utcoffsetChanged(); + private string _address1_stateorprovince; + partial void Onaddress1_stateorprovinceChanging(string value); + partial void Onaddress1_stateorprovinceChanged(); /// - /// There are no comments for Property address2_telephone2 in the schema. + /// There are no comments for Property address1_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_telephone2 + public virtual string address1_name { get { - return this._address2_telephone2; + return this._address1_name; } set { - this.Onaddress2_telephone2Changing(value); - this._address2_telephone2 = value; - this.Onaddress2_telephone2Changed(); + this.Onaddress1_nameChanging(value); + this._address1_name = value; + this.Onaddress1_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone2; - partial void Onaddress2_telephone2Changing(string value); - partial void Onaddress2_telephone2Changed(); + private string _address1_name; + partial void Onaddress1_nameChanging(string value); + partial void Onaddress1_nameChanged(); /// - /// There are no comments for Property address2_addresstypecode in the schema. + /// There are no comments for Property address2_utcoffset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_addresstypecode + public virtual global::System.Nullable address2_utcoffset { get { - return this._address2_addresstypecode; + return this._address2_utcoffset; } set { - this.Onaddress2_addresstypecodeChanging(value); - this._address2_addresstypecode = value; - this.Onaddress2_addresstypecodeChanged(); + this.Onaddress2_utcoffsetChanging(value); + this._address2_utcoffset = value; + this.Onaddress2_utcoffsetChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_addresstypecode; - partial void Onaddress2_addresstypecodeChanging(global::System.Nullable value); - partial void Onaddress2_addresstypecodeChanged(); + private global::System.Nullable _address2_utcoffset; + partial void Onaddress2_utcoffsetChanging(global::System.Nullable value); + partial void Onaddress2_utcoffsetChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property address1_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string address1_line2 { get { - return this.__modifiedby_value; + return this._address1_line2; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.Onaddress1_line2Changing(value); + this._address1_line2 = value; + this.Onaddress1_line2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _address1_line2; + partial void Onaddress1_line2Changing(string value); + partial void Onaddress1_line2Changed(); + /// + /// There are no comments for Property address2_addresstypecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address2_addresstypecode + { + get + { + return this._address2_addresstypecode; + } + set + { + this.Onaddress2_addresstypecodeChanging(value); + this._address2_addresstypecode = value; + this.Onaddress2_addresstypecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address2_addresstypecode; + partial void Onaddress2_addresstypecodeChanging(global::System.Nullable value); + partial void Onaddress2_addresstypecodeChanged(); /// /// There are no comments for Property address1_latitude in the schema. /// @@ -614093,93 +614203,71 @@ public virtual string address2_telephone2 partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property address2_telephone3 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_telephone3 - { - get - { - return this._address2_telephone3; - } - set - { - this.Onaddress2_telephone3Changing(value); - this._address2_telephone3 = value; - this.Onaddress2_telephone3Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone3; - partial void Onaddress2_telephone3Changing(string value); - partial void Onaddress2_telephone3Changed(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property address1_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string address1_postalcode { get { - return this.__createdonbehalfby_value; + return this._address1_postalcode; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.Onaddress1_postalcodeChanging(value); + this._address1_postalcode = value; + this.Onaddress1_postalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _address1_postalcode; + partial void Onaddress1_postalcodeChanging(string value); + partial void Onaddress1_postalcodeChanged(); /// - /// There are no comments for Property emailaddress in the schema. + /// There are no comments for Property address1_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string emailaddress + public virtual string address1_fax { get { - return this._emailaddress; + return this._address1_fax; } set { - this.OnemailaddressChanging(value); - this._emailaddress = value; - this.OnemailaddressChanged(); + this.Onaddress1_faxChanging(value); + this._address1_fax = value; + this.Onaddress1_faxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _emailaddress; - partial void OnemailaddressChanging(string value); - partial void OnemailaddressChanged(); + private string _address1_fax; + partial void Onaddress1_faxChanging(string value); + partial void Onaddress1_faxChanged(); /// - /// There are no comments for Property address1_stateorprovince in the schema. + /// There are no comments for Property address2_telephone2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_stateorprovince + public virtual string address2_telephone2 { get { - return this._address1_stateorprovince; + return this._address2_telephone2; } set { - this.Onaddress1_stateorprovinceChanging(value); - this._address1_stateorprovince = value; - this.Onaddress1_stateorprovinceChanged(); + this.Onaddress2_telephone2Changing(value); + this._address2_telephone2 = value; + this.Onaddress2_telephone2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_stateorprovince; - partial void Onaddress1_stateorprovinceChanging(string value); - partial void Onaddress1_stateorprovinceChanged(); + private string _address2_telephone2; + partial void Onaddress2_telephone2Changing(string value); + partial void Onaddress2_telephone2Changed(); /// /// There are no comments for Property uniquename in the schema. /// @@ -614247,27 +614335,27 @@ public virtual string address1_city partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property address1_telephone2 in the schema. + /// There are no comments for Property emailaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone2 + public virtual string emailaddress { get { - return this._address1_telephone2; + return this._emailaddress; } set { - this.Onaddress1_telephone2Changing(value); - this._address1_telephone2 = value; - this.Onaddress1_telephone2Changed(); + this.OnemailaddressChanging(value); + this._emailaddress = value; + this.OnemailaddressChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone2; - partial void Onaddress1_telephone2Changing(string value); - partial void Onaddress1_telephone2Changed(); + private string _emailaddress; + partial void OnemailaddressChanging(string value); + partial void OnemailaddressChanged(); /// /// There are no comments for Property entityimage in the schema. /// @@ -614313,28 +614401,6 @@ public virtual string address2_postofficebox partial void Onaddress2_postofficeboxChanging(string value); partial void Onaddress2_postofficeboxChanged(); /// - /// There are no comments for Property supportingwebsiteurl in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string supportingwebsiteurl - { - get - { - return this._supportingwebsiteurl; - } - set - { - this.OnsupportingwebsiteurlChanging(value); - this._supportingwebsiteurl = value; - this.OnsupportingwebsiteurlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _supportingwebsiteurl; - partial void OnsupportingwebsiteurlChanging(string value); - partial void OnsupportingwebsiteurlChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -614834,28 +614900,6 @@ public static quarterlyfiscalcalendar Createquarterlyfiscalcalendar(global::EMBC return quarterlyfiscalcalendar; } /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property quarter4_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -614922,6 +614966,28 @@ public static quarterlyfiscalcalendar Createquarterlyfiscalcalendar(global::EMBC partial void OnuserfiscalcalendaridChanging(global::System.Nullable value); partial void OnuserfiscalcalendaridChanged(); /// + /// There are no comments for Property quarter3 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable quarter3 + { + get + { + return this._quarter3; + } + set + { + this.Onquarter3Changing(value); + this._quarter3 = value; + this.Onquarter3Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _quarter3; + partial void Onquarter3Changing(global::System.Nullable value); + partial void Onquarter3Changed(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -614988,28 +615054,6 @@ public static quarterlyfiscalcalendar Createquarterlyfiscalcalendar(global::EMBC partial void On_businessunitid_valueChanging(global::System.Nullable value); partial void On_businessunitid_valueChanged(); /// - /// There are no comments for Property fiscalperiodtype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable fiscalperiodtype - { - get - { - return this._fiscalperiodtype; - } - set - { - this.OnfiscalperiodtypeChanging(value); - this._fiscalperiodtype = value; - this.OnfiscalperiodtypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _fiscalperiodtype; - partial void OnfiscalperiodtypeChanging(global::System.Nullable value); - partial void OnfiscalperiodtypeChanged(); - /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -615076,137 +615120,71 @@ public static quarterlyfiscalcalendar Createquarterlyfiscalcalendar(global::EMBC partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property quarter3 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable quarter3 - { - get - { - return this._quarter3; - } - set - { - this.Onquarter3Changing(value); - this._quarter3 = value; - this.Onquarter3Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quarter3; - partial void Onquarter3Changing(global::System.Nullable value); - partial void Onquarter3Changed(); - /// - /// There are no comments for Property quarter3_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable quarter3_base - { - get - { - return this._quarter3_base; - } - set - { - this.Onquarter3_baseChanging(value); - this._quarter3_base = value; - this.Onquarter3_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quarter3_base; - partial void Onquarter3_baseChanging(global::System.Nullable value); - partial void Onquarter3_baseChanged(); - /// - /// There are no comments for Property exchangerate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable exchangerate - { - get - { - return this._exchangerate; - } - set - { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); - /// - /// There are no comments for Property quarter1_base in the schema. + /// There are no comments for Property _salespersonid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable quarter1_base + public virtual global::System.Nullable _salespersonid_value { get { - return this._quarter1_base; + return this.__salespersonid_value; } set { - this.Onquarter1_baseChanging(value); - this._quarter1_base = value; - this.Onquarter1_baseChanged(); + this.On_salespersonid_valueChanging(value); + this.__salespersonid_value = value; + this.On_salespersonid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quarter1_base; - partial void Onquarter1_baseChanging(global::System.Nullable value); - partial void Onquarter1_baseChanged(); + private global::System.Nullable __salespersonid_value; + partial void On_salespersonid_valueChanging(global::System.Nullable value); + partial void On_salespersonid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property fiscalperiodtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable fiscalperiodtype { get { - return this.__createdonbehalfby_value; + return this._fiscalperiodtype; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnfiscalperiodtypeChanging(value); + this._fiscalperiodtype = value; + this.OnfiscalperiodtypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _fiscalperiodtype; + partial void OnfiscalperiodtypeChanging(global::System.Nullable value); + partial void OnfiscalperiodtypeChanged(); /// - /// There are no comments for Property effectiveon in the schema. + /// There are no comments for Property quarter3_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable effectiveon + public virtual global::System.Nullable quarter3_base { get { - return this._effectiveon; + return this._quarter3_base; } set { - this.OneffectiveonChanging(value); - this._effectiveon = value; - this.OneffectiveonChanged(); + this.Onquarter3_baseChanging(value); + this._quarter3_base = value; + this.Onquarter3_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _effectiveon; - partial void OneffectiveonChanging(global::System.Nullable value); - partial void OneffectiveonChanged(); + private global::System.Nullable _quarter3_base; + partial void Onquarter3_baseChanging(global::System.Nullable value); + partial void Onquarter3_baseChanged(); /// /// There are no comments for Property quarter2 in the schema. /// @@ -615230,6 +615208,116 @@ public static quarterlyfiscalcalendar Createquarterlyfiscalcalendar(global::EMBC partial void Onquarter2Changing(global::System.Nullable value); partial void Onquarter2Changed(); /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); + /// + /// There are no comments for Property quarter1_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable quarter1_base + { + get + { + return this._quarter1_base; + } + set + { + this.Onquarter1_baseChanging(value); + this._quarter1_base = value; + this.Onquarter1_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _quarter1_base; + partial void Onquarter1_baseChanging(global::System.Nullable value); + partial void Onquarter1_baseChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property effectiveon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable effectiveon + { + get + { + return this._effectiveon; + } + set + { + this.OneffectiveonChanging(value); + this._effectiveon = value; + this.OneffectiveonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _effectiveon; + partial void OneffectiveonChanging(global::System.Nullable value); + partial void OneffectiveonChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property quarter1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -615318,28 +615406,6 @@ public static quarterlyfiscalcalendar Createquarterlyfiscalcalendar(global::EMBC partial void Onquarter2_baseChanging(global::System.Nullable value); partial void Onquarter2_baseChanged(); /// - /// There are no comments for Property _salespersonid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _salespersonid_value - { - get - { - return this.__salespersonid_value; - } - set - { - this.On_salespersonid_valueChanging(value); - this.__salespersonid_value = value; - this.On_salespersonid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __salespersonid_value; - partial void On_salespersonid_valueChanging(global::System.Nullable value); - partial void On_salespersonid_valueChanged(); - /// /// There are no comments for Property createdonbehalfby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -616557,28 +616623,6 @@ public static queueitem Createqueueitem(global::EMBC.ESS.Utilities.Dynamics.Micr partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property title in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string title - { - get - { - return this._title; - } - set - { - this.OntitleChanging(value); - this._title = value; - this.OntitleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _title; - partial void OntitleChanging(string value); - partial void OntitleChanged(); - /// /// There are no comments for Property workeridmodifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -616953,6 +616997,28 @@ public virtual string title partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property title in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string title + { + get + { + return this._title; + } + set + { + this.OntitleChanging(value); + this._title = value; + this.OntitleChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _title; + partial void OntitleChanging(string value); + partial void OntitleChanged(); + /// /// There are no comments for Property objecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -618598,6 +618664,28 @@ public static queue Createqueue(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dy return queue; } /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -618642,27 +618730,71 @@ public static queue Createqueue(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dy partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._name; + return this.__transactioncurrencyid_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); + /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property queueviewtype in the schema. /// @@ -618686,94 +618818,6 @@ public virtual string name partial void OnqueueviewtypeChanging(global::System.Nullable value); partial void OnqueueviewtypeChanged(); /// - /// There are no comments for Property entityimage_url in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string entityimage_url - { - get - { - return this._entityimage_url; - } - set - { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); - /// - /// There are no comments for Property outgoingemaildeliverymethod in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable outgoingemaildeliverymethod - { - get - { - return this._outgoingemaildeliverymethod; - } - set - { - this.OnoutgoingemaildeliverymethodChanging(value); - this._outgoingemaildeliverymethod = value; - this.OnoutgoingemaildeliverymethodChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _outgoingemaildeliverymethod; - partial void OnoutgoingemaildeliverymethodChanging(global::System.Nullable value); - partial void OnoutgoingemaildeliverymethodChanged(); - /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property ignoreunsolicitedemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -618884,49 +618928,49 @@ public virtual string emailaddress partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__owninguser_value; + return this.__owningteam_value; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable _owninguser_value { get { - return this._description; + return this.__owninguser_value; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property entityimage in the schema. /// @@ -618994,6 +619038,28 @@ public virtual byte[] entityimage partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property exchangerate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable exchangerate + { + get + { + return this._exchangerate; + } + set + { + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -619060,71 +619126,71 @@ public virtual byte[] entityimage partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string description { get { - return this.__modifiedonbehalfby_value; + return this._description; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property queuetypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable queuetypecode { get { - return this._exchangerate; + return this._queuetypecode; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.OnqueuetypecodeChanging(value); + this._queuetypecode = value; + this.OnqueuetypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable _queuetypecode; + partial void OnqueuetypecodeChanging(global::System.Nullable value); + partial void OnqueuetypecodeChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual string entityimage_url { get { - return this.__transactioncurrencyid_value; + return this._entityimage_url; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// /// There are no comments for Property entityimageid in the schema. /// @@ -619214,6 +619280,50 @@ public virtual byte[] entityimage partial void On_defaultmailbox_valueChanging(global::System.Nullable value); partial void On_defaultmailbox_valueChanged(); /// + /// There are no comments for Property isemailaddressapprovedbyo365admin in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isemailaddressapprovedbyo365admin + { + get + { + return this._isemailaddressapprovedbyo365admin; + } + set + { + this.Onisemailaddressapprovedbyo365adminChanging(value); + this._isemailaddressapprovedbyo365admin = value; + this.Onisemailaddressapprovedbyo365adminChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isemailaddressapprovedbyo365admin; + partial void Onisemailaddressapprovedbyo365adminChanging(global::System.Nullable value); + partial void Onisemailaddressapprovedbyo365adminChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -619258,49 +619368,27 @@ public virtual byte[] entityimage partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property isemailaddressapprovedbyo365admin in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isemailaddressapprovedbyo365admin - { - get - { - return this._isemailaddressapprovedbyo365admin; - } - set - { - this.Onisemailaddressapprovedbyo365adminChanging(value); - this._isemailaddressapprovedbyo365admin = value; - this.Onisemailaddressapprovedbyo365adminChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isemailaddressapprovedbyo365admin; - partial void Onisemailaddressapprovedbyo365adminChanging(global::System.Nullable value); - partial void Onisemailaddressapprovedbyo365adminChanged(); - /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property outgoingemaildeliverymethod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable outgoingemaildeliverymethod { get { - return this._createdon; + return this._outgoingemaildeliverymethod; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnoutgoingemaildeliverymethodChanging(value); + this._outgoingemaildeliverymethod = value; + this.OnoutgoingemaildeliverymethodChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _outgoingemaildeliverymethod; + partial void OnoutgoingemaildeliverymethodChanging(global::System.Nullable value); + partial void OnoutgoingemaildeliverymethodChanged(); /// /// There are no comments for Property numberofmembers in the schema. /// @@ -619324,50 +619412,6 @@ public virtual byte[] entityimage partial void OnnumberofmembersChanging(global::System.Nullable value); partial void OnnumberofmembersChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningteam_value - { - get - { - return this.__owningteam_value; - } - set - { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); - /// - /// There are no comments for Property queuetypecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable queuetypecode - { - get - { - return this._queuetypecode; - } - set - { - this.OnqueuetypecodeChanging(value); - this._queuetypecode = value; - this.OnqueuetypecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _queuetypecode; - partial void OnqueuetypecodeChanging(global::System.Nullable value); - partial void OnqueuetypecodeChanged(); - /// /// There are no comments for Property incomingemailfilteringmethod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -619412,6 +619456,28 @@ public virtual byte[] entityimage partial void OnnumberofitemsChanging(global::System.Nullable value); partial void OnnumberofitemsChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property defaultmailbox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -622845,28 +622911,6 @@ public static quoteclose Createquoteclose(global::EMBC.ESS.Utilities.Dynamics.Mi return quoteclose; } /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property quotenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -622977,6 +623021,28 @@ public virtual string category partial void OnrevisionChanging(global::System.Nullable value); partial void OnrevisionChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property _quoteid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -624554,93 +624620,115 @@ public static quotedetail Createquotedetail(global::EMBC.ESS.Utilities.Dynamics. partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property shipto_telephone in the schema. + /// There are no comments for Property productnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_telephone + public virtual string productnumber { get { - return this._shipto_telephone; + return this._productnumber; } set { - this.Onshipto_telephoneChanging(value); - this._shipto_telephone = value; - this.Onshipto_telephoneChanged(); + this.OnproductnumberChanging(value); + this._productnumber = value; + this.OnproductnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_telephone; - partial void Onshipto_telephoneChanging(string value); - partial void Onshipto_telephoneChanged(); + private string _productnumber; + partial void OnproductnumberChanging(string value); + partial void OnproductnumberChanged(); /// - /// There are no comments for Property _parentbundleidref_value in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _parentbundleidref_value + public virtual string description { get { - return this.__parentbundleidref_value; + return this._description; } set { - this.On_parentbundleidref_valueChanging(value); - this.__parentbundleidref_value = value; - this.On_parentbundleidref_valueChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentbundleidref_value; - partial void On_parentbundleidref_valueChanging(global::System.Nullable value); - partial void On_parentbundleidref_valueChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._description; + return this._utcconversiontimezonecode; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _createdby_value { get { - return this._overriddencreatedon; + return this.__createdby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property shipto_fax in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string shipto_fax + { + get + { + return this._shipto_fax; + } + set + { + this.Onshipto_faxChanging(value); + this._shipto_fax = value; + this.Onshipto_faxChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _shipto_fax; + partial void Onshipto_faxChanging(string value); + partial void Onshipto_faxChanged(); /// /// There are no comments for Property shipto_city in the schema. /// @@ -624664,93 +624752,93 @@ public virtual string shipto_city partial void Onshipto_cityChanging(string value); partial void Onshipto_cityChanged(); /// - /// There are no comments for Property shipto_country in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_country + public virtual global::System.Nullable _owninguser_value { get { - return this._shipto_country; + return this.__owninguser_value; } set { - this.Onshipto_countryChanging(value); - this._shipto_country = value; - this.Onshipto_countryChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_country; - partial void Onshipto_countryChanging(string value); - partial void Onshipto_countryChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// - /// There are no comments for Property sequencenumber in the schema. + /// There are no comments for Property ispriceoverridden in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sequencenumber + public virtual global::System.Nullable ispriceoverridden { get { - return this._sequencenumber; + return this._ispriceoverridden; } set { - this.OnsequencenumberChanging(value); - this._sequencenumber = value; - this.OnsequencenumberChanged(); + this.OnispriceoverriddenChanging(value); + this._ispriceoverridden = value; + this.OnispriceoverriddenChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sequencenumber; - partial void OnsequencenumberChanging(global::System.Nullable value); - partial void OnsequencenumberChanged(); + private global::System.Nullable _ispriceoverridden; + partial void OnispriceoverriddenChanging(global::System.Nullable value); + partial void OnispriceoverriddenChanged(); /// - /// There are no comments for Property shipto_fax in the schema. + /// There are no comments for Property parentbundleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_fax + public virtual global::System.Nullable parentbundleid { get { - return this._shipto_fax; + return this._parentbundleid; } set { - this.Onshipto_faxChanging(value); - this._shipto_fax = value; - this.Onshipto_faxChanged(); + this.OnparentbundleidChanging(value); + this._parentbundleid = value; + this.OnparentbundleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_fax; - partial void Onshipto_faxChanging(string value); - partial void Onshipto_faxChanged(); + private global::System.Nullable _parentbundleid; + partial void OnparentbundleidChanging(global::System.Nullable value); + partial void OnparentbundleidChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property requestdeliveryby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable requestdeliveryby { get { - return this.__owninguser_value; + return this._requestdeliveryby; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnrequestdeliverybyChanging(value); + this._requestdeliveryby = value; + this.OnrequestdeliverybyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable _requestdeliveryby; + partial void OnrequestdeliverybyChanging(global::System.Nullable value); + partial void OnrequestdeliverybyChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -624774,28 +624862,6 @@ public virtual string shipto_fax partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property volumediscountamount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable volumediscountamount - { - get - { - return this._volumediscountamount; - } - set - { - this.OnvolumediscountamountChanging(value); - this._volumediscountamount = value; - this.OnvolumediscountamountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _volumediscountamount; - partial void OnvolumediscountamountChanging(global::System.Nullable value); - partial void OnvolumediscountamountChanged(); - /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -624840,6 +624906,28 @@ public virtual string shipto_fax partial void Onmanualdiscountamount_baseChanging(global::System.Nullable value); partial void Onmanualdiscountamount_baseChanged(); /// + /// There are no comments for Property sequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sequencenumber + { + get + { + return this._sequencenumber; + } + set + { + this.OnsequencenumberChanging(value); + this._sequencenumber = value; + this.OnsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sequencenumber; + partial void OnsequencenumberChanging(global::System.Nullable value); + partial void OnsequencenumberChanged(); + /// /// There are no comments for Property extendedamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -624862,6 +624950,28 @@ public virtual string shipto_fax partial void Onextendedamount_baseChanging(global::System.Nullable value); partial void Onextendedamount_baseChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property productassociationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -624884,6 +624994,28 @@ public virtual string shipto_fax partial void OnproductassociationidChanging(global::System.Nullable value); partial void OnproductassociationidChanged(); /// + /// There are no comments for Property priceperunit in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable priceperunit + { + get + { + return this._priceperunit; + } + set + { + this.OnpriceperunitChanging(value); + this._priceperunit = value; + this.OnpriceperunitChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _priceperunit; + partial void OnpriceperunitChanging(global::System.Nullable value); + partial void OnpriceperunitChanged(); + /// /// There are no comments for Property priceperunit_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -624906,71 +625038,71 @@ public virtual string shipto_fax partial void Onpriceperunit_baseChanging(global::System.Nullable value); partial void Onpriceperunit_baseChanged(); /// - /// There are no comments for Property volumediscountamount_base in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable volumediscountamount_base + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._volumediscountamount_base; + return this.__createdonbehalfby_value; } set { - this.Onvolumediscountamount_baseChanging(value); - this._volumediscountamount_base = value; - this.Onvolumediscountamount_baseChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _volumediscountamount_base; - partial void Onvolumediscountamount_baseChanging(global::System.Nullable value); - partial void Onvolumediscountamount_baseChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _ownerid_value { get { - return this._timezoneruleversionnumber; + return this.__ownerid_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property ispriceoverridden in the schema. + /// There are no comments for Property volumediscountamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ispriceoverridden + public virtual global::System.Nullable volumediscountamount { get { - return this._ispriceoverridden; + return this._volumediscountamount; } set { - this.OnispriceoverriddenChanging(value); - this._ispriceoverridden = value; - this.OnispriceoverriddenChanged(); + this.OnvolumediscountamountChanging(value); + this._volumediscountamount = value; + this.OnvolumediscountamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ispriceoverridden; - partial void OnispriceoverriddenChanging(global::System.Nullable value); - partial void OnispriceoverriddenChanged(); + private global::System.Nullable _volumediscountamount; + partial void OnvolumediscountamountChanging(global::System.Nullable value); + partial void OnvolumediscountamountChanged(); /// /// There are no comments for Property baseamount_base in the schema. /// @@ -625016,27 +625148,27 @@ public virtual string quotedetailname partial void OnquotedetailnameChanging(string value); partial void OnquotedetailnameChanged(); /// - /// There are no comments for Property producttypecode in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable producttypecode + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._producttypecode; + return this._timezoneruleversionnumber; } set { - this.OnproducttypecodeChanging(value); - this._producttypecode = value; - this.OnproducttypecodeChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _producttypecode; - partial void OnproducttypecodeChanging(global::System.Nullable value); - partial void OnproducttypecodeChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property productname in the schema. /// @@ -625060,27 +625192,27 @@ public virtual string productname partial void OnproductnameChanging(string value); partial void OnproductnameChanged(); /// - /// There are no comments for Property tax in the schema. + /// There are no comments for Property _salesrepid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable tax + public virtual global::System.Nullable _salesrepid_value { get { - return this._tax; + return this.__salesrepid_value; } set { - this.OntaxChanging(value); - this._tax = value; - this.OntaxChanged(); + this.On_salesrepid_valueChanging(value); + this.__salesrepid_value = value; + this.On_salesrepid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _tax; - partial void OntaxChanging(global::System.Nullable value); - partial void OntaxChanged(); + private global::System.Nullable __salesrepid_value; + partial void On_salesrepid_valueChanging(global::System.Nullable value); + partial void On_salesrepid_valueChanged(); /// /// There are no comments for Property propertyconfigurationstatus in the schema. /// @@ -625126,49 +625258,27 @@ public virtual string productname partial void On_productid_valueChanging(global::System.Nullable value); partial void On_productid_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property manualdiscountamount in the schema. + /// There are no comments for Property producttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable manualdiscountamount + public virtual global::System.Nullable producttypecode { get { - return this._manualdiscountamount; + return this._producttypecode; } set { - this.OnmanualdiscountamountChanging(value); - this._manualdiscountamount = value; - this.OnmanualdiscountamountChanged(); + this.OnproducttypecodeChanging(value); + this._producttypecode = value; + this.OnproducttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _manualdiscountamount; - partial void OnmanualdiscountamountChanging(global::System.Nullable value); - partial void OnmanualdiscountamountChanged(); + private global::System.Nullable _producttypecode; + partial void OnproducttypecodeChanging(global::System.Nullable value); + partial void OnproducttypecodeChanged(); /// /// There are no comments for Property _quoteid_value in the schema. /// @@ -625236,49 +625346,27 @@ public virtual string shipto_contactname partial void Onshipto_contactnameChanging(string value); partial void Onshipto_contactnameChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property requestdeliveryby in the schema. + /// There are no comments for Property tax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable requestdeliveryby + public virtual global::System.Nullable tax { get { - return this._requestdeliveryby; + return this._tax; } set { - this.OnrequestdeliverybyChanging(value); - this._requestdeliveryby = value; - this.OnrequestdeliverybyChanged(); + this.OntaxChanging(value); + this._tax = value; + this.OntaxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _requestdeliveryby; - partial void OnrequestdeliverybyChanging(global::System.Nullable value); - partial void OnrequestdeliverybyChanged(); + private global::System.Nullable _tax; + partial void OntaxChanging(global::System.Nullable value); + partial void OntaxChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -625324,49 +625412,49 @@ public virtual string shipto_contactname partial void OnwillcallChanging(global::System.Nullable value); partial void OnwillcallChanged(); /// - /// There are no comments for Property lineitemnumber in the schema. + /// There are no comments for Property productdescription in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lineitemnumber + public virtual string productdescription { get { - return this._lineitemnumber; + return this._productdescription; } set { - this.OnlineitemnumberChanging(value); - this._lineitemnumber = value; - this.OnlineitemnumberChanged(); + this.OnproductdescriptionChanging(value); + this._productdescription = value; + this.OnproductdescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lineitemnumber; - partial void OnlineitemnumberChanging(global::System.Nullable value); - partial void OnlineitemnumberChanged(); + private string _productdescription; + partial void OnproductdescriptionChanging(string value); + partial void OnproductdescriptionChanged(); /// - /// There are no comments for Property productdescription in the schema. + /// There are no comments for Property manualdiscountamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string productdescription + public virtual global::System.Nullable manualdiscountamount { get { - return this._productdescription; + return this._manualdiscountamount; } set { - this.OnproductdescriptionChanging(value); - this._productdescription = value; - this.OnproductdescriptionChanged(); + this.OnmanualdiscountamountChanging(value); + this._manualdiscountamount = value; + this.OnmanualdiscountamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _productdescription; - partial void OnproductdescriptionChanging(string value); - partial void OnproductdescriptionChanged(); + private global::System.Nullable _manualdiscountamount; + partial void OnmanualdiscountamountChanging(global::System.Nullable value); + partial void OnmanualdiscountamountChanged(); /// /// There are no comments for Property quotedetailid in the schema. /// @@ -625390,49 +625478,49 @@ public virtual string productdescription partial void OnquotedetailidChanging(global::System.Nullable value); partial void OnquotedetailidChanged(); /// - /// There are no comments for Property parentbundleid in the schema. + /// There are no comments for Property _parentbundleidref_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable parentbundleid + public virtual global::System.Nullable _parentbundleidref_value { get { - return this._parentbundleid; + return this.__parentbundleidref_value; } set { - this.OnparentbundleidChanging(value); - this._parentbundleid = value; - this.OnparentbundleidChanged(); + this.On_parentbundleidref_valueChanging(value); + this.__parentbundleidref_value = value; + this.On_parentbundleidref_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _parentbundleid; - partial void OnparentbundleidChanging(global::System.Nullable value); - partial void OnparentbundleidChanged(); + private global::System.Nullable __parentbundleidref_value; + partial void On_parentbundleidref_valueChanging(global::System.Nullable value); + partial void On_parentbundleidref_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property shipto_telephone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string shipto_telephone { get { - return this.__createdby_value; + return this._shipto_telephone; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.Onshipto_telephoneChanging(value); + this._shipto_telephone = value; + this.Onshipto_telephoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _shipto_telephone; + partial void Onshipto_telephoneChanging(string value); + partial void Onshipto_telephoneChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -625456,49 +625544,27 @@ public virtual string productdescription partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property shipto_addressid in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable shipto_addressid + public virtual global::System.Nullable importsequencenumber { get { - return this._shipto_addressid; + return this._importsequencenumber; } set { - this.Onshipto_addressidChanging(value); - this._shipto_addressid = value; - this.Onshipto_addressidChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _shipto_addressid; - partial void Onshipto_addressidChanging(global::System.Nullable value); - partial void Onshipto_addressidChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property shipto_postalcode in the schema. /// @@ -625566,27 +625632,71 @@ public virtual string shipto_stateorprovince partial void Onshipto_stateorprovinceChanging(string value); partial void Onshipto_stateorprovinceChanged(); /// - /// There are no comments for Property _salesrepid_value in the schema. + /// There are no comments for Property quantity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _salesrepid_value + public virtual global::System.Nullable quantity { get { - return this.__salesrepid_value; + return this._quantity; } set { - this.On_salesrepid_valueChanging(value); - this.__salesrepid_value = value; - this.On_salesrepid_valueChanged(); + this.OnquantityChanging(value); + this._quantity = value; + this.OnquantityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __salesrepid_value; - partial void On_salesrepid_valueChanging(global::System.Nullable value); - partial void On_salesrepid_valueChanged(); + private global::System.Nullable _quantity; + partial void OnquantityChanging(global::System.Nullable value); + partial void OnquantityChanged(); + /// + /// There are no comments for Property lineitemnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable lineitemnumber + { + get + { + return this._lineitemnumber; + } + set + { + this.OnlineitemnumberChanging(value); + this._lineitemnumber = value; + this.OnlineitemnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _lineitemnumber; + partial void OnlineitemnumberChanging(global::System.Nullable value); + partial void OnlineitemnumberChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -625610,27 +625720,49 @@ public virtual string shipto_stateorprovince partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property volumediscountamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable volumediscountamount_base { get { - return this._createdon; + return this._volumediscountamount_base; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.Onvolumediscountamount_baseChanging(value); + this._volumediscountamount_base = value; + this.Onvolumediscountamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _volumediscountamount_base; + partial void Onvolumediscountamount_baseChanging(global::System.Nullable value); + partial void Onvolumediscountamount_baseChanged(); + /// + /// There are no comments for Property shipto_country in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string shipto_country + { + get + { + return this._shipto_country; + } + set + { + this.Onshipto_countryChanging(value); + this._shipto_country = value; + this.Onshipto_countryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _shipto_country; + partial void Onshipto_countryChanging(string value); + partial void Onshipto_countryChanged(); /// /// There are no comments for Property isproductoverridden in the schema. /// @@ -625698,28 +625830,6 @@ public virtual string shipto_stateorprovince partial void On_uomid_valueChanging(global::System.Nullable value); partial void On_uomid_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// /// There are no comments for Property shipto_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -625742,28 +625852,6 @@ public virtual string shipto_line2 partial void Onshipto_line2Changing(string value); partial void Onshipto_line2Changed(); /// - /// There are no comments for Property priceperunit in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable priceperunit - { - get - { - return this._priceperunit; - } - set - { - this.OnpriceperunitChanging(value); - this._priceperunit = value; - this.OnpriceperunitChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _priceperunit; - partial void OnpriceperunitChanging(global::System.Nullable value); - partial void OnpriceperunitChanged(); - /// /// There are no comments for Property baseamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -625874,28 +625962,6 @@ public virtual string shipto_line1 partial void OnpricingerrorcodeChanging(global::System.Nullable value); partial void OnpricingerrorcodeChanged(); /// - /// There are no comments for Property quantity in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable quantity - { - get - { - return this._quantity; - } - set - { - this.OnquantityChanging(value); - this._quantity = value; - this.OnquantityChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quantity; - partial void OnquantityChanging(global::System.Nullable value); - partial void OnquantityChanged(); - /// /// There are no comments for Property shipto_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -625940,27 +626006,27 @@ public virtual string shipto_name partial void Onshipto_freighttermscodeChanging(global::System.Nullable value); partial void Onshipto_freighttermscodeChanged(); /// - /// There are no comments for Property productnumber in the schema. + /// There are no comments for Property skippricecalculation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string productnumber + public virtual global::System.Nullable skippricecalculation { get { - return this._productnumber; + return this._skippricecalculation; } set { - this.OnproductnumberChanging(value); - this._productnumber = value; - this.OnproductnumberChanged(); + this.OnskippricecalculationChanging(value); + this._skippricecalculation = value; + this.OnskippricecalculationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _productnumber; - partial void OnproductnumberChanging(string value); - partial void OnproductnumberChanged(); + private global::System.Nullable _skippricecalculation; + partial void OnskippricecalculationChanging(global::System.Nullable value); + partial void OnskippricecalculationChanged(); /// /// There are no comments for Property shipto_line3 in the schema. /// @@ -625984,27 +626050,27 @@ public virtual string shipto_line3 partial void Onshipto_line3Changing(string value); partial void Onshipto_line3Changed(); /// - /// There are no comments for Property skippricecalculation in the schema. + /// There are no comments for Property shipto_addressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable skippricecalculation + public virtual global::System.Nullable shipto_addressid { get { - return this._skippricecalculation; + return this._shipto_addressid; } set { - this.OnskippricecalculationChanging(value); - this._skippricecalculation = value; - this.OnskippricecalculationChanged(); + this.Onshipto_addressidChanging(value); + this._shipto_addressid = value; + this.Onshipto_addressidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _skippricecalculation; - partial void OnskippricecalculationChanging(global::System.Nullable value); - partial void OnskippricecalculationChanged(); + private global::System.Nullable _shipto_addressid; + partial void Onshipto_addressidChanging(global::System.Nullable value); + partial void Onshipto_addressidChanged(); /// /// There are no comments for Property parentbundleidref_quotedetail in the schema. /// @@ -627923,6 +627989,28 @@ public virtual string billto_composite partial void Onbillto_compositeChanging(string value); partial void Onbillto_compositeChanged(); /// + /// There are no comments for Property totalamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable totalamount + { + get + { + return this._totalamount; + } + set + { + this.OntotalamountChanging(value); + this._totalamount = value; + this.OntotalamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _totalamount; + partial void OntotalamountChanging(global::System.Nullable value); + partial void OntotalamountChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -628011,6 +628099,28 @@ public virtual string billto_composite partial void Ontotallineitemdiscountamount_baseChanging(global::System.Nullable value); partial void Ontotallineitemdiscountamount_baseChanged(); /// + /// There are no comments for Property shipto_freighttermscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable shipto_freighttermscode + { + get + { + return this._shipto_freighttermscode; + } + set + { + this.Onshipto_freighttermscodeChanging(value); + this._shipto_freighttermscode = value; + this.Onshipto_freighttermscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _shipto_freighttermscode; + partial void Onshipto_freighttermscodeChanging(global::System.Nullable value); + partial void Onshipto_freighttermscodeChanged(); + /// /// There are no comments for Property discountamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -628297,28 +628407,6 @@ public virtual string shipto_name partial void OnskippricecalculationChanging(global::System.Nullable value); partial void OnskippricecalculationChanged(); /// - /// There are no comments for Property totalamount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable totalamount - { - get - { - return this._totalamount; - } - set - { - this.OntotalamountChanging(value); - this._totalamount = value; - this.OntotalamountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totalamount; - partial void OntotalamountChanging(global::System.Nullable value); - partial void OntotalamountChanged(); - /// /// There are no comments for Property totaltax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -628341,6 +628429,28 @@ public virtual string shipto_name partial void OntotaltaxChanging(global::System.Nullable value); partial void OntotaltaxChanged(); /// + /// There are no comments for Property _contactid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _contactid_value + { + get + { + return this.__contactid_value; + } + set + { + this.On_contactid_valueChanging(value); + this.__contactid_value = value; + this.On_contactid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __contactid_value; + partial void On_contactid_valueChanging(global::System.Nullable value); + partial void On_contactid_valueChanged(); + /// /// There are no comments for Property freightamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -628385,49 +628495,27 @@ public virtual string shipto_name partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property _contactid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _contactid_value - { - get - { - return this.__contactid_value; - } - set - { - this.On_contactid_valueChanging(value); - this.__contactid_value = value; - this.On_contactid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __contactid_value; - partial void On_contactid_valueChanging(global::System.Nullable value); - partial void On_contactid_valueChanged(); - /// - /// There are no comments for Property freightamount_base in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable freightamount_base + public virtual string description { get { - return this._freightamount_base; + return this._description; } set { - this.Onfreightamount_baseChanging(value); - this._freightamount_base = value; - this.Onfreightamount_baseChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _freightamount_base; - partial void Onfreightamount_baseChanging(global::System.Nullable value); - partial void Onfreightamount_baseChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -628583,28 +628671,6 @@ public virtual string shipto_line1 partial void Onshipto_line1Changing(string value); partial void Onshipto_line1Changed(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property billto_telephone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -628627,27 +628693,27 @@ public virtual string billto_telephone partial void Onbillto_telephoneChanging(string value); partial void Onbillto_telephoneChanged(); /// - /// There are no comments for Property shipto_city in the schema. + /// There are no comments for Property effectivefrom in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_city + public virtual global::System.Nullable effectivefrom { get { - return this._shipto_city; + return this._effectivefrom; } set { - this.Onshipto_cityChanging(value); - this._shipto_city = value; - this.Onshipto_cityChanged(); + this.OneffectivefromChanging(value); + this._effectivefrom = value; + this.OneffectivefromChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_city; - partial void Onshipto_cityChanging(string value); - partial void Onshipto_cityChanged(); + private global::System.Nullable _effectivefrom; + partial void OneffectivefromChanging(global::System.Nullable value); + partial void OneffectivefromChanged(); /// /// There are no comments for Property billto_name in the schema. /// @@ -628715,93 +628781,93 @@ public virtual string billto_name partial void OnwillcallChanging(global::System.Nullable value); partial void OnwillcallChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable overriddencreatedon { get { - return this._description; + return this._overriddencreatedon; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable _createdby_value { get { - return this._overriddencreatedon; + return this.__createdby_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property paymenttermscode in the schema. + /// There are no comments for Property freightamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable paymenttermscode + public virtual global::System.Nullable freightamount_base { get { - return this._paymenttermscode; + return this._freightamount_base; } set { - this.OnpaymenttermscodeChanging(value); - this._paymenttermscode = value; - this.OnpaymenttermscodeChanged(); + this.Onfreightamount_baseChanging(value); + this._freightamount_base = value; + this.Onfreightamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _paymenttermscode; - partial void OnpaymenttermscodeChanging(global::System.Nullable value); - partial void OnpaymenttermscodeChanged(); + private global::System.Nullable _freightamount_base; + partial void Onfreightamount_baseChanging(global::System.Nullable value); + partial void Onfreightamount_baseChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__createdby_value; + return this.__createdonbehalfby_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property processid in the schema. /// @@ -629067,27 +629133,27 @@ public virtual string billto_stateorprovince partial void OnstageidChanging(global::System.Nullable value); partial void OnstageidChanged(); /// - /// There are no comments for Property shipto_freighttermscode in the schema. + /// There are no comments for Property paymenttermscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable shipto_freighttermscode + public virtual global::System.Nullable paymenttermscode { get { - return this._shipto_freighttermscode; + return this._paymenttermscode; } set { - this.Onshipto_freighttermscodeChanging(value); - this._shipto_freighttermscode = value; - this.Onshipto_freighttermscodeChanged(); + this.OnpaymenttermscodeChanging(value); + this._paymenttermscode = value; + this.OnpaymenttermscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _shipto_freighttermscode; - partial void Onshipto_freighttermscodeChanging(global::System.Nullable value); - partial void Onshipto_freighttermscodeChanged(); + private global::System.Nullable _paymenttermscode; + partial void OnpaymenttermscodeChanging(global::System.Nullable value); + partial void OnpaymenttermscodeChanged(); /// /// There are no comments for Property discountamount in the schema. /// @@ -629177,27 +629243,27 @@ public virtual string billto_line2 partial void Onbillto_line2Changing(string value); partial void Onbillto_line2Changed(); /// - /// There are no comments for Property effectivefrom in the schema. + /// There are no comments for Property shipto_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable effectivefrom + public virtual string shipto_city { get { - return this._effectivefrom; + return this._shipto_city; } set { - this.OneffectivefromChanging(value); - this._effectivefrom = value; - this.OneffectivefromChanged(); + this.Onshipto_cityChanging(value); + this._shipto_city = value; + this.Onshipto_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _effectivefrom; - partial void OneffectivefromChanging(global::System.Nullable value); - partial void OneffectivefromChanged(); + private string _shipto_city; + partial void Onshipto_cityChanging(string value); + partial void Onshipto_cityChanged(); /// /// There are no comments for Property _opportunityid_value in the schema. /// @@ -631439,6 +631505,28 @@ public static ratingmodel Createratingmodel(global::EMBC.ESS.Utilities.Dynamics. partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -631571,27 +631659,27 @@ public static ratingmodel Createratingmodel(global::EMBC.ESS.Utilities.Dynamics. partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _modifiedby_value { get { - return this._name; + return this.__modifiedby_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -631637,28 +631725,6 @@ public virtual string name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property ratingmodelid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -632817,71 +632883,93 @@ public static ratingvalue Createratingvalue(global::EMBC.ESS.Utilities.Dynamics. return ratingvalue; } /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property _ratingmodel_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable _ratingmodel_value { get { - return this.__transactioncurrencyid_value; + return this.__ratingmodel_value; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.On_ratingmodel_valueChanging(value); + this.__ratingmodel_value = value; + this.On_ratingmodel_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable __ratingmodel_value; + partial void On_ratingmodel_valueChanging(global::System.Nullable value); + partial void On_ratingmodel_valueChanged(); /// - /// There are no comments for Property ratingvalueid in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ratingvalueid + public virtual global::System.Nullable statuscode { get { - return this._ratingvalueid; + return this._statuscode; } set { - this.OnratingvalueidChanging(value); - this._ratingvalueid = value; - this.OnratingvalueidChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ratingvalueid; - partial void OnratingvalueidChanging(global::System.Nullable value); - partial void OnratingvalueidChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable statecode { get { - return this._importsequencenumber; + return this._statecode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); + /// + /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _transactioncurrencyid_value + { + get + { + return this.__transactioncurrencyid_value; + } + set + { + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -632949,28 +633037,6 @@ public static ratingvalue Createratingvalue(global::EMBC.ESS.Utilities.Dynamics. partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -632993,27 +633059,27 @@ public static ratingvalue Createratingvalue(global::EMBC.ESS.Utilities.Dynamics. partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _owninguser_value { get { - return this.__modifiedonbehalfby_value; + return this.__owninguser_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property name in the schema. /// @@ -633037,27 +633103,27 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__owninguser_value; + return this.__ownerid_value; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -633081,27 +633147,27 @@ public virtual string name partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property ratingvalueid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable ratingvalueid { get { - return this.__ownerid_value; + return this._ratingvalueid; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnratingvalueidChanging(value); + this._ratingvalueid = value; + this.OnratingvalueidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _ratingvalueid; + partial void OnratingvalueidChanging(global::System.Nullable value); + partial void OnratingvalueidChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -633125,71 +633191,71 @@ public virtual string name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _ratingmodel_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ratingmodel_value + public virtual global::System.Nullable createdon { get { - return this.__ratingmodel_value; + return this._createdon; } set { - this.On_ratingmodel_valueChanging(value); - this.__ratingmodel_value = value; - this.On_ratingmodel_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ratingmodel_value; - partial void On_ratingmodel_valueChanging(global::System.Nullable value); - partial void On_ratingmodel_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _createdby_value { get { - return this._statecode; + return this.__createdby_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__createdby_value; + return this.__modifiedonbehalfby_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -633213,6 +633279,28 @@ public virtual string name partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -633257,49 +633345,27 @@ public virtual string name partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable importsequencenumber { get { - return this._createdon; + return this._importsequencenumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -633983,50 +634049,6 @@ public static recommendeddocument Createrecommendeddocument(global::EMBC.ESS.Uti partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property author in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string author - { - get - { - return this._author; - } - set - { - this.OnauthorChanging(value); - this._author = value; - this.OnauthorChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _author; - partial void OnauthorChanging(string value); - partial void OnauthorChanged(); - /// - /// There are no comments for Property filetype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string filetype - { - get - { - return this._filetype; - } - set - { - this.OnfiletypeChanging(value); - this._filetype = value; - this.OnfiletypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _filetype; - partial void OnfiletypeChanging(string value); - partial void OnfiletypeChanged(); - /// /// There are no comments for Property editurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -634071,28 +634093,6 @@ public virtual string editurl partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property title in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string title - { - get - { - return this._title; - } - set - { - this.OntitleChanging(value); - this._title = value; - this.OntitleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _title; - partial void OntitleChanging(string value); - partial void OntitleChanged(); - /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -634115,27 +634115,27 @@ public virtual string title partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property source in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string source + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._source; + return this._utcconversiontimezonecode; } set { - this.OnsourceChanging(value); - this._source = value; - this.OnsourceChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _source; - partial void OnsourceChanging(string value); - partial void OnsourceChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property externaldocumentid in the schema. /// @@ -634159,27 +634159,49 @@ public virtual string externaldocumentid partial void OnexternaldocumentidChanging(string value); partial void OnexternaldocumentidChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property readurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string readurl { get { - return this._timezoneruleversionnumber; + return this._readurl; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnreadurlChanging(value); + this._readurl = value; + this.OnreadurlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _readurl; + partial void OnreadurlChanging(string value); + partial void OnreadurlChanged(); + /// + /// There are no comments for Property fullname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string fullname + { + get + { + return this._fullname; + } + set + { + this.OnfullnameChanging(value); + this._fullname = value; + this.OnfullnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _fullname; + partial void OnfullnameChanging(string value); + partial void OnfullnameChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -634269,49 +634291,49 @@ public virtual string externalmodifiedby partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property readurl in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string readurl + public virtual global::System.Nullable _createdby_value { get { - return this._readurl; + return this.__createdby_value; } set { - this.OnreadurlChanging(value); - this._readurl = value; - this.OnreadurlChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _readurl; - partial void OnreadurlChanging(string value); - partial void OnreadurlChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property location in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string location + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._location; + return this._timezoneruleversionnumber; } set { - this.OnlocationChanging(value); - this._location = value; - this.OnlocationChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _location; - partial void OnlocationChanging(string value); - partial void OnlocationChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -634379,203 +634401,27 @@ public virtual string version partial void OnversionChanging(string value); partial void OnversionChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// - /// There are no comments for Property fullname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string fullname - { - get - { - return this._fullname; - } - set - { - this.OnfullnameChanging(value); - this._fullname = value; - this.OnfullnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _fullname; - partial void OnfullnameChanging(string value); - partial void OnfullnameChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property filesize in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable filesize - { - get - { - return this._filesize; - } - set - { - this.OnfilesizeChanging(value); - this._filesize = value; - this.OnfilesizeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _filesize; - partial void OnfilesizeChanging(global::System.Nullable value); - partial void OnfilesizeChanged(); - /// - /// There are no comments for Property absoluteurl in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string absoluteurl - { - get - { - return this._absoluteurl; - } - set - { - this.OnabsoluteurlChanging(value); - this._absoluteurl = value; - this.OnabsoluteurlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _absoluteurl; - partial void OnabsoluteurlChanging(string value); - partial void OnabsoluteurlChanged(); - /// - /// There are no comments for Property contenttype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string contenttype - { - get - { - return this._contenttype; - } - set - { - this.OncontenttypeChanging(value); - this._contenttype = value; - this.OncontenttypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _contenttype; - partial void OncontenttypeChanging(string value); - partial void OncontenttypeChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property recommendeddocumentid in the schema. + /// There are no comments for Property author in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable recommendeddocumentid + public virtual string author { get { - return this._recommendeddocumentid; + return this._author; } set { - this.OnrecommendeddocumentidChanging(value); - this._recommendeddocumentid = value; - this.OnrecommendeddocumentidChanged(); + this.OnauthorChanging(value); + this._author = value; + this.OnauthorChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _recommendeddocumentid; - partial void OnrecommendeddocumentidChanging(global::System.Nullable value); - partial void OnrecommendeddocumentidChanged(); + private string _author; + partial void OnauthorChanging(string value); + partial void OnauthorChanged(); /// /// There are no comments for Property _regardingobjectid_value in the schema. /// @@ -634599,6 +634445,182 @@ public virtual string contenttype partial void On_regardingobjectid_valueChanging(global::System.Nullable value); partial void On_regardingobjectid_valueChanged(); /// + /// There are no comments for Property recommendeddocumentid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable recommendeddocumentid + { + get + { + return this._recommendeddocumentid; + } + set + { + this.OnrecommendeddocumentidChanging(value); + this._recommendeddocumentid = value; + this.OnrecommendeddocumentidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _recommendeddocumentid; + partial void OnrecommendeddocumentidChanging(global::System.Nullable value); + partial void OnrecommendeddocumentidChanged(); + /// + /// There are no comments for Property filetype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string filetype + { + get + { + return this._filetype; + } + set + { + this.OnfiletypeChanging(value); + this._filetype = value; + this.OnfiletypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _filetype; + partial void OnfiletypeChanging(string value); + partial void OnfiletypeChanged(); + /// + /// There are no comments for Property filesize in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable filesize + { + get + { + return this._filesize; + } + set + { + this.OnfilesizeChanging(value); + this._filesize = value; + this.OnfilesizeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _filesize; + partial void OnfilesizeChanging(global::System.Nullable value); + partial void OnfilesizeChanged(); + /// + /// There are no comments for Property source in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string source + { + get + { + return this._source; + } + set + { + this.OnsourceChanging(value); + this._source = value; + this.OnsourceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _source; + partial void OnsourceChanging(string value); + partial void OnsourceChanged(); + /// + /// There are no comments for Property contenttype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string contenttype + { + get + { + return this._contenttype; + } + set + { + this.OncontenttypeChanging(value); + this._contenttype = value; + this.OncontenttypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _contenttype; + partial void OncontenttypeChanging(string value); + partial void OncontenttypeChanged(); + /// + /// There are no comments for Property title in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string title + { + get + { + return this._title; + } + set + { + this.OntitleChanging(value); + this._title = value; + this.OntitleChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _title; + partial void OntitleChanging(string value); + partial void OntitleChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property location in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string location + { + get + { + return this._location; + } + set + { + this.OnlocationChanging(value); + this._location = value; + this.OnlocationChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _location; + partial void OnlocationChanging(string value); + partial void OnlocationChanged(); + /// /// There are no comments for Property associatedrecordname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -634621,6 +634643,50 @@ public virtual string associatedrecordname partial void OnassociatedrecordnameChanging(string value); partial void OnassociatedrecordnameChanged(); /// + /// There are no comments for Property absoluteurl in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string absoluteurl + { + get + { + return this._absoluteurl; + } + set + { + this.OnabsoluteurlChanging(value); + this._absoluteurl = value; + this.OnabsoluteurlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _absoluteurl; + partial void OnabsoluteurlChanging(string value); + partial void OnabsoluteurlChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property createdbyname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -635414,27 +635480,27 @@ public static recurrencerule Createrecurrencerule(global::EMBC.ESS.Utilities.Dyn partial void OnisregenerateChanging(global::System.Nullable value); partial void OnisregenerateChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property isweekdaypattern in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable isweekdaypattern { get { - return this._modifiedon; + return this._isweekdaypattern; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnisweekdaypatternChanging(value); + this._isweekdaypattern = value; + this.OnisweekdaypatternChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _isweekdaypattern; + partial void OnisweekdaypatternChanging(global::System.Nullable value); + partial void OnisweekdaypatternChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -635612,49 +635678,49 @@ public static recurrencerule Createrecurrencerule(global::EMBC.ESS.Utilities.Dyn partial void OnpatternstartdateChanging(global::System.Nullable value); partial void OnpatternstartdateChanged(); /// - /// There are no comments for Property isweekdaypattern in the schema. + /// There are no comments for Property firstdayofweek in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isweekdaypattern + public virtual global::System.Nullable firstdayofweek { get { - return this._isweekdaypattern; + return this._firstdayofweek; } set { - this.OnisweekdaypatternChanging(value); - this._isweekdaypattern = value; - this.OnisweekdaypatternChanged(); + this.OnfirstdayofweekChanging(value); + this._firstdayofweek = value; + this.OnfirstdayofweekChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isweekdaypattern; - partial void OnisweekdaypatternChanging(global::System.Nullable value); - partial void OnisweekdaypatternChanged(); + private global::System.Nullable _firstdayofweek; + partial void OnfirstdayofweekChanging(global::System.Nullable value); + partial void OnfirstdayofweekChanged(); /// - /// There are no comments for Property firstdayofweek in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable firstdayofweek + public virtual global::System.Nullable modifiedon { get { - return this._firstdayofweek; + return this._modifiedon; } set { - this.OnfirstdayofweekChanging(value); - this._firstdayofweek = value; - this.OnfirstdayofweekChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _firstdayofweek; - partial void OnfirstdayofweekChanging(global::System.Nullable value); - partial void OnfirstdayofweekChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property recurrencepatterntype in the schema. /// @@ -639112,28 +639178,6 @@ public static recurringappointmentmaster Createrecurringappointmentmaster(global return recurringappointmentmaster; } /// - /// There are no comments for Property dayofmonth in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable dayofmonth - { - get - { - return this._dayofmonth; - } - set - { - this.OndayofmonthChanging(value); - this._dayofmonth = value; - this.OndayofmonthChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _dayofmonth; - partial void OndayofmonthChanging(global::System.Nullable value); - partial void OndayofmonthChanged(); - /// /// There are no comments for Property patternendtype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -639156,28 +639200,6 @@ public static recurringappointmentmaster Createrecurringappointmentmaster(global partial void OnpatternendtypeChanging(global::System.Nullable value); partial void OnpatternendtypeChanged(); /// - /// There are no comments for Property isalldayevent in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isalldayevent - { - get - { - return this._isalldayevent; - } - set - { - this.OnisalldayeventChanging(value); - this._isalldayevent = value; - this.OnisalldayeventChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isalldayevent; - partial void OnisalldayeventChanging(global::System.Nullable value); - partial void OnisalldayeventChanged(); - /// /// There are no comments for Property outlookownerapptid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -639310,27 +639332,49 @@ public virtual string location partial void On_ruleid_valueChanging(global::System.Nullable value); partial void On_ruleid_valueChanged(); /// - /// There are no comments for Property category in the schema. + /// There are no comments for Property daysofweekmask in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string category + public virtual global::System.Nullable daysofweekmask { get { - return this._category; + return this._daysofweekmask; } set { - this.OncategoryChanging(value); - this._category = value; - this.OncategoryChanged(); + this.OndaysofweekmaskChanging(value); + this._daysofweekmask = value; + this.OndaysofweekmaskChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _category; - partial void OncategoryChanging(string value); - partial void OncategoryChanged(); + private global::System.Nullable _daysofweekmask; + partial void OndaysofweekmaskChanging(global::System.Nullable value); + partial void OndaysofweekmaskChanged(); + /// + /// There are no comments for Property effectiveenddate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable effectiveenddate + { + get + { + return this._effectiveenddate; + } + set + { + this.OneffectiveenddateChanging(value); + this._effectiveenddate = value; + this.OneffectiveenddateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _effectiveenddate; + partial void OneffectiveenddateChanging(global::System.Nullable value); + partial void OneffectiveenddateChanged(); /// /// There are no comments for Property patternstartdate in the schema. /// @@ -639398,93 +639442,49 @@ public virtual string category partial void OnstarttimeChanging(global::System.Nullable value); partial void OnstarttimeChanged(); /// - /// There are no comments for Property effectiveenddate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable effectiveenddate - { - get - { - return this._effectiveenddate; - } - set - { - this.OneffectiveenddateChanging(value); - this._effectiveenddate = value; - this.OneffectiveenddateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _effectiveenddate; - partial void OneffectiveenddateChanging(global::System.Nullable value); - partial void OneffectiveenddateChanged(); - /// - /// There are no comments for Property isnthmonthly in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isnthmonthly - { - get - { - return this._isnthmonthly; - } - set - { - this.OnisnthmonthlyChanging(value); - this._isnthmonthly = value; - this.OnisnthmonthlyChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isnthmonthly; - partial void OnisnthmonthlyChanging(global::System.Nullable value); - partial void OnisnthmonthlyChanged(); - /// - /// There are no comments for Property _groupid_value in the schema. + /// There are no comments for Property subcategory in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _groupid_value + public virtual string subcategory { get { - return this.__groupid_value; + return this._subcategory; } set { - this.On_groupid_valueChanging(value); - this.__groupid_value = value; - this.On_groupid_valueChanged(); + this.OnsubcategoryChanging(value); + this._subcategory = value; + this.OnsubcategoryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __groupid_value; - partial void On_groupid_valueChanging(global::System.Nullable value); - partial void On_groupid_valueChanged(); + private string _subcategory; + partial void OnsubcategoryChanging(string value); + partial void OnsubcategoryChanged(); /// - /// There are no comments for Property seriesstatus in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable seriesstatus + public virtual global::System.Nullable importsequencenumber { get { - return this._seriesstatus; + return this._importsequencenumber; } set { - this.OnseriesstatusChanging(value); - this._seriesstatus = value; - this.OnseriesstatusChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _seriesstatus; - partial void OnseriesstatusChanging(global::System.Nullable value); - partial void OnseriesstatusChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property isregenerate in the schema. /// @@ -639574,27 +639574,27 @@ public virtual string category partial void OndurationChanging(global::System.Nullable value); partial void OndurationChanged(); /// - /// There are no comments for Property isunsafe in the schema. + /// There are no comments for Property _groupid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isunsafe + public virtual global::System.Nullable _groupid_value { get { - return this._isunsafe; + return this.__groupid_value; } set { - this.OnisunsafeChanging(value); - this._isunsafe = value; - this.OnisunsafeChanged(); + this.On_groupid_valueChanging(value); + this.__groupid_value = value; + this.On_groupid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isunsafe; - partial void OnisunsafeChanging(global::System.Nullable value); - partial void OnisunsafeChanged(); + private global::System.Nullable __groupid_value; + partial void On_groupid_valueChanging(global::System.Nullable value); + partial void On_groupid_valueChanged(); /// /// There are no comments for Property isnthyearly in the schema. /// @@ -639640,6 +639640,138 @@ public virtual string globalobjectid partial void OnglobalobjectidChanging(string value); partial void OnglobalobjectidChanged(); /// + /// There are no comments for Property seriesstatus in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable seriesstatus + { + get + { + return this._seriesstatus; + } + set + { + this.OnseriesstatusChanging(value); + this._seriesstatus = value; + this.OnseriesstatusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _seriesstatus; + partial void OnseriesstatusChanging(global::System.Nullable value); + partial void OnseriesstatusChanged(); + /// + /// There are no comments for Property category in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string category + { + get + { + return this._category; + } + set + { + this.OncategoryChanging(value); + this._category = value; + this.OncategoryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _category; + partial void OncategoryChanging(string value); + partial void OncategoryChanged(); + /// + /// There are no comments for Property isunsafe in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isunsafe + { + get + { + return this._isunsafe; + } + set + { + this.OnisunsafeChanging(value); + this._isunsafe = value; + this.OnisunsafeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isunsafe; + partial void OnisunsafeChanging(global::System.Nullable value); + partial void OnisunsafeChanged(); + /// + /// There are no comments for Property recurrencepatterntype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable recurrencepatterntype + { + get + { + return this._recurrencepatterntype; + } + set + { + this.OnrecurrencepatterntypeChanging(value); + this._recurrencepatterntype = value; + this.OnrecurrencepatterntypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _recurrencepatterntype; + partial void OnrecurrencepatterntypeChanging(global::System.Nullable value); + partial void OnrecurrencepatterntypeChanged(); + /// + /// There are no comments for Property dayofmonth in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable dayofmonth + { + get + { + return this._dayofmonth; + } + set + { + this.OndayofmonthChanging(value); + this._dayofmonth = value; + this.OndayofmonthChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _dayofmonth; + partial void OndayofmonthChanging(global::System.Nullable value); + partial void OndayofmonthChanged(); + /// + /// There are no comments for Property endtime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable endtime + { + get + { + return this._endtime; + } + set + { + this.OnendtimeChanging(value); + this._endtime = value; + this.OnendtimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _endtime; + partial void OnendtimeChanging(global::System.Nullable value); + partial void OnendtimeChanged(); + /// /// There are no comments for Property occurrences in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -639662,50 +639794,6 @@ public virtual string globalobjectid partial void OnoccurrencesChanging(global::System.Nullable value); partial void OnoccurrencesChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// - /// There are no comments for Property daysofweekmask in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable daysofweekmask - { - get - { - return this._daysofweekmask; - } - set - { - this.OndaysofweekmaskChanging(value); - this._daysofweekmask = value; - this.OndaysofweekmaskChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _daysofweekmask; - partial void OndaysofweekmaskChanging(global::System.Nullable value); - partial void OndaysofweekmaskChanged(); - /// /// There are no comments for Property deletedexceptionslist in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -639728,93 +639816,49 @@ public virtual string deletedexceptionslist partial void OndeletedexceptionslistChanging(string value); partial void OndeletedexceptionslistChanged(); /// - /// There are no comments for Property subcategory in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string subcategory - { - get - { - return this._subcategory; - } - set - { - this.OnsubcategoryChanging(value); - this._subcategory = value; - this.OnsubcategoryChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _subcategory; - partial void OnsubcategoryChanging(string value); - partial void OnsubcategoryChanged(); - /// - /// There are no comments for Property recurrencepatterntype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable recurrencepatterntype - { - get - { - return this._recurrencepatterntype; - } - set - { - this.OnrecurrencepatterntypeChanging(value); - this._recurrencepatterntype = value; - this.OnrecurrencepatterntypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _recurrencepatterntype; - partial void OnrecurrencepatterntypeChanging(global::System.Nullable value); - partial void OnrecurrencepatterntypeChanged(); - /// - /// There are no comments for Property endtime in the schema. + /// There are no comments for Property firstdayofweek in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable endtime + public virtual global::System.Nullable firstdayofweek { get { - return this._endtime; + return this._firstdayofweek; } set { - this.OnendtimeChanging(value); - this._endtime = value; - this.OnendtimeChanged(); + this.OnfirstdayofweekChanging(value); + this._firstdayofweek = value; + this.OnfirstdayofweekChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _endtime; - partial void OnendtimeChanging(global::System.Nullable value); - partial void OnendtimeChanged(); + private global::System.Nullable _firstdayofweek; + partial void OnfirstdayofweekChanging(global::System.Nullable value); + partial void OnfirstdayofweekChanged(); /// - /// There are no comments for Property firstdayofweek in the schema. + /// There are no comments for Property isnthmonthly in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable firstdayofweek + public virtual global::System.Nullable isnthmonthly { get { - return this._firstdayofweek; + return this._isnthmonthly; } set { - this.OnfirstdayofweekChanging(value); - this._firstdayofweek = value; - this.OnfirstdayofweekChanged(); + this.OnisnthmonthlyChanging(value); + this._isnthmonthly = value; + this.OnisnthmonthlyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _firstdayofweek; - partial void OnfirstdayofweekChanging(global::System.Nullable value); - partial void OnfirstdayofweekChanged(); + private global::System.Nullable _isnthmonthly; + partial void OnisnthmonthlyChanging(global::System.Nullable value); + partial void OnisnthmonthlyChanged(); /// /// There are no comments for Property interval in the schema. /// @@ -639904,6 +639948,28 @@ public virtual string subcategory partial void OnexpansionstatecodeChanging(global::System.Nullable value); partial void OnexpansionstatecodeChanged(); /// + /// There are no comments for Property isalldayevent in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isalldayevent + { + get + { + return this._isalldayevent; + } + set + { + this.OnisalldayeventChanging(value); + this._isalldayevent = value; + this.OnisalldayeventChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isalldayevent; + partial void OnisalldayeventChanging(global::System.Nullable value); + partial void OnisalldayeventChanged(); + /// /// There are no comments for Property instance in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -641901,27 +641967,27 @@ public partial class relationship : crmbaseentity partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property relationshipid in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable relationshipid + public virtual global::System.Nullable versionnumber { get { - return this._relationshipid; + return this._versionnumber; } set { - this.OnrelationshipidChanging(value); - this._relationshipid = value; - this.OnrelationshipidChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _relationshipid; - partial void OnrelationshipidChanging(global::System.Nullable value); - partial void OnrelationshipidChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property solutionid in the schema. /// @@ -641989,27 +642055,27 @@ public partial class relationship : crmbaseentity partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property relationshipid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable relationshipid { get { - return this._versionnumber; + return this._relationshipid; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnrelationshipidChanging(value); + this._relationshipid = value; + this.OnrelationshipidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _relationshipid; + partial void OnrelationshipidChanging(global::System.Nullable value); + partial void OnrelationshipidChanged(); /// /// There are no comments for Property name in the schema. /// @@ -642461,6 +642527,28 @@ public static reportcategory Createreportcategory(global::EMBC.ESS.Utilities.Dyn partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// + /// There are no comments for Property owninguser in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable owninguser + { + get + { + return this._owninguser; + } + set + { + this.OnowninguserChanging(value); + this._owninguser = value; + this.OnowninguserChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _owninguser; + partial void OnowninguserChanging(global::System.Nullable value); + partial void OnowninguserChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -642593,6 +642681,28 @@ public static reportcategory Createreportcategory(global::EMBC.ESS.Utilities.Dyn partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// + /// There are no comments for Property categorycode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable categorycode + { + get + { + return this._categorycode; + } + set + { + this.OncategorycodeChanging(value); + this._categorycode = value; + this.OncategorycodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _categorycode; + partial void OncategorycodeChanging(global::System.Nullable value); + partial void OncategorycodeChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -642791,50 +642901,6 @@ public static reportcategory Createreportcategory(global::EMBC.ESS.Utilities.Dyn partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property owninguser in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable owninguser - { - get - { - return this._owninguser; - } - set - { - this.OnowninguserChanging(value); - this._owninguser = value; - this.OnowninguserChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _owninguser; - partial void OnowninguserChanging(global::System.Nullable value); - partial void OnowninguserChanged(); - /// - /// There are no comments for Property categorycode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable categorycode - { - get - { - return this._categorycode; - } - set - { - this.OncategorycodeChanging(value); - this._categorycode = value; - this.OncategorycodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _categorycode; - partial void OncategorycodeChanging(global::System.Nullable value); - partial void OncategorycodeChanged(); - /// /// There are no comments for Property reportid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -643382,6 +643448,50 @@ public static report Createreport(global::EMBC.ESS.Utilities.Dynamics.Microsoft. partial void OnisscheduledreportChanging(global::System.Nullable value); partial void OnisscheduledreportChanged(); /// + /// There are no comments for Property signaturemajorversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable signaturemajorversion + { + get + { + return this._signaturemajorversion; + } + set + { + this.OnsignaturemajorversionChanging(value); + this._signaturemajorversion = value; + this.OnsignaturemajorversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _signaturemajorversion; + partial void OnsignaturemajorversionChanging(global::System.Nullable value); + partial void OnsignaturemajorversionChanged(); + /// + /// There are no comments for Property reportidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable reportidunique + { + get + { + return this._reportidunique; + } + set + { + this.OnreportiduniqueChanging(value); + this._reportidunique = value; + this.OnreportiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _reportidunique; + partial void OnreportiduniqueChanging(global::System.Nullable value); + partial void OnreportiduniqueChanged(); + /// /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -643514,28 +643624,6 @@ public virtual string reportnameonsrs partial void OnsignaturelcidChanging(global::System.Nullable value); partial void OnsignaturelcidChanged(); /// - /// There are no comments for Property queryinfo in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string queryinfo - { - get - { - return this._queryinfo; - } - set - { - this.OnqueryinfoChanging(value); - this._queryinfo = value; - this.OnqueryinfoChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _queryinfo; - partial void OnqueryinfoChanging(string value); - partial void OnqueryinfoChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -643580,93 +643668,49 @@ public virtual string queryinfo partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property bodytext in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string bodytext - { - get - { - return this._bodytext; - } - set - { - this.OnbodytextChanging(value); - this._bodytext = value; - this.OnbodytextChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _bodytext; - partial void OnbodytextChanging(string value); - partial void OnbodytextChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property signaturedate in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable signaturedate + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this._signaturedate; + return this._iscustomizable; } set { - this.OnsignaturedateChanging(value); - this._signaturedate = value; - this.OnsignaturedateChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _signaturedate; - partial void OnsignaturedateChanging(global::System.Nullable value); - partial void OnsignaturedateChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property ispersonal in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable ispersonal { get { - return this._iscustomizable; + return this._ispersonal; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.OnispersonalChanging(value); + this._ispersonal = value; + this.OnispersonalChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable _ispersonal; + partial void OnispersonalChanging(global::System.Nullable value); + partial void OnispersonalChanged(); /// /// There are no comments for Property customreportxml in the schema. /// @@ -643976,138 +644020,6 @@ public virtual string defaultfilter partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property ispersonal in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ispersonal - { - get - { - return this._ispersonal; - } - set - { - this.OnispersonalChanging(value); - this._ispersonal = value; - this.OnispersonalChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ispersonal; - partial void OnispersonalChanging(global::System.Nullable value); - partial void OnispersonalChanged(); - /// - /// There are no comments for Property _parentreportid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _parentreportid_value - { - get - { - return this.__parentreportid_value; - } - set - { - this.On_parentreportid_valueChanging(value); - this.__parentreportid_value = value; - this.On_parentreportid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentreportid_value; - partial void On_parentreportid_valueChanging(global::System.Nullable value); - partial void On_parentreportid_valueChanged(); - /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// - /// There are no comments for Property rdlhash in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable rdlhash - { - get - { - return this._rdlhash; - } - set - { - this.OnrdlhashChanging(value); - this._rdlhash = value; - this.OnrdlhashChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _rdlhash; - partial void OnrdlhashChanging(global::System.Nullable value); - partial void OnrdlhashChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property originalbodytext in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -644130,6 +644042,182 @@ public virtual string originalbodytext partial void OnoriginalbodytextChanging(string value); partial void OnoriginalbodytextChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property filesize in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable filesize + { + get + { + return this._filesize; + } + set + { + this.OnfilesizeChanging(value); + this._filesize = value; + this.OnfilesizeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _filesize; + partial void OnfilesizeChanging(global::System.Nullable value); + partial void OnfilesizeChanged(); + /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property rdlhash in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable rdlhash + { + get + { + return this._rdlhash; + } + set + { + this.OnrdlhashChanging(value); + this._rdlhash = value; + this.OnrdlhashChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _rdlhash; + partial void OnrdlhashChanging(global::System.Nullable value); + partial void OnrdlhashChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property signaturedate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable signaturedate + { + get + { + return this._signaturedate; + } + set + { + this.OnsignaturedateChanging(value); + this._signaturedate = value; + this.OnsignaturedateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _signaturedate; + partial void OnsignaturedateChanging(global::System.Nullable value); + partial void OnsignaturedateChanged(); + /// + /// There are no comments for Property queryinfo in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string queryinfo + { + get + { + return this._queryinfo; + } + set + { + this.OnqueryinfoChanging(value); + this._queryinfo = value; + this.OnqueryinfoChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _queryinfo; + partial void OnqueryinfoChanging(string value); + partial void OnqueryinfoChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -644174,27 +644262,27 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// - /// There are no comments for Property reportidunique in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable reportidunique + public virtual string name { get { - return this._reportidunique; + return this._name; } set { - this.OnreportiduniqueChanging(value); - this._reportidunique = value; - this.OnreportiduniqueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _reportidunique; - partial void OnreportiduniqueChanging(global::System.Nullable value); - partial void OnreportiduniqueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -644218,28 +644306,6 @@ public virtual string introducedversion partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property filesize in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable filesize - { - get - { - return this._filesize; - } - set - { - this.OnfilesizeChanging(value); - this._filesize = value; - this.OnfilesizeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _filesize; - partial void OnfilesizeChanging(global::System.Nullable value); - partial void OnfilesizeChanged(); - /// /// There are no comments for Property bodybinary in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -644350,27 +644416,27 @@ public virtual byte[] bodybinary_binary partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property signaturemajorversion in the schema. + /// There are no comments for Property _parentreportid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable signaturemajorversion + public virtual global::System.Nullable _parentreportid_value { get { - return this._signaturemajorversion; + return this.__parentreportid_value; } set { - this.OnsignaturemajorversionChanging(value); - this._signaturemajorversion = value; - this.OnsignaturemajorversionChanged(); + this.On_parentreportid_valueChanging(value); + this.__parentreportid_value = value; + this.On_parentreportid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _signaturemajorversion; - partial void OnsignaturemajorversionChanging(global::System.Nullable value); - partial void OnsignaturemajorversionChanged(); + private global::System.Nullable __parentreportid_value; + partial void On_parentreportid_valueChanging(global::System.Nullable value); + partial void On_parentreportid_valueChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -644416,27 +644482,27 @@ public virtual byte[] bodybinary_binary partial void OncreatedinmajorversionChanging(global::System.Nullable value); partial void OncreatedinmajorversionChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property bodytext in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual string bodytext { get { - return this._name; + return this._bodytext; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnbodytextChanging(value); + this._bodytext = value; + this.OnbodytextChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private string _bodytext; + partial void OnbodytextChanging(string value); + partial void OnbodytextChanged(); /// /// There are no comments for Property Report_AsyncOperations in the schema. /// @@ -645147,27 +645213,27 @@ public static resourcegroup Createresourcegroup(global::EMBC.ESS.Utilities.Dynam return resourcegroup; } /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property objecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string objecttypecode { get { - return this._importsequencenumber; + return this._objecttypecode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnobjecttypecodeChanging(value); + this._objecttypecode = value; + this.OnobjecttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _objecttypecode; + partial void OnobjecttypecodeChanging(string value); + partial void OnobjecttypecodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -645191,27 +645257,27 @@ public static resourcegroup Createresourcegroup(global::EMBC.ESS.Utilities.Dynam partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property objecttypecode in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string objecttypecode + public virtual string name { get { - return this._objecttypecode; + return this._name; } set { - this.OnobjecttypecodeChanging(value); - this._objecttypecode = value; - this.OnobjecttypecodeChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _objecttypecode; - partial void OnobjecttypecodeChanging(string value); - partial void OnobjecttypecodeChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -645235,71 +645301,71 @@ public virtual string objecttypecode partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property grouptypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable grouptypecode { get { - return this._overriddencreatedon; + return this._grouptypecode; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OngrouptypecodeChanging(value); + this._grouptypecode = value; + this.OngrouptypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _grouptypecode; + partial void OngrouptypecodeChanging(global::System.Nullable value); + partial void OngrouptypecodeChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable importsequencenumber { get { - return this._name; + return this._importsequencenumber; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property resourcegroupid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable resourcegroupid { get { - return this.__organizationid_value; + return this._resourcegroupid; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnresourcegroupidChanging(value); + this._resourcegroupid = value; + this.OnresourcegroupidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _resourcegroupid; + partial void OnresourcegroupidChanging(global::System.Nullable value); + partial void OnresourcegroupidChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -645323,71 +645389,71 @@ public virtual string name partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property resourcegroupid in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable resourcegroupid + public virtual global::System.Nullable overriddencreatedon { get { - return this._resourcegroupid; + return this._overriddencreatedon; } set { - this.OnresourcegroupidChanging(value); - this._resourcegroupid = value; - this.OnresourcegroupidChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _resourcegroupid; - partial void OnresourcegroupidChanging(global::System.Nullable value); - partial void OnresourcegroupidChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _businessunitid_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _businessunitid_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__businessunitid_value; + return this.__organizationid_value; } set { - this.On_businessunitid_valueChanging(value); - this.__businessunitid_value = value; - this.On_businessunitid_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __businessunitid_value; - partial void On_businessunitid_valueChanging(global::System.Nullable value); - partial void On_businessunitid_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property grouptypecode in the schema. + /// There are no comments for Property _businessunitid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable grouptypecode + public virtual global::System.Nullable _businessunitid_value { get { - return this._grouptypecode; + return this.__businessunitid_value; } set { - this.OngrouptypecodeChanging(value); - this._grouptypecode = value; - this.OngrouptypecodeChanged(); + this.On_businessunitid_valueChanging(value); + this.__businessunitid_value = value; + this.On_businessunitid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _grouptypecode; - partial void OngrouptypecodeChanging(global::System.Nullable value); - partial void OngrouptypecodeChanged(); + private global::System.Nullable __businessunitid_value; + partial void On_businessunitid_valueChanging(global::System.Nullable value); + partial void On_businessunitid_valueChanged(); /// /// There are no comments for Property businessunitid in the schema. /// @@ -647174,116 +647240,6 @@ public virtual string description partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property objecttypecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string objecttypecode - { - get - { - return this._objecttypecode; - } - set - { - this.OnobjecttypecodeChanging(value); - this._objecttypecode = value; - this.OnobjecttypecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _objecttypecode; - partial void OnobjecttypecodeChanging(string value); - partial void OnobjecttypecodeChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _businessunitid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _businessunitid_value - { - get - { - return this.__businessunitid_value; - } - set - { - this.On_businessunitid_valueChanging(value); - this.__businessunitid_value = value; - this.On_businessunitid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __businessunitid_value; - partial void On_businessunitid_valueChanging(global::System.Nullable value); - partial void On_businessunitid_valueChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// /// There are no comments for Property resourcespecid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -647306,49 +647262,27 @@ public virtual string objecttypecode partial void OnresourcespecidChanging(global::System.Nullable value); partial void OnresourcespecidChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// - /// There are no comments for Property samesite in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable samesite + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._samesite; + return this.__createdonbehalfby_value; } set { - this.OnsamesiteChanging(value); - this._samesite = value; - this.OnsamesiteChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _samesite; - partial void OnsamesiteChanging(global::System.Nullable value); - partial void OnsamesiteChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property groupobjectid in the schema. /// @@ -647394,6 +647328,94 @@ public virtual string name partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property objecttypecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string objecttypecode + { + get + { + return this._objecttypecode; + } + set + { + this.OnobjecttypecodeChanging(value); + this._objecttypecode = value; + this.OnobjecttypecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _objecttypecode; + partial void OnobjecttypecodeChanging(string value); + partial void OnobjecttypecodeChanged(); + /// + /// There are no comments for Property samesite in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable samesite + { + get + { + return this._samesite; + } + set + { + this.OnsamesiteChanging(value); + this._samesite = value; + this.OnsamesiteChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _samesite; + partial void OnsamesiteChanging(global::System.Nullable value); + partial void OnsamesiteChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -647416,6 +647438,28 @@ public virtual string name partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// + /// There are no comments for Property _businessunitid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _businessunitid_value + { + get + { + return this.__businessunitid_value; + } + set + { + this.On_businessunitid_valueChanging(value); + this.__businessunitid_value = value; + this.On_businessunitid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __businessunitid_value; + partial void On_businessunitid_valueChanging(global::System.Nullable value); + partial void On_businessunitid_valueChanged(); + /// /// There are no comments for Property constraints in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -647460,6 +647504,28 @@ public virtual string constraints partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property effortrequired in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -647504,137 +647570,137 @@ public virtual string constraints partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property objectiveexpression in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string objectiveexpression { get { - return this._timezoneruleversionnumber; + return this._objectiveexpression; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnobjectiveexpressionChanging(value); + this._objectiveexpression = value; + this.OnobjectiveexpressionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _objectiveexpression; + partial void OnobjectiveexpressionChanging(string value); + partial void OnobjectiveexpressionChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property requiredcount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable requiredcount { get { - return this.__createdby_value; + return this._requiredcount; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnrequiredcountChanging(value); + this._requiredcount = value; + this.OnrequiredcountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _requiredcount; + partial void OnrequiredcountChanging(global::System.Nullable value); + partial void OnrequiredcountChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__createdonbehalfby_value; + return this.__createdby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property objectiveexpression in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string objectiveexpression + public virtual global::System.Nullable _organizationid_value { get { - return this._objectiveexpression; + return this.__organizationid_value; } set { - this.OnobjectiveexpressionChanging(value); - this._objectiveexpression = value; - this.OnobjectiveexpressionChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _objectiveexpression; - partial void OnobjectiveexpressionChanging(string value); - partial void OnobjectiveexpressionChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property requiredcount in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable requiredcount + public virtual global::System.Nullable versionnumber { get { - return this._requiredcount; + return this._versionnumber; } set { - this.OnrequiredcountChanging(value); - this._requiredcount = value; - this.OnrequiredcountChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _requiredcount; - partial void OnrequiredcountChanging(global::System.Nullable value); - partial void OnrequiredcountChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._versionnumber; + return this.__modifiedonbehalfby_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -648051,6 +648117,50 @@ public ribbonmetadatatoprocessSingle(global::Microsoft.OData.Client.DataServiceQ [global::Microsoft.OData.Client.Key("ribbonmetadatarowid")] public partial class ribbonmetadatatoprocess : crmbaseentity { + /// + /// There are no comments for Property exceptionmessage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string exceptionmessage + { + get + { + return this._exceptionmessage; + } + set + { + this.OnexceptionmessageChanging(value); + this._exceptionmessage = value; + this.OnexceptionmessageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _exceptionmessage; + partial void OnexceptionmessageChanging(string value); + partial void OnexceptionmessageChanged(); + /// + /// There are no comments for Property solutionname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string solutionname + { + get + { + return this._solutionname; + } + set + { + this.OnsolutionnameChanging(value); + this._solutionname = value; + this.OnsolutionnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _solutionname; + partial void OnsolutionnameChanging(string value); + partial void OnsolutionnameChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -648074,49 +648184,49 @@ public partial class ribbonmetadatatoprocess : crmbaseentity partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property exceptionmessage in the schema. + /// There are no comments for Property retrycount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string exceptionmessage + public virtual global::System.Nullable retrycount { get { - return this._exceptionmessage; + return this._retrycount; } set { - this.OnexceptionmessageChanging(value); - this._exceptionmessage = value; - this.OnexceptionmessageChanged(); + this.OnretrycountChanging(value); + this._retrycount = value; + this.OnretrycountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _exceptionmessage; - partial void OnexceptionmessageChanging(string value); - partial void OnexceptionmessageChanged(); + private global::System.Nullable _retrycount; + partial void OnretrycountChanging(global::System.Nullable value); + partial void OnretrycountChanged(); /// - /// There are no comments for Property solutionname in the schema. + /// There are no comments for Property entityname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string solutionname + public virtual string entityname { get { - return this._solutionname; + return this._entityname; } set { - this.OnsolutionnameChanging(value); - this._solutionname = value; - this.OnsolutionnameChanged(); + this.OnentitynameChanging(value); + this._entityname = value; + this.OnentitynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _solutionname; - partial void OnsolutionnameChanging(string value); - partial void OnsolutionnameChanged(); + private string _entityname; + partial void OnentitynameChanging(string value); + partial void OnentitynameChanged(); /// /// There are no comments for Property processedon in the schema. /// @@ -648140,50 +648250,6 @@ public virtual string solutionname partial void OnprocessedonChanging(global::System.Nullable value); partial void OnprocessedonChanged(); /// - /// There are no comments for Property retrycount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable retrycount - { - get - { - return this._retrycount; - } - set - { - this.OnretrycountChanging(value); - this._retrycount = value; - this.OnretrycountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _retrycount; - partial void OnretrycountChanging(global::System.Nullable value); - partial void OnretrycountChanged(); - /// - /// There are no comments for Property entityname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string entityname - { - get - { - return this._entityname; - } - set - { - this.OnentitynameChanging(value); - this._entityname = value; - this.OnentitynameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityname; - partial void OnentitynameChanging(string value); - partial void OnentitynameChanged(); - /// /// There are no comments for Property completedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -648438,27 +648504,27 @@ public partial class roleprivileges : crmbaseentity partial void OncanbedeletedChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OncanbedeletedChanged(); /// - /// There are no comments for Property roleprivilegeidunique in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable roleprivilegeidunique + public virtual global::System.Nullable overwritetime { get { - return this._roleprivilegeidunique; + return this._overwritetime; } set { - this.OnroleprivilegeiduniqueChanging(value); - this._roleprivilegeidunique = value; - this.OnroleprivilegeiduniqueChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _roleprivilegeidunique; - partial void OnroleprivilegeiduniqueChanging(global::System.Nullable value); - partial void OnroleprivilegeiduniqueChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property roleprivilegeid in the schema. /// @@ -648548,27 +648614,27 @@ public partial class roleprivileges : crmbaseentity partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property roleprivilegeidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable roleprivilegeidunique { get { - return this._overwritetime; + return this._roleprivilegeidunique; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnroleprivilegeiduniqueChanging(value); + this._roleprivilegeidunique = value; + this.OnroleprivilegeiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _roleprivilegeidunique; + partial void OnroleprivilegeiduniqueChanging(global::System.Nullable value); + partial void OnroleprivilegeiduniqueChanged(); } /// /// There are no comments for roleSingle in the schema. @@ -649168,71 +649234,27 @@ public static role Createrole(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dyna partial void On_roletemplateid_valueChanging(global::System.Nullable value); partial void On_roletemplateid_valueChanged(); /// - /// There are no comments for Property _parentroleid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _parentroleid_value - { - get - { - return this.__parentroleid_value; - } - set - { - this.On_parentroleid_valueChanging(value); - this.__parentroleid_value = value; - this.On_parentroleid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentroleid_value; - partial void On_parentroleid_valueChanging(global::System.Nullable value); - partial void On_parentroleid_valueChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property organizationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable organizationid { get { - return this.__modifiedby_value; + return this._organizationid; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnorganizationidChanging(value); + this._organizationid = value; + this.OnorganizationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _organizationid; + partial void OnorganizationidChanging(global::System.Nullable value); + partial void OnorganizationidChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -649256,71 +649278,49 @@ public static role Createrole(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dyna partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property organizationid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable organizationid - { - get - { - return this._organizationid; - } - set - { - this.OnorganizationidChanging(value); - this._organizationid = value; - this.OnorganizationidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _organizationid; - partial void OnorganizationidChanging(global::System.Nullable value); - partial void OnorganizationidChanged(); - /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable modifiedon { get { - return this._name; + return this._modifiedon; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property canbedeleted in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty canbedeleted + public virtual global::System.Nullable _modifiedby_value { get { - return this._canbedeleted; + return this.__modifiedby_value; } set { - this.OncanbedeletedChanging(value); - this._canbedeleted = value; - this.OncanbedeletedChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _canbedeleted; - partial void OncanbedeletedChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OncanbedeletedChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -649410,28 +649410,6 @@ public virtual string name partial void OnroleidChanging(global::System.Nullable value); partial void OnroleidChanged(); /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -649498,6 +649476,50 @@ public virtual string name partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// + /// There are no comments for Property canbedeleted in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty canbedeleted + { + get + { + return this._canbedeleted; + } + set + { + this.OncanbedeletedChanging(value); + this._canbedeleted = value; + this.OncanbedeletedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _canbedeleted; + partial void OncanbedeletedChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OncanbedeletedChanged(); + /// /// There are no comments for Property _parentrootroleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -649542,6 +649564,28 @@ public virtual string name partial void OnroleiduniqueChanging(global::System.Nullable value); partial void OnroleiduniqueChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// /// There are no comments for Property isinherited in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -649586,6 +649630,28 @@ public virtual string name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property _parentroleid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _parentroleid_value + { + get + { + return this.__parentroleid_value; + } + set + { + this.On_parentroleid_valueChanging(value); + this.__parentroleid_value = value; + this.On_parentroleid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __parentroleid_value; + partial void On_parentroleid_valueChanging(global::System.Nullable value); + partial void On_parentroleid_valueChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -650152,6 +650218,28 @@ public roletemplateprivilegesSingle(global::Microsoft.OData.Client.DataServiceQu [global::Microsoft.OData.Client.Key("roletemplateprivilegeid")] public partial class roletemplateprivileges : crmbaseentity { + /// + /// There are no comments for Property roletemplateid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable roletemplateid + { + get + { + return this._roletemplateid; + } + set + { + this.OnroletemplateidChanging(value); + this._roletemplateid = value; + this.OnroletemplateidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _roletemplateid; + partial void OnroletemplateidChanging(global::System.Nullable value); + partial void OnroletemplateidChanged(); /// /// There are no comments for Property isdeep in the schema. /// @@ -650241,28 +650329,6 @@ public partial class roletemplateprivileges : crmbaseentity partial void OnislocalChanging(global::System.Nullable value); partial void OnislocalChanged(); /// - /// There are no comments for Property roletemplateid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable roletemplateid - { - get - { - return this._roletemplateid; - } - set - { - this.OnroletemplateidChanging(value); - this._roletemplateid = value; - this.OnroletemplateidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _roletemplateid; - partial void OnroletemplateidChanging(global::System.Nullable value); - partial void OnroletemplateidChanged(); - /// /// There are no comments for Property privilegeid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -650734,160 +650800,6 @@ public virtual string goalattribute partial void OngoalattributeChanging(string value); partial void OngoalattributeChanged(); /// - /// There are no comments for Property _metricid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _metricid_value - { - get - { - return this.__metricid_value; - } - set - { - this.On_metricid_valueChanging(value); - this.__metricid_value = value; - this.On_metricid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __metricid_value; - partial void On_metricid_valueChanging(global::System.Nullable value); - partial void On_metricid_valueChanged(); - /// - /// There are no comments for Property rollupfieldid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable rollupfieldid - { - get - { - return this._rollupfieldid; - } - set - { - this.OnrollupfieldidChanging(value); - this._rollupfieldid = value; - this.OnrollupfieldidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _rollupfieldid; - partial void OnrollupfieldidChanging(global::System.Nullable value); - partial void OnrollupfieldidChanged(); - /// - /// There are no comments for Property sourceattribute in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string sourceattribute - { - get - { - return this._sourceattribute; - } - set - { - this.OnsourceattributeChanging(value); - this._sourceattribute = value; - this.OnsourceattributeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sourceattribute; - partial void OnsourceattributeChanging(string value); - partial void OnsourceattributeChanged(); - /// - /// There are no comments for Property isstateparententityattribute in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isstateparententityattribute - { - get - { - return this._isstateparententityattribute; - } - set - { - this.OnisstateparententityattributeChanging(value); - this._isstateparententityattribute = value; - this.OnisstateparententityattributeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isstateparententityattribute; - partial void OnisstateparententityattributeChanging(global::System.Nullable value); - partial void OnisstateparententityattributeChanged(); - /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// - /// There are no comments for Property sourcestatus in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable sourcestatus - { - get - { - return this._sourcestatus; - } - set - { - this.OnsourcestatusChanging(value); - this._sourcestatus = value; - this.OnsourcestatusChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sourcestatus; - partial void OnsourcestatusChanging(global::System.Nullable value); - partial void OnsourcestatusChanged(); - /// - /// There are no comments for Property dateattribute in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string dateattribute - { - get - { - return this._dateattribute; - } - set - { - this.OndateattributeChanging(value); - this._dateattribute = value; - this.OndateattributeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _dateattribute; - partial void OndateattributeChanging(string value); - partial void OndateattributeChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -650910,6 +650822,116 @@ public virtual string dateattribute partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property rollupfieldid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable rollupfieldid + { + get + { + return this._rollupfieldid; + } + set + { + this.OnrollupfieldidChanging(value); + this._rollupfieldid = value; + this.OnrollupfieldidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _rollupfieldid; + partial void OnrollupfieldidChanging(global::System.Nullable value); + partial void OnrollupfieldidChanged(); + /// + /// There are no comments for Property sourceattribute in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string sourceattribute + { + get + { + return this._sourceattribute; + } + set + { + this.OnsourceattributeChanging(value); + this._sourceattribute = value; + this.OnsourceattributeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _sourceattribute; + partial void OnsourceattributeChanging(string value); + partial void OnsourceattributeChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property sourcestatus in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sourcestatus + { + get + { + return this._sourcestatus; + } + set + { + this.OnsourcestatusChanging(value); + this._sourcestatus = value; + this.OnsourcestatusChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sourcestatus; + partial void OnsourcestatusChanging(global::System.Nullable value); + partial void OnsourcestatusChanged(); + /// + /// There are no comments for Property isstateparententityattribute in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isstateparententityattribute + { + get + { + return this._isstateparententityattribute; + } + set + { + this.OnisstateparententityattributeChanging(value); + this._isstateparententityattribute = value; + this.OnisstateparententityattributeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isstateparententityattribute; + partial void OnisstateparententityattributeChanging(global::System.Nullable value); + partial void OnisstateparententityattributeChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -650932,6 +650954,28 @@ public virtual string dateattribute partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// + /// There are no comments for Property sourcestate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sourcestate + { + get + { + return this._sourcestate; + } + set + { + this.OnsourcestateChanging(value); + this._sourcestate = value; + this.OnsourcestateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sourcestate; + partial void OnsourcestateChanging(global::System.Nullable value); + partial void OnsourcestateChanged(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -650954,6 +650998,28 @@ public virtual string dateattribute partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property dateattribute in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string dateattribute + { + get + { + return this._dateattribute; + } + set + { + this.OndateattributeChanging(value); + this._dateattribute = value; + this.OndateattributeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _dateattribute; + partial void OndateattributeChanging(string value); + partial void OndateattributeChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -651020,27 +651086,27 @@ public virtual string dateattribute partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property sourceentity in the schema. + /// There are no comments for Property _metricid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string sourceentity + public virtual global::System.Nullable _metricid_value { get { - return this._sourceentity; + return this.__metricid_value; } set { - this.OnsourceentityChanging(value); - this._sourceentity = value; - this.OnsourceentityChanged(); + this.On_metricid_valueChanging(value); + this.__metricid_value = value; + this.On_metricid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sourceentity; - partial void OnsourceentityChanging(string value); - partial void OnsourceentityChanged(); + private global::System.Nullable __metricid_value; + partial void On_metricid_valueChanging(global::System.Nullable value); + partial void On_metricid_valueChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -651108,27 +651174,27 @@ public virtual string entityfordateattribute partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property sourcestate in the schema. + /// There are no comments for Property sourceentity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sourcestate + public virtual string sourceentity { get { - return this._sourcestate; + return this._sourceentity; } set { - this.OnsourcestateChanging(value); - this._sourcestate = value; - this.OnsourcestateChanged(); + this.OnsourceentityChanging(value); + this._sourceentity = value; + this.OnsourceentityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sourcestate; - partial void OnsourcestateChanging(global::System.Nullable value); - partial void OnsourcestateChanged(); + private string _sourceentity; + partial void OnsourceentityChanging(string value); + partial void OnsourceentityChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -651935,71 +652001,49 @@ public virtual string filename partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property documentbody in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string documentbody - { - get - { - return this._documentbody; - } - set - { - this.OndocumentbodyChanging(value); - this._documentbody = value; - this.OndocumentbodyChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _documentbody; - partial void OndocumentbodyChanging(string value); - partial void OndocumentbodyChanged(); - /// - /// There are no comments for Property documentbody_binary in the schema. + /// There are no comments for Property filetypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] documentbody_binary + public virtual global::System.Nullable filetypecode { get { - return this._documentbody_binary; + return this._filetypecode; } set { - this.Ondocumentbody_binaryChanging(value); - this._documentbody_binary = value; - this.Ondocumentbody_binaryChanged(); + this.OnfiletypecodeChanging(value); + this._filetypecode = value; + this.OnfiletypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _documentbody_binary; - partial void Ondocumentbody_binaryChanging(byte[] value); - partial void Ondocumentbody_binaryChanged(); + private global::System.Nullable _filetypecode; + partial void OnfiletypecodeChanging(global::System.Nullable value); + partial void OnfiletypecodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._importsequencenumber; + return this._utcconversiontimezonecode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property iscustomerviewable in the schema. /// @@ -652045,27 +652089,27 @@ public virtual string attacheddocumenturl partial void OnattacheddocumenturlChanging(string value); partial void OnattacheddocumenturlChanged(); /// - /// There are no comments for Property mimetype in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string mimetype + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._mimetype; + return this._timezoneruleversionnumber; } set { - this.OnmimetypeChanging(value); - this._mimetype = value; - this.OnmimetypeChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _mimetype; - partial void OnmimetypeChanging(string value); - partial void OnmimetypeChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property keywords in the schema. /// @@ -652089,27 +652133,71 @@ public virtual string keywords partial void OnkeywordsChanging(string value); partial void OnkeywordsChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property documentbody in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string documentbody { get { - return this.__createdonbehalfby_value; + return this._documentbody; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OndocumentbodyChanging(value); + this._documentbody = value; + this.OndocumentbodyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _documentbody; + partial void OndocumentbodyChanging(string value); + partial void OndocumentbodyChanged(); + /// + /// There are no comments for Property documentbody_binary in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual byte[] documentbody_binary + { + get + { + return this._documentbody_binary; + } + set + { + this.Ondocumentbody_binaryChanging(value); + this._documentbody_binary = value; + this.Ondocumentbody_binaryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private byte[] _documentbody_binary; + partial void Ondocumentbody_binaryChanging(byte[] value); + partial void Ondocumentbody_binaryChanged(); + /// + /// There are no comments for Property abstract in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string @abstract + { + get + { + return this._abstract; + } + set + { + this.OnabstractChanging(value); + this._abstract = value; + this.OnabstractChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _abstract; + partial void OnabstractChanging(string value); + partial void OnabstractChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -652155,27 +652243,27 @@ public virtual string authorname partial void OnauthornameChanging(string value); partial void OnauthornameChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._timezoneruleversionnumber; + return this.__createdonbehalfby_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property filesize in the schema. /// @@ -652265,27 +652353,27 @@ public virtual string authorname partial void OnsalesliteratureitemidChanging(global::System.Nullable value); partial void OnsalesliteratureitemidChanged(); /// - /// There are no comments for Property abstract in the schema. + /// There are no comments for Property mimetype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string @abstract + public virtual string mimetype { get { - return this._abstract; + return this._mimetype; } set { - this.OnabstractChanging(value); - this._abstract = value; - this.OnabstractChanged(); + this.OnmimetypeChanging(value); + this._mimetype = value; + this.OnmimetypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _abstract; - partial void OnabstractChanging(string value); - partial void OnabstractChanged(); + private string _mimetype; + partial void OnmimetypeChanging(string value); + partial void OnmimetypeChanged(); /// /// There are no comments for Property title in the schema. /// @@ -652331,49 +652419,49 @@ public virtual string title partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property filetypecode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable filetypecode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._filetypecode; + return this.__modifiedonbehalfby_value; } set { - this.OnfiletypecodeChanging(value); - this._filetypecode = value; - this.OnfiletypecodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _filetypecode; - partial void OnfiletypecodeChanging(global::System.Nullable value); - partial void OnfiletypecodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__modifiedonbehalfby_value; + return this._importsequencenumber; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _salesliteratureid_value in the schema. /// @@ -652419,28 +652507,6 @@ public virtual string mode partial void OnmodeChanging(string value); partial void OnmodeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -653256,27 +653322,27 @@ public static salesliterature Createsalesliterature(global::EMBC.ESS.Utilities.D return salesliterature; } /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable overriddencreatedon { get { - return this._name; + return this._overriddencreatedon; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -653300,27 +653366,27 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property traversedpath in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual string traversedpath { get { - return this._createdon; + return this._traversedpath; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -653410,49 +653476,49 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property expirationdate in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable expirationdate + public virtual global::System.Nullable versionnumber { get { - return this._expirationdate; + return this._versionnumber; } set { - this.OnexpirationdateChanging(value); - this._expirationdate = value; - this.OnexpirationdateChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _expirationdate; - partial void OnexpirationdateChanging(global::System.Nullable value); - partial void OnexpirationdateChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property expirationdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable expirationdate { get { - return this._overriddencreatedon; + return this._expirationdate; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnexpirationdateChanging(value); + this._expirationdate = value; + this.OnexpirationdateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _expirationdate; + partial void OnexpirationdateChanging(global::System.Nullable value); + partial void OnexpirationdateChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -653498,49 +653564,49 @@ public virtual string name partial void OnliteraturetypecodeChanging(global::System.Nullable value); partial void OnliteraturetypecodeChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property iscustomerviewable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable iscustomerviewable { get { - return this._utcconversiontimezonecode; + return this._iscustomerviewable; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OniscustomerviewableChanging(value); + this._iscustomerviewable = value; + this.OniscustomerviewableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _iscustomerviewable; + partial void OniscustomerviewableChanging(global::System.Nullable value); + partial void OniscustomerviewableChanged(); /// - /// There are no comments for Property keywords in the schema. + /// There are no comments for Property entityimage in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string keywords + public virtual byte[] entityimage { get { - return this._keywords; + return this._entityimage; } set { - this.OnkeywordsChanging(value); - this._keywords = value; - this.OnkeywordsChanged(); + this.OnentityimageChanging(value); + this._entityimage = value; + this.OnentityimageChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _keywords; - partial void OnkeywordsChanging(string value); - partial void OnkeywordsChanged(); + private byte[] _entityimage; + partial void OnentityimageChanging(byte[] value); + partial void OnentityimageChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -653586,27 +653652,27 @@ public virtual string keywords partial void On_employeecontactid_valueChanging(global::System.Nullable value); partial void On_employeecontactid_valueChanged(); /// - /// There are no comments for Property traversedpath in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string traversedpath + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._traversedpath; + return this._utcconversiontimezonecode; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property salesliteratureid in the schema. /// @@ -653630,27 +653696,27 @@ public virtual string traversedpath partial void OnsalesliteratureidChanging(global::System.Nullable value); partial void OnsalesliteratureidChanged(); /// - /// There are no comments for Property processid in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable processid + public virtual global::System.Nullable createdon { get { - return this._processid; + return this._createdon; } set { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processid; - partial void OnprocessidChanging(global::System.Nullable value); - partial void OnprocessidChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property entityimageid in the schema. /// @@ -653718,28 +653784,6 @@ public virtual string entityimage_url partial void Onentityimage_urlChanging(string value); partial void Onentityimage_urlChanged(); /// - /// There are no comments for Property iscustomerviewable in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable iscustomerviewable - { - get - { - return this._iscustomerviewable; - } - set - { - this.OniscustomerviewableChanging(value); - this._iscustomerviewable = value; - this.OniscustomerviewableChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _iscustomerviewable; - partial void OniscustomerviewableChanging(global::System.Nullable value); - partial void OniscustomerviewableChanged(); - /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -653762,27 +653806,27 @@ public virtual string entityimage_url partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _subjectid_value in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _subjectid_value + public virtual string description { get { - return this.__subjectid_value; + return this._description; } set { - this.On_subjectid_valueChanging(value); - this.__subjectid_value = value; - this.On_subjectid_valueChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __subjectid_value; - partial void On_subjectid_valueChanging(global::System.Nullable value); - partial void On_subjectid_valueChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property entityimage_timestamp in the schema. /// @@ -653806,115 +653850,137 @@ public virtual string entityimage_url partial void Onentityimage_timestampChanging(global::System.Nullable value); partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property _subjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable _subjectid_value { get { - return this.__organizationid_value; + return this.__subjectid_value; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.On_subjectid_valueChanging(value); + this.__subjectid_value = value; + this.On_subjectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable __subjectid_value; + partial void On_subjectid_valueChanging(global::System.Nullable value); + partial void On_subjectid_valueChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property processid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable processid { get { - return this._description; + return this._processid; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._versionnumber; + return this.__modifiedonbehalfby_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property entityimage in the schema. + /// There are no comments for Property keywords in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] entityimage + public virtual string keywords { get { - return this._entityimage; + return this._keywords; } set { - this.OnentityimageChanging(value); - this._entityimage = value; - this.OnentityimageChanged(); + this.OnkeywordsChanging(value); + this._keywords = value; + this.OnkeywordsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _entityimage; - partial void OnentityimageChanging(byte[] value); - partial void OnentityimageChanged(); + private string _keywords; + partial void OnkeywordsChanging(string value); + partial void OnkeywordsChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string name { get { - return this.__modifiedonbehalfby_value; + return this._name; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -655116,71 +655182,49 @@ public virtual string productname partial void OnproductnameChanging(string value); partial void OnproductnameChanged(); /// - /// There are no comments for Property description in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string description - { - get - { - return this._description; - } - set - { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); - /// - /// There are no comments for Property tax_base in the schema. + /// There are no comments for Property salesorderdetailid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable tax_base + public virtual global::System.Nullable salesorderdetailid { get { - return this._tax_base; + return this._salesorderdetailid; } set { - this.Ontax_baseChanging(value); - this._tax_base = value; - this.Ontax_baseChanged(); + this.OnsalesorderdetailidChanging(value); + this._salesorderdetailid = value; + this.OnsalesorderdetailidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _tax_base; - partial void Ontax_baseChanging(global::System.Nullable value); - partial void Ontax_baseChanged(); + private global::System.Nullable _salesorderdetailid; + partial void OnsalesorderdetailidChanging(global::System.Nullable value); + partial void OnsalesorderdetailidChanged(); /// - /// There are no comments for Property shipto_city in the schema. + /// There are no comments for Property ispriceoverridden in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_city + public virtual global::System.Nullable ispriceoverridden { get { - return this._shipto_city; + return this._ispriceoverridden; } set { - this.Onshipto_cityChanging(value); - this._shipto_city = value; - this.Onshipto_cityChanged(); + this.OnispriceoverriddenChanging(value); + this._ispriceoverridden = value; + this.OnispriceoverriddenChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_city; - partial void Onshipto_cityChanging(string value); - partial void Onshipto_cityChanged(); + private global::System.Nullable _ispriceoverridden; + partial void OnispriceoverriddenChanging(global::System.Nullable value); + partial void OnispriceoverriddenChanged(); /// /// There are no comments for Property salesorderispricelocked in the schema. /// @@ -655204,28 +655248,6 @@ public virtual string shipto_city partial void OnsalesorderispricelockedChanging(global::System.Nullable value); partial void OnsalesorderispricelockedChanged(); /// - /// There are no comments for Property extendedamount in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable extendedamount - { - get - { - return this._extendedamount; - } - set - { - this.OnextendedamountChanging(value); - this._extendedamount = value; - this.OnextendedamountChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _extendedamount; - partial void OnextendedamountChanging(global::System.Nullable value); - partial void OnextendedamountChanged(); - /// /// There are no comments for Property skippricecalculation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -655248,49 +655270,71 @@ public virtual string shipto_city partial void OnskippricecalculationChanging(global::System.Nullable value); partial void OnskippricecalculationChanged(); /// - /// There are no comments for Property salesorderdetailname in the schema. + /// There are no comments for Property sequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string salesorderdetailname + public virtual global::System.Nullable sequencenumber { get { - return this._salesorderdetailname; + return this._sequencenumber; } set { - this.OnsalesorderdetailnameChanging(value); - this._salesorderdetailname = value; - this.OnsalesorderdetailnameChanged(); + this.OnsequencenumberChanging(value); + this._sequencenumber = value; + this.OnsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _salesorderdetailname; - partial void OnsalesorderdetailnameChanging(string value); - partial void OnsalesorderdetailnameChanged(); + private global::System.Nullable _sequencenumber; + partial void OnsequencenumberChanging(global::System.Nullable value); + partial void OnsequencenumberChanged(); /// - /// There are no comments for Property shipto_country in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_country + public virtual global::System.Nullable importsequencenumber { get { - return this._shipto_country; + return this._importsequencenumber; } set { - this.Onshipto_countryChanging(value); - this._shipto_country = value; - this.Onshipto_countryChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_country; - partial void Onshipto_countryChanging(string value); - partial void Onshipto_countryChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property isproductoverridden in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isproductoverridden + { + get + { + return this._isproductoverridden; + } + set + { + this.OnisproductoverriddenChanging(value); + this._isproductoverridden = value; + this.OnisproductoverriddenChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isproductoverridden; + partial void OnisproductoverriddenChanging(global::System.Nullable value); + partial void OnisproductoverriddenChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -655336,6 +655380,28 @@ public virtual string shipto_country partial void OnrequestdeliverybyChanging(global::System.Nullable value); partial void OnrequestdeliverybyChanged(); /// + /// There are no comments for Property tax_base in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable tax_base + { + get + { + return this._tax_base; + } + set + { + this.Ontax_baseChanging(value); + this._tax_base = value; + this.Ontax_baseChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _tax_base; + partial void Ontax_baseChanging(global::System.Nullable value); + partial void Ontax_baseChanged(); + /// /// There are no comments for Property shipto_freighttermscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -655424,27 +655490,27 @@ public virtual string shipto_line2 partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property ispriceoverridden in the schema. + /// There are no comments for Property productassociationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ispriceoverridden + public virtual global::System.Nullable productassociationid { get { - return this._ispriceoverridden; + return this._productassociationid; } set { - this.OnispriceoverriddenChanging(value); - this._ispriceoverridden = value; - this.OnispriceoverriddenChanged(); + this.OnproductassociationidChanging(value); + this._productassociationid = value; + this.OnproductassociationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ispriceoverridden; - partial void OnispriceoverriddenChanging(global::System.Nullable value); - partial void OnispriceoverriddenChanged(); + private global::System.Nullable _productassociationid; + partial void OnproductassociationidChanging(global::System.Nullable value); + partial void OnproductassociationidChanged(); /// /// There are no comments for Property priceperunit in the schema. /// @@ -655490,50 +655556,6 @@ public virtual string shipto_line2 partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property _uomid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _uomid_value - { - get - { - return this.__uomid_value; - } - set - { - this.On_uomid_valueChanging(value); - this.__uomid_value = value; - this.On_uomid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __uomid_value; - partial void On_uomid_valueChanging(global::System.Nullable value); - partial void On_uomid_valueChanged(); - /// - /// There are no comments for Property shipto_line3 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string shipto_line3 - { - get - { - return this._shipto_line3; - } - set - { - this.Onshipto_line3Changing(value); - this._shipto_line3 = value; - this.Onshipto_line3Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_line3; - partial void Onshipto_line3Changing(string value); - partial void Onshipto_line3Changed(); - /// /// There are no comments for Property tax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -655556,27 +655578,27 @@ public virtual string shipto_line3 partial void OntaxChanging(global::System.Nullable value); partial void OntaxChanged(); /// - /// There are no comments for Property quantity in the schema. + /// There are no comments for Property shipto_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable quantity + public virtual string shipto_name { get { - return this._quantity; + return this._shipto_name; } set { - this.OnquantityChanging(value); - this._quantity = value; - this.OnquantityChanged(); + this.Onshipto_nameChanging(value); + this._shipto_name = value; + this.Onshipto_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quantity; - partial void OnquantityChanging(global::System.Nullable value); - partial void OnquantityChanged(); + private string _shipto_name; + partial void Onshipto_nameChanging(string value); + partial void Onshipto_nameChanged(); /// /// There are no comments for Property pricingerrorcode in the schema. /// @@ -655600,27 +655622,27 @@ public virtual string shipto_line3 partial void OnpricingerrorcodeChanging(global::System.Nullable value); partial void OnpricingerrorcodeChanged(); /// - /// There are no comments for Property isproductoverridden in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isproductoverridden + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._isproductoverridden; + return this.__owningbusinessunit_value; } set { - this.OnisproductoverriddenChanging(value); - this._isproductoverridden = value; - this.OnisproductoverriddenChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isproductoverridden; - partial void OnisproductoverriddenChanging(global::System.Nullable value); - partial void OnisproductoverriddenChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property iscopied in the schema. /// @@ -655644,71 +655666,71 @@ public virtual string shipto_line3 partial void OniscopiedChanging(global::System.Nullable value); partial void OniscopiedChanged(); /// - /// There are no comments for Property lineitemnumber in the schema. + /// There are no comments for Property parentbundleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lineitemnumber + public virtual global::System.Nullable parentbundleid { get { - return this._lineitemnumber; + return this._parentbundleid; } set { - this.OnlineitemnumberChanging(value); - this._lineitemnumber = value; - this.OnlineitemnumberChanged(); + this.OnparentbundleidChanging(value); + this._parentbundleid = value; + this.OnparentbundleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lineitemnumber; - partial void OnlineitemnumberChanging(global::System.Nullable value); - partial void OnlineitemnumberChanged(); + private global::System.Nullable _parentbundleid; + partial void OnparentbundleidChanging(global::System.Nullable value); + partial void OnparentbundleidChanged(); /// - /// There are no comments for Property salesorderdetailid in the schema. + /// There are no comments for Property lineitemnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable salesorderdetailid + public virtual global::System.Nullable lineitemnumber { get { - return this._salesorderdetailid; + return this._lineitemnumber; } set { - this.OnsalesorderdetailidChanging(value); - this._salesorderdetailid = value; - this.OnsalesorderdetailidChanged(); + this.OnlineitemnumberChanging(value); + this._lineitemnumber = value; + this.OnlineitemnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _salesorderdetailid; - partial void OnsalesorderdetailidChanging(global::System.Nullable value); - partial void OnsalesorderdetailidChanged(); + private global::System.Nullable _lineitemnumber; + partial void OnlineitemnumberChanging(global::System.Nullable value); + partial void OnlineitemnumberChanged(); /// - /// There are no comments for Property extendedamount_base in the schema. + /// There are no comments for Property shipto_line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable extendedamount_base + public virtual string shipto_line3 { get { - return this._extendedamount_base; + return this._shipto_line3; } set { - this.Onextendedamount_baseChanging(value); - this._extendedamount_base = value; - this.Onextendedamount_baseChanged(); + this.Onshipto_line3Changing(value); + this._shipto_line3 = value; + this.Onshipto_line3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _extendedamount_base; - partial void Onextendedamount_baseChanging(global::System.Nullable value); - partial void Onextendedamount_baseChanged(); + private string _shipto_line3; + partial void Onshipto_line3Changing(string value); + partial void Onshipto_line3Changed(); /// /// There are no comments for Property manualdiscountamount in the schema. /// @@ -655776,27 +655798,27 @@ public virtual string shipto_line3 partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property sequencenumber in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sequencenumber + public virtual string description { get { - return this._sequencenumber; + return this._description; } set { - this.OnsequencenumberChanging(value); - this._sequencenumber = value; - this.OnsequencenumberChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sequencenumber; - partial void OnsequencenumberChanging(global::System.Nullable value); - partial void OnsequencenumberChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property salesorderstatecode in the schema. /// @@ -655842,6 +655864,28 @@ public virtual string shipto_line3 partial void On_owninguser_valueChanging(global::System.Nullable value); partial void On_owninguser_valueChanged(); /// + /// There are no comments for Property productnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string productnumber + { + get + { + return this._productnumber; + } + set + { + this.OnproductnumberChanging(value); + this._productnumber = value; + this.OnproductnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _productnumber; + partial void OnproductnumberChanging(string value); + partial void OnproductnumberChanged(); + /// /// There are no comments for Property willcall in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -655974,71 +656018,71 @@ public virtual string shipto_contactname partial void Onshipto_contactnameChanging(string value); partial void Onshipto_contactnameChanged(); /// - /// There are no comments for Property _quotedetailid_value in the schema. + /// There are no comments for Property shipto_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _quotedetailid_value + public virtual string shipto_postalcode { get { - return this.__quotedetailid_value; + return this._shipto_postalcode; } set { - this.On_quotedetailid_valueChanging(value); - this.__quotedetailid_value = value; - this.On_quotedetailid_valueChanged(); + this.Onshipto_postalcodeChanging(value); + this._shipto_postalcode = value; + this.Onshipto_postalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __quotedetailid_value; - partial void On_quotedetailid_valueChanging(global::System.Nullable value); - partial void On_quotedetailid_valueChanged(); + private string _shipto_postalcode; + partial void Onshipto_postalcodeChanging(string value); + partial void Onshipto_postalcodeChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _quotedetailid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _quotedetailid_value { get { - return this.__createdby_value; + return this.__quotedetailid_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_quotedetailid_valueChanging(value); + this.__quotedetailid_value = value; + this.On_quotedetailid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __quotedetailid_value; + partial void On_quotedetailid_valueChanging(global::System.Nullable value); + partial void On_quotedetailid_valueChanged(); /// - /// There are no comments for Property productnumber in the schema. + /// There are no comments for Property shipto_country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string productnumber + public virtual string shipto_country { get { - return this._productnumber; + return this._shipto_country; } set { - this.OnproductnumberChanging(value); - this._productnumber = value; - this.OnproductnumberChanged(); + this.Onshipto_countryChanging(value); + this._shipto_country = value; + this.Onshipto_countryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _productnumber; - partial void OnproductnumberChanging(string value); - partial void OnproductnumberChanged(); + private string _shipto_country; + partial void Onshipto_countryChanging(string value); + partial void Onshipto_countryChanged(); /// /// There are no comments for Property _parentbundleidref_value in the schema. /// @@ -656062,27 +656106,49 @@ public virtual string productnumber partial void On_parentbundleidref_valueChanging(global::System.Nullable value); partial void On_parentbundleidref_valueChanged(); /// - /// There are no comments for Property productdescription in the schema. + /// There are no comments for Property _salesorderid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string productdescription + public virtual global::System.Nullable _salesorderid_value { get { - return this._productdescription; + return this.__salesorderid_value; } set { - this.OnproductdescriptionChanging(value); - this._productdescription = value; - this.OnproductdescriptionChanged(); + this.On_salesorderid_valueChanging(value); + this.__salesorderid_value = value; + this.On_salesorderid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _productdescription; - partial void OnproductdescriptionChanging(string value); - partial void OnproductdescriptionChanged(); + private global::System.Nullable __salesorderid_value; + partial void On_salesorderid_valueChanging(global::System.Nullable value); + partial void On_salesorderid_valueChanged(); + /// + /// There are no comments for Property quantityshipped in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable quantityshipped + { + get + { + return this._quantityshipped; + } + set + { + this.OnquantityshippedChanging(value); + this._quantityshipped = value; + this.OnquantityshippedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _quantityshipped; + partial void OnquantityshippedChanging(global::System.Nullable value); + partial void OnquantityshippedChanged(); /// /// There are no comments for Property shipto_addressid in the schema. /// @@ -656106,27 +656172,71 @@ public virtual string productdescription partial void Onshipto_addressidChanging(global::System.Nullable value); partial void Onshipto_addressidChanged(); /// - /// There are no comments for Property shipto_line1 in the schema. + /// There are no comments for Property extendedamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string shipto_line1 + public virtual global::System.Nullable extendedamount_base { get { - return this._shipto_line1; + return this._extendedamount_base; } set { - this.Onshipto_line1Changing(value); - this._shipto_line1 = value; - this.Onshipto_line1Changed(); + this.Onextendedamount_baseChanging(value); + this._extendedamount_base = value; + this.Onextendedamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_line1; - partial void Onshipto_line1Changing(string value); - partial void Onshipto_line1Changed(); + private global::System.Nullable _extendedamount_base; + partial void Onextendedamount_baseChanging(global::System.Nullable value); + partial void Onextendedamount_baseChanged(); + /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property extendedamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable extendedamount + { + get + { + return this._extendedamount; + } + set + { + this.OnextendedamountChanging(value); + this._extendedamount = value; + this.OnextendedamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _extendedamount; + partial void OnextendedamountChanging(global::System.Nullable value); + partial void OnextendedamountChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -656172,49 +656282,49 @@ public virtual string shipto_line1 partial void On_salesrepid_valueChanging(global::System.Nullable value); partial void On_salesrepid_valueChanged(); /// - /// There are no comments for Property parentbundleid in the schema. + /// There are no comments for Property salesorderdetailname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable parentbundleid + public virtual string salesorderdetailname { get { - return this._parentbundleid; + return this._salesorderdetailname; } set { - this.OnparentbundleidChanging(value); - this._parentbundleid = value; - this.OnparentbundleidChanged(); + this.OnsalesorderdetailnameChanging(value); + this._salesorderdetailname = value; + this.OnsalesorderdetailnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _parentbundleid; - partial void OnparentbundleidChanging(global::System.Nullable value); - partial void OnparentbundleidChanged(); + private string _salesorderdetailname; + partial void OnsalesorderdetailnameChanging(string value); + partial void OnsalesorderdetailnameChanged(); /// - /// There are no comments for Property _salesorderid_value in the schema. + /// There are no comments for Property productdescription in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _salesorderid_value + public virtual string productdescription { get { - return this.__salesorderid_value; + return this._productdescription; } set { - this.On_salesorderid_valueChanging(value); - this.__salesorderid_value = value; - this.On_salesorderid_valueChanged(); + this.OnproductdescriptionChanging(value); + this._productdescription = value; + this.OnproductdescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __salesorderid_value; - partial void On_salesorderid_valueChanging(global::System.Nullable value); - partial void On_salesorderid_valueChanged(); + private string _productdescription; + partial void OnproductdescriptionChanging(string value); + partial void OnproductdescriptionChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -656238,27 +656348,27 @@ public virtual string shipto_line1 partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property volumediscountamount_base in the schema. + /// There are no comments for Property producttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable volumediscountamount_base + public virtual global::System.Nullable producttypecode { get { - return this._volumediscountamount_base; + return this._producttypecode; } set { - this.Onvolumediscountamount_baseChanging(value); - this._volumediscountamount_base = value; - this.Onvolumediscountamount_baseChanged(); + this.OnproducttypecodeChanging(value); + this._producttypecode = value; + this.OnproducttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _volumediscountamount_base; - partial void Onvolumediscountamount_baseChanging(global::System.Nullable value); - partial void Onvolumediscountamount_baseChanged(); + private global::System.Nullable _producttypecode; + partial void OnproducttypecodeChanging(global::System.Nullable value); + partial void OnproducttypecodeChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -656282,93 +656392,71 @@ public virtual string shipto_line1 partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property shipto_postalcode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string shipto_postalcode - { - get - { - return this._shipto_postalcode; - } - set - { - this.Onshipto_postalcodeChanging(value); - this._shipto_postalcode = value; - this.Onshipto_postalcodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_postalcode; - partial void Onshipto_postalcodeChanging(string value); - partial void Onshipto_postalcodeChanged(); - /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property volumediscountamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable volumediscountamount_base { get { - return this._importsequencenumber; + return this._volumediscountamount_base; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.Onvolumediscountamount_baseChanging(value); + this._volumediscountamount_base = value; + this.Onvolumediscountamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _volumediscountamount_base; + partial void Onvolumediscountamount_baseChanging(global::System.Nullable value); + partial void Onvolumediscountamount_baseChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property _productid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable _productid_value { get { - return this._timezoneruleversionnumber; + return this.__productid_value; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.On_productid_valueChanging(value); + this.__productid_value = value; + this.On_productid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable __productid_value; + partial void On_productid_valueChanging(global::System.Nullable value); + partial void On_productid_valueChanged(); /// - /// There are no comments for Property producttypecode in the schema. + /// There are no comments for Property volumediscountamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable producttypecode + public virtual global::System.Nullable volumediscountamount { get { - return this._producttypecode; + return this._volumediscountamount; } set { - this.OnproducttypecodeChanging(value); - this._producttypecode = value; - this.OnproducttypecodeChanged(); + this.OnvolumediscountamountChanging(value); + this._volumediscountamount = value; + this.OnvolumediscountamountChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _producttypecode; - partial void OnproducttypecodeChanging(global::System.Nullable value); - partial void OnproducttypecodeChanged(); + private global::System.Nullable _volumediscountamount; + partial void OnvolumediscountamountChanging(global::System.Nullable value); + partial void OnvolumediscountamountChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -656436,28 +656524,6 @@ public virtual string shipto_fax partial void Onshipto_faxChanging(string value); partial void Onshipto_faxChanged(); /// - /// There are no comments for Property shipto_name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string shipto_name - { - get - { - return this._shipto_name; - } - set - { - this.Onshipto_nameChanging(value); - this._shipto_name = value; - this.Onshipto_nameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_name; - partial void Onshipto_nameChanging(string value); - partial void Onshipto_nameChanged(); - /// /// There are no comments for Property propertyconfigurationstatus in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -656502,71 +656568,71 @@ public virtual string shipto_name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property quantitybackordered in the schema. + /// There are no comments for Property shipto_line1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable quantitybackordered + public virtual string shipto_line1 { get { - return this._quantitybackordered; + return this._shipto_line1; } set { - this.OnquantitybackorderedChanging(value); - this._quantitybackordered = value; - this.OnquantitybackorderedChanged(); + this.Onshipto_line1Changing(value); + this._shipto_line1 = value; + this.Onshipto_line1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quantitybackordered; - partial void OnquantitybackorderedChanging(global::System.Nullable value); - partial void OnquantitybackorderedChanged(); + private string _shipto_line1; + partial void Onshipto_line1Changing(string value); + partial void Onshipto_line1Changed(); /// - /// There are no comments for Property volumediscountamount in the schema. + /// There are no comments for Property quantitybackordered in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable volumediscountamount + public virtual global::System.Nullable quantitybackordered { get { - return this._volumediscountamount; + return this._quantitybackordered; } set { - this.OnvolumediscountamountChanging(value); - this._volumediscountamount = value; - this.OnvolumediscountamountChanged(); + this.OnquantitybackorderedChanging(value); + this._quantitybackordered = value; + this.OnquantitybackorderedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _volumediscountamount; - partial void OnvolumediscountamountChanging(global::System.Nullable value); - partial void OnvolumediscountamountChanged(); + private global::System.Nullable _quantitybackordered; + partial void OnquantitybackorderedChanging(global::System.Nullable value); + partial void OnquantitybackorderedChanged(); /// - /// There are no comments for Property _productid_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _productid_value + public virtual global::System.Nullable _createdby_value { get { - return this.__productid_value; + return this.__createdby_value; } set { - this.On_productid_valueChanging(value); - this.__productid_value = value; - this.On_productid_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __productid_value; - partial void On_productid_valueChanging(global::System.Nullable value); - partial void On_productid_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property quantitycancelled in the schema. /// @@ -656612,49 +656678,49 @@ public virtual string shipto_name partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property quantityshipped in the schema. + /// There are no comments for Property shipto_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable quantityshipped + public virtual string shipto_city { get { - return this._quantityshipped; + return this._shipto_city; } set { - this.OnquantityshippedChanging(value); - this._quantityshipped = value; - this.OnquantityshippedChanged(); + this.Onshipto_cityChanging(value); + this._shipto_city = value; + this.Onshipto_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _quantityshipped; - partial void OnquantityshippedChanging(global::System.Nullable value); - partial void OnquantityshippedChanged(); + private string _shipto_city; + partial void Onshipto_cityChanging(string value); + partial void Onshipto_cityChanged(); /// - /// There are no comments for Property productassociationid in the schema. + /// There are no comments for Property quantity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable productassociationid + public virtual global::System.Nullable quantity { get { - return this._productassociationid; + return this._quantity; } set { - this.OnproductassociationidChanging(value); - this._productassociationid = value; - this.OnproductassociationidChanged(); + this.OnquantityChanging(value); + this._quantity = value; + this.OnquantityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _productassociationid; - partial void OnproductassociationidChanging(global::System.Nullable value); - partial void OnproductassociationidChanged(); + private global::System.Nullable _quantity; + partial void OnquantityChanging(global::System.Nullable value); + partial void OnquantityChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -656678,27 +656744,27 @@ public virtual string shipto_name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _uomid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _uomid_value { get { - return this.__owningbusinessunit_value; + return this.__uomid_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_uomid_valueChanging(value); + this.__uomid_value = value; + this.On_uomid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __uomid_value; + partial void On_uomid_valueChanging(global::System.Nullable value); + partial void On_uomid_valueChanged(); /// /// There are no comments for Property parentbundleidref_salesorderdetail in the schema. /// @@ -658430,6 +658496,28 @@ public static salesorder Createsalesorder(global::EMBC.ESS.Utilities.Dynamics.Mi partial void OnpaymenttermscodeChanging(global::System.Nullable value); partial void OnpaymenttermscodeChanged(); /// + /// There are no comments for Property lastbackofficesubmit in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable lastbackofficesubmit + { + get + { + return this._lastbackofficesubmit; + } + set + { + this.OnlastbackofficesubmitChanging(value); + this._lastbackofficesubmit = value; + this.OnlastbackofficesubmitChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _lastbackofficesubmit; + partial void OnlastbackofficesubmitChanging(global::System.Nullable value); + partial void OnlastbackofficesubmitChanged(); + /// /// There are no comments for Property ordernumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -658584,6 +658672,28 @@ public virtual string billto_line2 partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// + /// There are no comments for Property totallineitemdiscountamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable totallineitemdiscountamount + { + get + { + return this._totallineitemdiscountamount; + } + set + { + this.OntotallineitemdiscountamountChanging(value); + this._totallineitemdiscountamount = value; + this.OntotallineitemdiscountamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _totallineitemdiscountamount; + partial void OntotallineitemdiscountamountChanging(global::System.Nullable value); + partial void OntotallineitemdiscountamountChanged(); + /// /// There are no comments for Property billto_composite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -658650,28 +658760,6 @@ public virtual byte[] entityimage partial void OnentityimageChanging(byte[] value); partial void OnentityimageChanged(); /// - /// There are no comments for Property _quoteid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _quoteid_value - { - get - { - return this.__quoteid_value; - } - set - { - this.On_quoteid_valueChanging(value); - this.__quoteid_value = value; - this.On_quoteid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __quoteid_value; - partial void On_quoteid_valueChanging(global::System.Nullable value); - partial void On_quoteid_valueChanged(); - /// /// There are no comments for Property freightamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -658804,28 +658892,6 @@ public virtual string shipto_name partial void Onshipto_nameChanging(string value); partial void Onshipto_nameChanged(); /// - /// There are no comments for Property submitdate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable submitdate - { - get - { - return this._submitdate; - } - set - { - this.OnsubmitdateChanging(value); - this._submitdate = value; - this.OnsubmitdateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _submitdate; - partial void OnsubmitdateChanging(global::System.Nullable value); - partial void OnsubmitdateChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -659090,27 +659156,27 @@ public virtual string traversedpath partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property billto_contactname in the schema. + /// There are no comments for Property shipto_freighttermscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string billto_contactname + public virtual global::System.Nullable shipto_freighttermscode { get { - return this._billto_contactname; + return this._shipto_freighttermscode; } set { - this.Onbillto_contactnameChanging(value); - this._billto_contactname = value; - this.Onbillto_contactnameChanged(); + this.Onshipto_freighttermscodeChanging(value); + this._shipto_freighttermscode = value; + this.Onshipto_freighttermscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _billto_contactname; - partial void Onbillto_contactnameChanging(string value); - partial void Onbillto_contactnameChanged(); + private global::System.Nullable _shipto_freighttermscode; + partial void Onshipto_freighttermscodeChanging(global::System.Nullable value); + partial void Onshipto_freighttermscodeChanged(); /// /// There are no comments for Property lastonholdtime in the schema. /// @@ -659156,6 +659222,28 @@ public virtual string billto_contactname partial void OnispricelockedChanging(global::System.Nullable value); partial void OnispricelockedChanged(); /// + /// There are no comments for Property totalamount in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable totalamount + { + get + { + return this._totalamount; + } + set + { + this.OntotalamountChanging(value); + this._totalamount = value; + this.OntotalamountChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _totalamount; + partial void OntotalamountChanging(global::System.Nullable value); + partial void OntotalamountChanged(); + /// /// There are no comments for Property billto_stateorprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -659332,27 +659420,27 @@ public virtual string shipto_line3 partial void On_accountid_valueChanging(global::System.Nullable value); partial void On_accountid_valueChanged(); /// - /// There are no comments for Property totalamount in the schema. + /// There are no comments for Property _quoteid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable totalamount + public virtual global::System.Nullable _quoteid_value { get { - return this._totalamount; + return this.__quoteid_value; } set { - this.OntotalamountChanging(value); - this._totalamount = value; - this.OntotalamountChanged(); + this.On_quoteid_valueChanging(value); + this.__quoteid_value = value; + this.On_quoteid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totalamount; - partial void OntotalamountChanging(global::System.Nullable value); - partial void OntotalamountChanged(); + private global::System.Nullable __quoteid_value; + partial void On_quoteid_valueChanging(global::System.Nullable value); + partial void On_quoteid_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -659442,6 +659530,28 @@ public virtual string emailaddress partial void OnemailaddressChanging(string value); partial void OnemailaddressChanged(); /// + /// There are no comments for Property billto_postalcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string billto_postalcode + { + get + { + return this._billto_postalcode; + } + set + { + this.Onbillto_postalcodeChanging(value); + this._billto_postalcode = value; + this.Onbillto_postalcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _billto_postalcode; + partial void Onbillto_postalcodeChanging(string value); + partial void Onbillto_postalcodeChanged(); + /// /// There are no comments for Property billto_line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -659486,27 +659596,27 @@ public virtual string billto_line3 partial void OnpricingerrorcodeChanging(global::System.Nullable value); partial void OnpricingerrorcodeChanged(); /// - /// There are no comments for Property totallineitemdiscountamount in the schema. + /// There are no comments for Property totallineitemdiscountamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable totallineitemdiscountamount + public virtual global::System.Nullable totallineitemdiscountamount_base { get { - return this._totallineitemdiscountamount; + return this._totallineitemdiscountamount_base; } set { - this.OntotallineitemdiscountamountChanging(value); - this._totallineitemdiscountamount = value; - this.OntotallineitemdiscountamountChanged(); + this.Ontotallineitemdiscountamount_baseChanging(value); + this._totallineitemdiscountamount_base = value; + this.Ontotallineitemdiscountamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totallineitemdiscountamount; - partial void OntotallineitemdiscountamountChanging(global::System.Nullable value); - partial void OntotallineitemdiscountamountChanged(); + private global::System.Nullable _totallineitemdiscountamount_base; + partial void Ontotallineitemdiscountamount_baseChanging(global::System.Nullable value); + partial void Ontotallineitemdiscountamount_baseChanged(); /// /// There are no comments for Property totaldiscountamount_base in the schema. /// @@ -659552,27 +659662,27 @@ public virtual string billto_line3 partial void On_customerid_valueChanging(global::System.Nullable value); partial void On_customerid_valueChanged(); /// - /// There are no comments for Property billto_postalcode in the schema. + /// There are no comments for Property totallineitemamount_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string billto_postalcode + public virtual global::System.Nullable totallineitemamount_base { get { - return this._billto_postalcode; + return this._totallineitemamount_base; } set { - this.Onbillto_postalcodeChanging(value); - this._billto_postalcode = value; - this.Onbillto_postalcodeChanged(); + this.Ontotallineitemamount_baseChanging(value); + this._totallineitemamount_base = value; + this.Ontotallineitemamount_baseChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _billto_postalcode; - partial void Onbillto_postalcodeChanging(string value); - partial void Onbillto_postalcodeChanged(); + private global::System.Nullable _totallineitemamount_base; + partial void Ontotallineitemamount_baseChanging(global::System.Nullable value); + partial void Ontotallineitemamount_baseChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -659596,28 +659706,6 @@ public virtual string billto_postalcode partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property description in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string description - { - get - { - return this._description; - } - set - { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); - /// /// There are no comments for Property totalamountlessfreight_base in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -659728,27 +659816,27 @@ public virtual string shipto_country partial void OndiscountamountChanging(global::System.Nullable value); partial void OndiscountamountChanged(); /// - /// There are no comments for Property totallineitemdiscountamount_base in the schema. + /// There are no comments for Property billto_contactname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable totallineitemdiscountamount_base + public virtual string billto_contactname { get { - return this._totallineitemdiscountamount_base; + return this._billto_contactname; } set { - this.Ontotallineitemdiscountamount_baseChanging(value); - this._totallineitemdiscountamount_base = value; - this.Ontotallineitemdiscountamount_baseChanged(); + this.Onbillto_contactnameChanging(value); + this._billto_contactname = value; + this.Onbillto_contactnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totallineitemdiscountamount_base; - partial void Ontotallineitemdiscountamount_baseChanging(global::System.Nullable value); - partial void Ontotallineitemdiscountamount_baseChanged(); + private string _billto_contactname; + partial void Onbillto_contactnameChanging(string value); + partial void Onbillto_contactnameChanged(); /// /// There are no comments for Property salesorderid in the schema. /// @@ -659816,28 +659904,6 @@ public virtual string shipto_contactname partial void Onbillto_addressidChanging(global::System.Nullable value); partial void Onbillto_addressidChanged(); /// - /// There are no comments for Property shipto_line1 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string shipto_line1 - { - get - { - return this._shipto_line1; - } - set - { - this.Onshipto_line1Changing(value); - this._shipto_line1 = value; - this.Onshipto_line1Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _shipto_line1; - partial void Onshipto_line1Changing(string value); - partial void Onshipto_line1Changed(); - /// /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -659882,6 +659948,28 @@ public virtual string shipto_line1 partial void OnprioritycodeChanging(global::System.Nullable value); partial void OnprioritycodeChanged(); /// + /// There are no comments for Property entityimage_url in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string entityimage_url + { + get + { + return this._entityimage_url; + } + set + { + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -659948,27 +660036,27 @@ public virtual string shipto_line1 partial void OntotaltaxChanging(global::System.Nullable value); partial void OntotaltaxChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property shipto_line1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual string shipto_line1 { get { - return this._entityimage_url; + return this._shipto_line1; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.Onshipto_line1Changing(value); + this._shipto_line1 = value; + this.Onshipto_line1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private string _shipto_line1; + partial void Onshipto_line1Changing(string value); + partial void Onshipto_line1Changed(); /// /// There are no comments for Property _opportunityid_value in the schema. /// @@ -660080,27 +660168,27 @@ public virtual string submitstatusdescription partial void OnsubmitstatusdescriptionChanging(string value); partial void OnsubmitstatusdescriptionChanged(); /// - /// There are no comments for Property entityimageid in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimageid + public virtual string description { get { - return this._entityimageid; + return this._description; } set { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property _pricelevelid_value in the schema. /// @@ -660146,28 +660234,6 @@ public virtual string submitstatusdescription partial void OnonholdtimeChanging(global::System.Nullable value); partial void OnonholdtimeChanged(); /// - /// There are no comments for Property totallineitemamount_base in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable totallineitemamount_base - { - get - { - return this._totallineitemamount_base; - } - set - { - this.Ontotallineitemamount_baseChanging(value); - this._totallineitemamount_base = value; - this.Ontotallineitemamount_baseChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _totallineitemamount_base; - partial void Ontotallineitemamount_baseChanging(global::System.Nullable value); - partial void Ontotallineitemamount_baseChanged(); - /// /// There are no comments for Property requestdeliveryby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -660300,6 +660366,28 @@ public virtual string shipto_composite partial void Onshipto_compositeChanging(string value); partial void Onshipto_compositeChanged(); /// + /// There are no comments for Property entityimageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable entityimageid + { + get + { + return this._entityimageid; + } + set + { + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); + /// /// There are no comments for Property totallineitemamount in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -660322,27 +660410,27 @@ public virtual string shipto_composite partial void OntotallineitemamountChanging(global::System.Nullable value); partial void OntotallineitemamountChanged(); /// - /// There are no comments for Property lastbackofficesubmit in the schema. + /// There are no comments for Property submitdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable lastbackofficesubmit + public virtual global::System.Nullable submitdate { get { - return this._lastbackofficesubmit; + return this._submitdate; } set { - this.OnlastbackofficesubmitChanging(value); - this._lastbackofficesubmit = value; - this.OnlastbackofficesubmitChanged(); + this.OnsubmitdateChanging(value); + this._submitdate = value; + this.OnsubmitdateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _lastbackofficesubmit; - partial void OnlastbackofficesubmitChanging(global::System.Nullable value); - partial void OnlastbackofficesubmitChanged(); + private global::System.Nullable _submitdate; + partial void OnsubmitdateChanging(global::System.Nullable value); + partial void OnsubmitdateChanged(); /// /// There are no comments for Property freightamount_base in the schema. /// @@ -660454,28 +660542,6 @@ public virtual string shipto_city partial void OnwillcallChanging(global::System.Nullable value); partial void OnwillcallChanged(); /// - /// There are no comments for Property shipto_freighttermscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable shipto_freighttermscode - { - get - { - return this._shipto_freighttermscode; - } - set - { - this.Onshipto_freighttermscodeChanging(value); - this._shipto_freighttermscode = value; - this.Onshipto_freighttermscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _shipto_freighttermscode; - partial void Onshipto_freighttermscodeChanging(global::System.Nullable value); - partial void Onshipto_freighttermscodeChanged(); - /// /// There are no comments for Property shipto_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -661981,28 +662047,6 @@ public virtual string offlinesqlquery partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -662333,27 +662377,27 @@ public virtual string advancedgroupby partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable solutionid { get { - return this._description; + return this._solutionid; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property fetchxml in the schema. /// @@ -662377,72 +662421,6 @@ public virtual string fetchxml partial void OnfetchxmlChanging(string value); partial void OnfetchxmlChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property savedqueryidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable savedqueryidunique - { - get - { - return this._savedqueryidunique; - } - set - { - this.OnsavedqueryiduniqueChanging(value); - this._savedqueryidunique = value; - this.OnsavedqueryiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _savedqueryidunique; - partial void OnsavedqueryiduniqueChanging(global::System.Nullable value); - partial void OnsavedqueryiduniqueChanged(); - /// - /// There are no comments for Property layoutxml in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string layoutxml - { - get - { - return this._layoutxml; - } - set - { - this.OnlayoutxmlChanging(value); - this._layoutxml = value; - this.OnlayoutxmlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _layoutxml; - partial void OnlayoutxmlChanging(string value); - partial void OnlayoutxmlChanged(); - /// /// There are no comments for Property layoutjson in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -662465,6 +662443,94 @@ public virtual string layoutjson partial void OnlayoutjsonChanging(string value); partial void OnlayoutjsonChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property savedqueryidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable savedqueryidunique + { + get + { + return this._savedqueryidunique; + } + set + { + this.OnsavedqueryiduniqueChanging(value); + this._savedqueryidunique = value; + this.OnsavedqueryiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _savedqueryidunique; + partial void OnsavedqueryiduniqueChanging(global::System.Nullable value); + partial void OnsavedqueryiduniqueChanged(); + /// + /// There are no comments for Property layoutxml in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string layoutxml + { + get + { + return this._layoutxml; + } + set + { + this.OnlayoutxmlChanging(value); + this._layoutxml = value; + this.OnlayoutxmlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _layoutxml; + partial void OnlayoutxmlChanging(string value); + partial void OnlayoutxmlChanged(); + /// + /// There are no comments for Property iscustomizable in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + { + get + { + return this._iscustomizable; + } + set + { + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); + /// /// There are no comments for Property returnedtypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -662509,27 +662575,27 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual string description { get { - return this._iscustomizable; + return this._description; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property queryappusage in the schema. /// @@ -663217,28 +663283,6 @@ public virtual string presentationdescription partial void OnpresentationdescriptionChanging(string value); partial void OnpresentationdescriptionChanged(); /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// /// There are no comments for Property canbedeleted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -663283,27 +663327,27 @@ public virtual string presentationdescription partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property type in the schema. + /// There are no comments for Property isdefault in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable type + public virtual global::System.Nullable isdefault { get { - return this._type; + return this._isdefault; } set { - this.OntypeChanging(value); - this._type = value; - this.OntypeChanged(); + this.OnisdefaultChanging(value); + this._isdefault = value; + this.OnisdefaultChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _type; - partial void OntypeChanging(global::System.Nullable value); - partial void OntypeChanged(); + private global::System.Nullable _isdefault; + partial void OnisdefaultChanging(global::System.Nullable value); + partial void OnisdefaultChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -663349,27 +663393,27 @@ public virtual string presentationdescription partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property savedqueryvisualizationidunique in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable savedqueryvisualizationidunique + public virtual global::System.Nullable ismanaged { get { - return this._savedqueryvisualizationidunique; + return this._ismanaged; } set { - this.OnsavedqueryvisualizationiduniqueChanging(value); - this._savedqueryvisualizationidunique = value; - this.OnsavedqueryvisualizationiduniqueChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _savedqueryvisualizationidunique; - partial void OnsavedqueryvisualizationiduniqueChanging(global::System.Nullable value); - partial void OnsavedqueryvisualizationiduniqueChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property description in the schema. /// @@ -663393,27 +663437,27 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._introducedversion; + return this.__createdonbehalfby_value; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property charttype in the schema. /// @@ -663459,6 +663503,28 @@ public virtual string introducedversion partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// + /// There are no comments for Property type in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable type + { + get + { + return this._type; + } + set + { + this.OntypeChanging(value); + this._type = value; + this.OntypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _type; + partial void OntypeChanging(global::System.Nullable value); + partial void OntypeChanged(); + /// /// There are no comments for Property datadescription in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -663503,49 +663569,49 @@ public virtual string primaryentitytypecode partial void OnprimaryentitytypecodeChanging(string value); partial void OnprimaryentitytypecodeChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable overwritetime { get { - return this._ismanaged; + return this._overwritetime; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable solutionid { get { - return this.__organizationid_value; + return this._solutionid; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -663613,27 +663679,27 @@ public virtual string primaryentitytypecode partial void OnsavedqueryvisualizationidChanging(global::System.Nullable value); partial void OnsavedqueryvisualizationidChanged(); /// - /// There are no comments for Property _webresourceid_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _webresourceid_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__webresourceid_value; + return this.__organizationid_value; } set { - this.On_webresourceid_valueChanging(value); - this.__webresourceid_value = value; - this.On_webresourceid_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __webresourceid_value; - partial void On_webresourceid_valueChanging(global::System.Nullable value); - partial void On_webresourceid_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -663679,93 +663745,93 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property isdefault in the schema. + /// There are no comments for Property iscustomizable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isdefault + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable { get { - return this._isdefault; + return this._iscustomizable; } set { - this.OnisdefaultChanging(value); - this._isdefault = value; - this.OnisdefaultChanged(); + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdefault; - partial void OnisdefaultChanging(global::System.Nullable value); - partial void OnisdefaultChanged(); + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual string introducedversion { get { - return this._iscustomizable; + return this._introducedversion; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property savedqueryvisualizationidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable savedqueryvisualizationidunique { get { - return this.__createdonbehalfby_value; + return this._savedqueryvisualizationidunique; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnsavedqueryvisualizationiduniqueChanging(value); + this._savedqueryvisualizationidunique = value; + this.OnsavedqueryvisualizationiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _savedqueryvisualizationidunique; + partial void OnsavedqueryvisualizationiduniqueChanging(global::System.Nullable value); + partial void OnsavedqueryvisualizationiduniqueChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property _webresourceid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable _webresourceid_value { get { - return this._solutionid; + return this.__webresourceid_value; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.On_webresourceid_valueChanging(value); + this.__webresourceid_value = value; + this.On_webresourceid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable __webresourceid_value; + partial void On_webresourceid_valueChanging(global::System.Nullable value); + partial void On_webresourceid_valueChanged(); /// /// There are no comments for Property SavedQueryVisualization_SyncErrors in the schema. /// @@ -664168,71 +664234,49 @@ public static sdkmessagefilter Createsdkmessagefilter(global::EMBC.ESS.Utilities return sdkmessagefilter; } /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// - /// There are no comments for Property secondaryobjecttypecode in the schema. + /// There are no comments for Property sdkmessagefilteridunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string secondaryobjecttypecode + public virtual global::System.Nullable sdkmessagefilteridunique { get { - return this._secondaryobjecttypecode; + return this._sdkmessagefilteridunique; } set { - this.OnsecondaryobjecttypecodeChanging(value); - this._secondaryobjecttypecode = value; - this.OnsecondaryobjecttypecodeChanged(); + this.OnsdkmessagefilteriduniqueChanging(value); + this._sdkmessagefilteridunique = value; + this.OnsdkmessagefilteriduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _secondaryobjecttypecode; - partial void OnsecondaryobjecttypecodeChanging(string value); - partial void OnsecondaryobjecttypecodeChanged(); + private global::System.Nullable _sdkmessagefilteridunique; + partial void OnsdkmessagefilteriduniqueChanging(global::System.Nullable value); + partial void OnsdkmessagefilteriduniqueChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable ismanaged { get { - return this._overwritetime; + return this._ismanaged; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property sdkmessagefilterid in the schema. /// @@ -664278,71 +664322,49 @@ public virtual string secondaryobjecttypecode partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property customizationlevel in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable customizationlevel - { - get - { - return this._customizationlevel; - } - set - { - this.OncustomizationlevelChanging(value); - this._customizationlevel = value; - this.OncustomizationlevelChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _customizationlevel; - partial void OncustomizationlevelChanging(global::System.Nullable value); - partial void OncustomizationlevelChanged(); - /// - /// There are no comments for Property _sdkmessageid_value in the schema. + /// There are no comments for Property secondaryobjecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _sdkmessageid_value + public virtual string secondaryobjecttypecode { get { - return this.__sdkmessageid_value; + return this._secondaryobjecttypecode; } set { - this.On_sdkmessageid_valueChanging(value); - this.__sdkmessageid_value = value; - this.On_sdkmessageid_valueChanged(); + this.OnsecondaryobjecttypecodeChanging(value); + this._secondaryobjecttypecode = value; + this.OnsecondaryobjecttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __sdkmessageid_value; - partial void On_sdkmessageid_valueChanging(global::System.Nullable value); - partial void On_sdkmessageid_valueChanged(); + private string _secondaryobjecttypecode; + partial void OnsecondaryobjecttypecodeChanging(string value); + partial void OnsecondaryobjecttypecodeChanged(); /// - /// There are no comments for Property isvisible in the schema. + /// There are no comments for Property primaryobjecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isvisible + public virtual string primaryobjecttypecode { get { - return this._isvisible; + return this._primaryobjecttypecode; } set { - this.OnisvisibleChanging(value); - this._isvisible = value; - this.OnisvisibleChanged(); + this.OnprimaryobjecttypecodeChanging(value); + this._primaryobjecttypecode = value; + this.OnprimaryobjecttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isvisible; - partial void OnisvisibleChanging(global::System.Nullable value); - partial void OnisvisibleChanged(); + private string _primaryobjecttypecode; + partial void OnprimaryobjecttypecodeChanging(string value); + partial void OnprimaryobjecttypecodeChanged(); /// /// There are no comments for Property workflowsdkstepenabled in the schema. /// @@ -664366,27 +664388,27 @@ public virtual string secondaryobjecttypecode partial void OnworkflowsdkstepenabledChanging(global::System.Nullable value); partial void OnworkflowsdkstepenabledChanged(); /// - /// There are no comments for Property primaryobjecttypecode in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string primaryobjecttypecode + public virtual global::System.Nullable solutionid { get { - return this._primaryobjecttypecode; + return this._solutionid; } set { - this.OnprimaryobjecttypecodeChanging(value); - this._primaryobjecttypecode = value; - this.OnprimaryobjecttypecodeChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _primaryobjecttypecode; - partial void OnprimaryobjecttypecodeChanging(string value); - partial void OnprimaryobjecttypecodeChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property introducedversion in the schema. /// @@ -664410,27 +664432,27 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// - /// There are no comments for Property sdkmessagefilteridunique in the schema. + /// There are no comments for Property isvisible in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sdkmessagefilteridunique + public virtual global::System.Nullable isvisible { get { - return this._sdkmessagefilteridunique; + return this._isvisible; } set { - this.OnsdkmessagefilteriduniqueChanging(value); - this._sdkmessagefilteridunique = value; - this.OnsdkmessagefilteriduniqueChanged(); + this.OnisvisibleChanging(value); + this._isvisible = value; + this.OnisvisibleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sdkmessagefilteridunique; - partial void OnsdkmessagefilteriduniqueChanging(global::System.Nullable value); - partial void OnsdkmessagefilteriduniqueChanged(); + private global::System.Nullable _isvisible; + partial void OnisvisibleChanging(global::System.Nullable value); + partial void OnisvisibleChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -664520,6 +664542,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property _sdkmessageid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _sdkmessageid_value + { + get + { + return this.__sdkmessageid_value; + } + set + { + this.On_sdkmessageid_valueChanging(value); + this.__sdkmessageid_value = value; + this.On_sdkmessageid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __sdkmessageid_value; + partial void On_sdkmessageid_valueChanging(global::System.Nullable value); + partial void On_sdkmessageid_valueChanged(); + /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -664564,6 +664608,28 @@ public virtual string name partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -664630,27 +664696,27 @@ public virtual string name partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property customizationlevel in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable customizationlevel { get { - return this._solutionid; + return this._customizationlevel; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OncustomizationlevelChanging(value); + this._customizationlevel = value; + this.OncustomizationlevelChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable _customizationlevel; + partial void OncustomizationlevelChanging(global::System.Nullable value); + partial void OncustomizationlevelChanged(); /// /// There are no comments for Property iscustomprocessingstepallowed in the schema. /// @@ -665220,71 +665286,93 @@ public virtual string attributes partial void OnattributesChanging(string value); partial void OnattributesChanged(); /// - /// There are no comments for Property ismanaged in the schema. + /// There are no comments for Property customizationlevel in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable ismanaged + public virtual global::System.Nullable customizationlevel { get { - return this._ismanaged; + return this._customizationlevel; } set { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); + this.OncustomizationlevelChanging(value); + this._customizationlevel = value; + this.OncustomizationlevelChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); + private global::System.Nullable _customizationlevel; + partial void OncustomizationlevelChanging(global::System.Nullable value); + partial void OncustomizationlevelChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property sdkmessageprocessingstepimageidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable sdkmessageprocessingstepimageidunique { get { - return this.__modifiedonbehalfby_value; + return this._sdkmessageprocessingstepimageidunique; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnsdkmessageprocessingstepimageiduniqueChanging(value); + this._sdkmessageprocessingstepimageidunique = value; + this.OnsdkmessageprocessingstepimageiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _sdkmessageprocessingstepimageidunique; + partial void OnsdkmessageprocessingstepimageiduniqueChanging(global::System.Nullable value); + partial void OnsdkmessageprocessingstepimageiduniqueChanged(); /// - /// There are no comments for Property sdkmessageprocessingstepimageidunique in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable sdkmessageprocessingstepimageidunique + public virtual global::System.Nullable _modifiedby_value { get { - return this._sdkmessageprocessingstepimageidunique; + return this.__modifiedby_value; } set { - this.OnsdkmessageprocessingstepimageiduniqueChanging(value); - this._sdkmessageprocessingstepimageidunique = value; - this.OnsdkmessageprocessingstepimageiduniqueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sdkmessageprocessingstepimageidunique; - partial void OnsdkmessageprocessingstepimageiduniqueChanging(global::System.Nullable value); - partial void OnsdkmessageprocessingstepimageiduniqueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// /// There are no comments for Property name in the schema. /// @@ -665308,27 +665396,27 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__modifiedby_value; + return this.__modifiedonbehalfby_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property iscustomizable in the schema. /// @@ -665462,49 +665550,49 @@ public virtual string messagepropertyname partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _sdkmessageprocessingstepid_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _sdkmessageprocessingstepid_value + public virtual global::System.Nullable createdon { get { - return this.__sdkmessageprocessingstepid_value; + return this._createdon; } set { - this.On_sdkmessageprocessingstepid_valueChanging(value); - this.__sdkmessageprocessingstepid_value = value; - this.On_sdkmessageprocessingstepid_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __sdkmessageprocessingstepid_value; - partial void On_sdkmessageprocessingstepid_valueChanging(global::System.Nullable value); - partial void On_sdkmessageprocessingstepid_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property _sdkmessageprocessingstepid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual global::System.Nullable _sdkmessageprocessingstepid_value { get { - return this._solutionid; + return this.__sdkmessageprocessingstepid_value; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.On_sdkmessageprocessingstepid_valueChanging(value); + this.__sdkmessageprocessingstepid_value = value; + this.On_sdkmessageprocessingstepid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private global::System.Nullable __sdkmessageprocessingstepid_value; + partial void On_sdkmessageprocessingstepid_valueChanging(global::System.Nullable value); + partial void On_sdkmessageprocessingstepid_valueChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -665528,28 +665616,6 @@ public virtual string messagepropertyname partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property imagetype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -665572,27 +665638,27 @@ public virtual string messagepropertyname partial void OnimagetypeChanging(global::System.Nullable value); partial void OnimagetypeChanged(); /// - /// There are no comments for Property customizationlevel in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable customizationlevel + public virtual global::System.Nullable solutionid { get { - return this._customizationlevel; + return this._solutionid; } set { - this.OncustomizationlevelChanging(value); - this._customizationlevel = value; - this.OncustomizationlevelChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _customizationlevel; - partial void OncustomizationlevelChanging(global::System.Nullable value); - partial void OncustomizationlevelChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property relatedattributename in the schema. /// @@ -667529,28 +667595,6 @@ public virtual string secureconfig partial void OnsecureconfigChanging(string value); partial void OnsecureconfigChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property customizationlevel in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -667573,49 +667617,49 @@ public virtual string secureconfig partial void OncustomizationlevelChanging(global::System.Nullable value); partial void OncustomizationlevelChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__modifiedby_value; + return this.__createdonbehalfby_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__createdonbehalfby_value; + return this.__modifiedby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -667683,6 +667727,28 @@ public virtual string secureconfig partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -668127,6 +668193,28 @@ public static sdkmessage Createsdkmessage(global::EMBC.ESS.Utilities.Dynamics.Mi return sdkmessage; } /// + /// There are no comments for Property executeprivilegename in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string executeprivilegename + { + get + { + return this._executeprivilegename; + } + set + { + this.OnexecuteprivilegenameChanging(value); + this._executeprivilegename = value; + this.OnexecuteprivilegenameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _executeprivilegename; + partial void OnexecuteprivilegenameChanging(string value); + partial void OnexecuteprivilegenameChanged(); + /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -668149,27 +668237,27 @@ public static sdkmessage Createsdkmessage(global::EMBC.ESS.Utilities.Dynamics.Mi partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property isprivate in the schema. + /// There are no comments for Property throttlesettings in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isprivate + public virtual string throttlesettings { get { - return this._isprivate; + return this._throttlesettings; } set { - this.OnisprivateChanging(value); - this._isprivate = value; - this.OnisprivateChanged(); + this.OnthrottlesettingsChanging(value); + this._throttlesettings = value; + this.OnthrottlesettingsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isprivate; - partial void OnisprivateChanging(global::System.Nullable value); - partial void OnisprivateChanged(); + private string _throttlesettings; + partial void OnthrottlesettingsChanging(string value); + partial void OnthrottlesettingsChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -668281,6 +668369,28 @@ public virtual string introducedversion partial void OnavailabilityChanging(global::System.Nullable value); partial void OnavailabilityChanged(); /// + /// There are no comments for Property isprivate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isprivate + { + get + { + return this._isprivate; + } + set + { + this.OnisprivateChanging(value); + this._isprivate = value; + this.OnisprivateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isprivate; + partial void OnisprivateChanging(global::System.Nullable value); + partial void OnisprivateChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -668325,49 +668435,71 @@ public virtual string introducedversion partial void OntemplateChanging(global::System.Nullable value); partial void OntemplateChanged(); /// - /// There are no comments for Property isvalidforexecuteasync in the schema. + /// There are no comments for Property categoryname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isvalidforexecuteasync + public virtual string categoryname { get { - return this._isvalidforexecuteasync; + return this._categoryname; } set { - this.OnisvalidforexecuteasyncChanging(value); - this._isvalidforexecuteasync = value; - this.OnisvalidforexecuteasyncChanged(); + this.OncategorynameChanging(value); + this._categoryname = value; + this.OncategorynameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isvalidforexecuteasync; - partial void OnisvalidforexecuteasyncChanging(global::System.Nullable value); - partial void OnisvalidforexecuteasyncChanged(); + private string _categoryname; + partial void OncategorynameChanging(string value); + partial void OncategorynameChanged(); /// - /// There are no comments for Property categoryname in the schema. + /// There are no comments for Property sdkmessageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string categoryname + public virtual global::System.Nullable sdkmessageid { get { - return this._categoryname; + return this._sdkmessageid; } set { - this.OncategorynameChanging(value); - this._categoryname = value; - this.OncategorynameChanged(); + this.OnsdkmessageidChanging(value); + this._sdkmessageid = value; + this.OnsdkmessageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _categoryname; - partial void OncategorynameChanging(string value); - partial void OncategorynameChanged(); + private global::System.Nullable _sdkmessageid; + partial void OnsdkmessageidChanging(global::System.Nullable value); + partial void OnsdkmessageidChanged(); + /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property autotransact in the schema. /// @@ -668479,270 +668611,6 @@ public virtual string categoryname partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// - /// There are no comments for Property executeprivilegename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string executeprivilegename - { - get - { - return this._executeprivilegename; - } - set - { - this.OnexecuteprivilegenameChanging(value); - this._executeprivilegename = value; - this.OnexecuteprivilegenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _executeprivilegename; - partial void OnexecuteprivilegenameChanging(string value); - partial void OnexecuteprivilegenameChanged(); - /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// - /// There are no comments for Property customizationlevel in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable customizationlevel - { - get - { - return this._customizationlevel; - } - set - { - this.OncustomizationlevelChanging(value); - this._customizationlevel = value; - this.OncustomizationlevelChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _customizationlevel; - partial void OncustomizationlevelChanging(global::System.Nullable value); - partial void OncustomizationlevelChanged(); - /// - /// There are no comments for Property sdkmessageid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable sdkmessageid - { - get - { - return this._sdkmessageid; - } - set - { - this.OnsdkmessageidChanging(value); - this._sdkmessageid = value; - this.OnsdkmessageidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sdkmessageid; - partial void OnsdkmessageidChanging(global::System.Nullable value); - partial void OnsdkmessageidChanged(); - /// - /// There are no comments for Property sdkmessageidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable sdkmessageidunique - { - get - { - return this._sdkmessageidunique; - } - set - { - this.OnsdkmessageiduniqueChanging(value); - this._sdkmessageidunique = value; - this.OnsdkmessageiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _sdkmessageidunique; - partial void OnsdkmessageiduniqueChanging(global::System.Nullable value); - partial void OnsdkmessageiduniqueChanged(); - /// - /// There are no comments for Property throttlesettings in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string throttlesettings - { - get - { - return this._throttlesettings; - } - set - { - this.OnthrottlesettingsChanging(value); - this._throttlesettings = value; - this.OnthrottlesettingsChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _throttlesettings; - partial void OnthrottlesettingsChanging(string value); - partial void OnthrottlesettingsChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property isreadonly in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -668765,6 +668633,204 @@ public virtual string throttlesettings partial void OnisreadonlyChanging(global::System.Nullable value); partial void OnisreadonlyChanged(); /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// + /// There are no comments for Property sdkmessageidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable sdkmessageidunique + { + get + { + return this._sdkmessageidunique; + } + set + { + this.OnsdkmessageiduniqueChanging(value); + this._sdkmessageidunique = value; + this.OnsdkmessageiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _sdkmessageidunique; + partial void OnsdkmessageiduniqueChanging(global::System.Nullable value); + partial void OnsdkmessageiduniqueChanged(); + /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// + /// There are no comments for Property customizationlevel in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable customizationlevel + { + get + { + return this._customizationlevel; + } + set + { + this.OncustomizationlevelChanging(value); + this._customizationlevel = value; + this.OncustomizationlevelChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _customizationlevel; + partial void OncustomizationlevelChanging(global::System.Nullable value); + partial void OncustomizationlevelChanged(); + /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// + /// There are no comments for Property isvalidforexecuteasync in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isvalidforexecuteasync + { + get + { + return this._isvalidforexecuteasync; + } + set + { + this.OnisvalidforexecuteasyncChanging(value); + this._isvalidforexecuteasync = value; + this.OnisvalidforexecuteasyncChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isvalidforexecuteasync; + partial void OnisvalidforexecuteasyncChanging(global::System.Nullable value); + partial void OnisvalidforexecuteasyncChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -669198,6 +669264,28 @@ public static semiannualfiscalcalendar Createsemiannualfiscalcalendar(global::EM return semiannualfiscalcalendar; } /// + /// There are no comments for Property fiscalperiodtype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable fiscalperiodtype + { + get + { + return this._fiscalperiodtype; + } + set + { + this.OnfiscalperiodtypeChanging(value); + this._fiscalperiodtype = value; + this.OnfiscalperiodtypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _fiscalperiodtype; + partial void OnfiscalperiodtypeChanging(global::System.Nullable value); + partial void OnfiscalperiodtypeChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -669264,6 +669352,28 @@ public static semiannualfiscalcalendar Createsemiannualfiscalcalendar(global::EM partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// + /// There are no comments for Property firsthalf in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable firsthalf + { + get + { + return this._firsthalf; + } + set + { + this.OnfirsthalfChanging(value); + this._firsthalf = value; + this.OnfirsthalfChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _firsthalf; + partial void OnfirsthalfChanging(global::System.Nullable value); + partial void OnfirsthalfChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -669330,28 +669440,6 @@ public static semiannualfiscalcalendar Createsemiannualfiscalcalendar(global::EM partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property secondhalf in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -669418,28 +669506,6 @@ public static semiannualfiscalcalendar Createsemiannualfiscalcalendar(global::EM partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property _businessunitid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -669462,6 +669528,28 @@ public static semiannualfiscalcalendar Createsemiannualfiscalcalendar(global::EM partial void On_businessunitid_valueChanging(global::System.Nullable value); partial void On_businessunitid_valueChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property userfiscalcalendarid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -669550,28 +669638,6 @@ public static semiannualfiscalcalendar Createsemiannualfiscalcalendar(global::EM partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property fiscalperiodtype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable fiscalperiodtype - { - get - { - return this._fiscalperiodtype; - } - set - { - this.OnfiscalperiodtypeChanging(value); - this._fiscalperiodtype = value; - this.OnfiscalperiodtypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _fiscalperiodtype; - partial void OnfiscalperiodtypeChanging(global::System.Nullable value); - partial void OnfiscalperiodtypeChanged(); - /// /// There are no comments for Property _salespersonid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -669594,27 +669660,27 @@ public static semiannualfiscalcalendar Createsemiannualfiscalcalendar(global::EM partial void On_salespersonid_valueChanging(global::System.Nullable value); partial void On_salespersonid_valueChanged(); /// - /// There are no comments for Property firsthalf in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable firsthalf + public virtual global::System.Nullable _modifiedby_value { get { - return this._firsthalf; + return this.__modifiedby_value; } set { - this.OnfirsthalfChanging(value); - this._firsthalf = value; - this.OnfirsthalfChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _firsthalf; - partial void OnfirsthalfChanging(global::System.Nullable value); - partial void OnfirsthalfChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property secondhalf_base in the schema. /// @@ -673070,71 +673136,71 @@ public virtual string category partial void OncategoryChanging(string value); partial void OncategoryChanged(); /// - /// There are no comments for Property location in the schema. + /// There are no comments for Property subscriptionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string location + public virtual global::System.Nullable subscriptionid { get { - return this._location; + return this._subscriptionid; } set { - this.OnlocationChanging(value); - this._location = value; - this.OnlocationChanged(); + this.OnsubscriptionidChanging(value); + this._subscriptionid = value; + this.OnsubscriptionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _location; - partial void OnlocationChanging(string value); - partial void OnlocationChanged(); + private global::System.Nullable _subscriptionid; + partial void OnsubscriptionidChanging(global::System.Nullable value); + partial void OnsubscriptionidChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable overriddencreatedon { get { - return this._importsequencenumber; + return this._overriddencreatedon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property subscriptionid in the schema. + /// There are no comments for Property location in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable subscriptionid + public virtual string location { get { - return this._subscriptionid; + return this._location; } set { - this.OnsubscriptionidChanging(value); - this._subscriptionid = value; - this.OnsubscriptionidChanged(); + this.OnlocationChanging(value); + this._location = value; + this.OnlocationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _subscriptionid; - partial void OnsubscriptionidChanging(global::System.Nullable value); - partial void OnsubscriptionidChanged(); + private string _location; + partial void OnlocationChanging(string value); + partial void OnlocationChanged(); /// /// There are no comments for Property _siteid_value in the schema. /// @@ -673180,27 +673246,27 @@ public virtual string subcategory partial void OnsubcategoryChanging(string value); partial void OnsubcategoryChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable importsequencenumber { get { - return this._overriddencreatedon; + return this._importsequencenumber; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property regardingobjectid_msdyn_postalbum_serviceappointment in the schema. /// @@ -675078,28 +675144,6 @@ public static serviceendpoint Createserviceendpoint(global::EMBC.ESS.Utilities.D return serviceendpoint; } /// - /// There are no comments for Property serviceendpointid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable serviceendpointid - { - get - { - return this._serviceendpointid; - } - set - { - this.OnserviceendpointidChanging(value); - this._serviceendpointid = value; - this.OnserviceendpointidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _serviceendpointid; - partial void OnserviceendpointidChanging(global::System.Nullable value); - partial void OnserviceendpointidChanged(); - /// /// There are no comments for Property sastoken in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -675122,28 +675166,6 @@ public virtual string sastoken partial void OnsastokenChanging(string value); partial void OnsastokenChanged(); /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -675210,27 +675232,27 @@ public virtual string url partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable componentstate { get { - return this._modifiedon; + return this._componentstate; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property authvalue in the schema. /// @@ -675276,49 +675298,49 @@ public virtual string authvalue partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property iscustomizable in the schema. + /// There are no comments for Property userclaim in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + public virtual global::System.Nullable userclaim { get { - return this._iscustomizable; + return this._userclaim; } set { - this.OniscustomizableChanging(value); - this._iscustomizable = value; - this.OniscustomizableChanged(); + this.OnuserclaimChanging(value); + this._userclaim = value; + this.OnuserclaimChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; - partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); - partial void OniscustomizableChanged(); + private global::System.Nullable _userclaim; + partial void OnuserclaimChanging(global::System.Nullable value); + partial void OnuserclaimChanged(); /// - /// There are no comments for Property userclaim in the schema. + /// There are no comments for Property path in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable userclaim + public virtual string path { get { - return this._userclaim; + return this._path; } set { - this.OnuserclaimChanging(value); - this._userclaim = value; - this.OnuserclaimChanged(); + this.OnpathChanging(value); + this._path = value; + this.OnpathChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _userclaim; - partial void OnuserclaimChanging(global::System.Nullable value); - partial void OnuserclaimChanged(); + private string _path; + partial void OnpathChanging(string value); + partial void OnpathChanged(); /// /// There are no comments for Property name in the schema. /// @@ -675342,6 +675364,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property serviceendpointid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable serviceendpointid + { + get + { + return this._serviceendpointid; + } + set + { + this.OnserviceendpointidChanging(value); + this._serviceendpointid = value; + this.OnserviceendpointidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _serviceendpointid; + partial void OnserviceendpointidChanging(global::System.Nullable value); + partial void OnserviceendpointidChanged(); + /// /// There are no comments for Property issaskeyset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -675430,27 +675474,27 @@ public virtual string name partial void OnissastokensetChanging(global::System.Nullable value); partial void OnissastokensetChanged(); /// - /// There are no comments for Property messageformat in the schema. + /// There are no comments for Property solutionnamespace in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable messageformat + public virtual string solutionnamespace { get { - return this._messageformat; + return this._solutionnamespace; } set { - this.OnmessageformatChanging(value); - this._messageformat = value; - this.OnmessageformatChanged(); + this.OnsolutionnamespaceChanging(value); + this._solutionnamespace = value; + this.OnsolutionnamespaceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _messageformat; - partial void OnmessageformatChanging(global::System.Nullable value); - partial void OnmessageformatChanged(); + private string _solutionnamespace; + partial void OnsolutionnamespaceChanging(string value); + partial void OnsolutionnamespaceChanged(); /// /// There are no comments for Property saskey in the schema. /// @@ -675518,6 +675562,50 @@ public virtual string saskey partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property isauthvalueset in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isauthvalueset + { + get + { + return this._isauthvalueset; + } + set + { + this.OnisauthvaluesetChanging(value); + this._isauthvalueset = value; + this.OnisauthvaluesetChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isauthvalueset; + partial void OnisauthvaluesetChanging(global::System.Nullable value); + partial void OnisauthvaluesetChanged(); + /// + /// There are no comments for Property iscustomizable in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty iscustomizable + { + get + { + return this._iscustomizable; + } + set + { + this.OniscustomizableChanging(value); + this._iscustomizable = value; + this.OniscustomizableChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty _iscustomizable; + partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); + partial void OniscustomizableChanged(); + /// /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -675628,49 +675716,49 @@ public virtual string namespaceaddress partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._componentstate; + return this.__modifiedonbehalfby_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable modifiedon { get { - return this.__modifiedonbehalfby_value; + return this._modifiedon; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property contract in the schema. /// @@ -675716,93 +675804,71 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// - /// There are no comments for Property isauthvalueset in the schema. + /// There are no comments for Property messageformat in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isauthvalueset + public virtual global::System.Nullable messageformat { get { - return this._isauthvalueset; + return this._messageformat; } set { - this.OnisauthvaluesetChanging(value); - this._isauthvalueset = value; - this.OnisauthvaluesetChanged(); + this.OnmessageformatChanging(value); + this._messageformat = value; + this.OnmessageformatChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isauthvalueset; - partial void OnisauthvaluesetChanging(global::System.Nullable value); - partial void OnisauthvaluesetChanged(); + private global::System.Nullable _messageformat; + partial void OnmessageformatChanging(global::System.Nullable value); + partial void OnmessageformatChanged(); /// - /// There are no comments for Property path in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string path + public virtual global::System.Nullable _organizationid_value { get { - return this._path; + return this.__organizationid_value; } set { - this.OnpathChanging(value); - this._path = value; - this.OnpathChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _path; - partial void OnpathChanging(string value); - partial void OnpathChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property solutionnamespace in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string solutionnamespace + public virtual global::System.Nullable overwritetime { get { - return this._solutionnamespace; + return this._overwritetime; } set { - this.OnsolutionnamespaceChanging(value); - this._solutionnamespace = value; - this.OnsolutionnamespaceChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _solutionnamespace; - partial void OnsolutionnamespaceChanging(string value); - partial void OnsolutionnamespaceChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property saskeyname in the schema. /// @@ -676614,28 +676680,6 @@ public static serviceplan Createserviceplan(global::EMBC.ESS.Utilities.Dynamics. partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable utcconversiontimezonecode - { - get - { - return this._utcconversiontimezonecode; - } - set - { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); - /// /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -676658,49 +676702,49 @@ public static serviceplan Createserviceplan(global::EMBC.ESS.Utilities.Dynamics. partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property displayname in the schema. + /// There are no comments for Property accessmode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string displayname + public virtual global::System.Nullable accessmode { get { - return this._displayname; + return this._accessmode; } set { - this.OndisplaynameChanging(value); - this._displayname = value; - this.OndisplaynameChanged(); + this.OnaccessmodeChanging(value); + this._accessmode = value; + this.OnaccessmodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _displayname; - partial void OndisplaynameChanging(string value); - partial void OndisplaynameChanged(); + private global::System.Nullable _accessmode; + partial void OnaccessmodeChanging(global::System.Nullable value); + partial void OnaccessmodeChanged(); /// - /// There are no comments for Property accessmode in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable accessmode + public virtual global::System.Nullable overriddencreatedon { get { - return this._accessmode; + return this._overriddencreatedon; } set { - this.OnaccessmodeChanging(value); - this._accessmode = value; - this.OnaccessmodeChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _accessmode; - partial void OnaccessmodeChanging(global::System.Nullable value); - partial void OnaccessmodeChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property name in the schema. /// @@ -676724,27 +676768,49 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._importsequencenumber; + return this._utcconversiontimezonecode; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -676812,28 +676878,6 @@ public virtual string name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -676878,27 +676922,49 @@ public virtual string name partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// - /// There are no comments for Property serviceplanid in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable serviceplanid + public virtual global::System.Nullable importsequencenumber { get { - return this._serviceplanid; + return this._importsequencenumber; } set { - this.OnserviceplanidChanging(value); - this._serviceplanid = value; - this.OnserviceplanidChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _serviceplanid; - partial void OnserviceplanidChanging(global::System.Nullable value); - partial void OnserviceplanidChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// + /// There are no comments for Property displayname in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string displayname + { + get + { + return this._displayname; + } + set + { + this.OndisplaynameChanging(value); + this._displayname = value; + this.OndisplaynameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _displayname; + partial void OndisplaynameChanging(string value); + partial void OndisplaynameChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -676966,6 +677032,28 @@ public virtual string name partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// + /// There are no comments for Property serviceplanid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable serviceplanid + { + get + { + return this._serviceplanid; + } + set + { + this.OnserviceplanidChanging(value); + this._serviceplanid = value; + this.OnserviceplanidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _serviceplanid; + partial void OnserviceplanidChanging(global::System.Nullable value); + partial void OnserviceplanidChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -677010,28 +677098,6 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -678155,27 +678221,27 @@ public static service Createservice(global::EMBC.ESS.Utilities.Dynamics.Microsof return service; } /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property initialstatuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable initialstatuscode { get { - return this._timezoneruleversionnumber; + return this._initialstatuscode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OninitialstatuscodeChanging(value); + this._initialstatuscode = value; + this.OninitialstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _initialstatuscode; + partial void OninitialstatuscodeChanging(global::System.Nullable value); + partial void OninitialstatuscodeChanged(); /// /// There are no comments for Property duration in the schema. /// @@ -678199,49 +678265,49 @@ public static service Createservice(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void OndurationChanging(global::System.Nullable value); partial void OndurationChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string name { get { - return this.__modifiedonbehalfby_value; + return this._name; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property isvisible in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable isvisible { get { - return this._name; + return this._isvisible; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnisvisibleChanging(value); + this._isvisible = value; + this.OnisvisibleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _isvisible; + partial void OnisvisibleChanging(global::System.Nullable value); + partial void OnisvisibleChanged(); /// /// There are no comments for Property anchoroffset in the schema. /// @@ -678309,28 +678375,6 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property initialstatuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable initialstatuscode - { - get - { - return this._initialstatuscode; - } - set - { - this.OninitialstatuscodeChanging(value); - this._initialstatuscode = value; - this.OninitialstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _initialstatuscode; - partial void OninitialstatuscodeChanging(global::System.Nullable value); - partial void OninitialstatuscodeChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -678375,6 +678419,28 @@ public virtual string description partial void OncalendaridChanging(global::System.Nullable value); partial void OncalendaridChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -678485,28 +678551,6 @@ public virtual string granularity partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property isschedulable in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isschedulable - { - get - { - return this._isschedulable; - } - set - { - this.OnisschedulableChanging(value); - this._isschedulable = value; - this.OnisschedulableChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isschedulable; - partial void OnisschedulableChanging(global::System.Nullable value); - partial void OnisschedulableChanged(); - /// /// There are no comments for Property showresources in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -678529,27 +678573,27 @@ public virtual string granularity partial void OnshowresourcesChanging(global::System.Nullable value); partial void OnshowresourcesChanged(); /// - /// There are no comments for Property isvisible in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isvisible + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._isvisible; + return this._timezoneruleversionnumber; } set { - this.OnisvisibleChanging(value); - this._isvisible = value; - this.OnisvisibleChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isvisible; - partial void OnisvisibleChanging(global::System.Nullable value); - partial void OnisvisibleChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -678573,71 +678617,71 @@ public virtual string granularity partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable modifiedon { get { - return this._importsequencenumber; + return this._modifiedon; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _resourcespecid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _resourcespecid_value { get { - return this.__createdby_value; + return this.__resourcespecid_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_resourcespecid_valueChanging(value); + this.__resourcespecid_value = value; + this.On_resourcespecid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __resourcespecid_value; + partial void On_resourcespecid_valueChanging(global::System.Nullable value); + partial void On_resourcespecid_valueChanged(); /// - /// There are no comments for Property _resourcespecid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _resourcespecid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__resourcespecid_value; + return this._importsequencenumber; } set { - this.On_resourcespecid_valueChanging(value); - this.__resourcespecid_value = value; - this.On_resourcespecid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __resourcespecid_value; - partial void On_resourcespecid_valueChanging(global::System.Nullable value); - partial void On_resourcespecid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _strategyid_value in the schema. /// @@ -678661,27 +678705,49 @@ public virtual string granularity partial void On_strategyid_valueChanging(global::System.Nullable value); partial void On_strategyid_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property isschedulable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable isschedulable { get { - return this._modifiedon; + return this._isschedulable; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnisschedulableChanging(value); + this._isschedulable = value; + this.OnisschedulableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _isschedulable; + partial void OnisschedulableChanging(global::System.Nullable value); + partial void OnisschedulableChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -680444,28 +680510,6 @@ public virtual string description partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -680554,6 +680598,50 @@ public virtual string description partial void OnuseridChanging(global::System.Nullable value); partial void OnuseridChanged(); /// + /// There are no comments for Property relativeurl in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string relativeurl + { + get + { + return this._relativeurl; + } + set + { + this.OnrelativeurlChanging(value); + this._relativeurl = value; + this.OnrelativeurlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _relativeurl; + partial void OnrelativeurlChanging(string value); + partial void OnrelativeurlChanged(); + /// + /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _transactioncurrencyid_value + { + get + { + return this.__transactioncurrencyid_value; + } + set + { + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -680774,27 +680862,49 @@ public virtual string name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__transactioncurrencyid_value; + return this._timezoneruleversionnumber; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property statecode in the schema. /// @@ -680906,28 +681016,6 @@ public virtual string name partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property relativeurl in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string relativeurl - { - get - { - return this._relativeurl; - } - set - { - this.OnrelativeurlChanging(value); - this._relativeurl = value; - this.OnrelativeurlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _relativeurl; - partial void OnrelativeurlChanging(string value); - partial void OnrelativeurlChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -680994,28 +681082,6 @@ public virtual string relativeurl partial void OnsharepointdocumentlocationidChanging(global::System.Nullable value); partial void OnsharepointdocumentlocationidChanged(); /// - /// There are no comments for Property servicetype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable servicetype - { - get - { - return this._servicetype; - } - set - { - this.OnservicetypeChanging(value); - this._servicetype = value; - this.OnservicetypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _servicetype; - partial void OnservicetypeChanging(global::System.Nullable value); - partial void OnservicetypeChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -681038,27 +681104,27 @@ public virtual string relativeurl partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property servicetype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable servicetype { get { - return this._utcconversiontimezonecode; + return this._servicetype; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnservicetypeChanging(value); + this._servicetype = value; + this.OnservicetypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _servicetype; + partial void OnservicetypeChanging(global::System.Nullable value); + partial void OnservicetypeChanged(); /// /// There are no comments for Property regardingobjectid_knowledgearticle in the schema. /// @@ -682400,6 +682466,28 @@ public static sharepointsite Createsharepointsite(global::EMBC.ESS.Utilities.Dyn partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property absoluteurl in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string absoluteurl + { + get + { + return this._absoluteurl; + } + set + { + this.OnabsoluteurlChanging(value); + this._absoluteurl = value; + this.OnabsoluteurlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _absoluteurl; + partial void OnabsoluteurlChanging(string value); + partial void OnabsoluteurlChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -682532,49 +682620,27 @@ public virtual string name partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property absoluteurl in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string absoluteurl - { - get - { - return this._absoluteurl; - } - set - { - this.OnabsoluteurlChanging(value); - this._absoluteurl = value; - this.OnabsoluteurlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _absoluteurl; - partial void OnabsoluteurlChanging(string value); - partial void OnabsoluteurlChanged(); - /// - /// There are no comments for Property validationstatuserrorcode in the schema. + /// There are no comments for Property isgridpresent in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable validationstatuserrorcode + public virtual global::System.Nullable isgridpresent { get { - return this._validationstatuserrorcode; + return this._isgridpresent; } set { - this.OnvalidationstatuserrorcodeChanging(value); - this._validationstatuserrorcode = value; - this.OnvalidationstatuserrorcodeChanged(); + this.OnisgridpresentChanging(value); + this._isgridpresent = value; + this.OnisgridpresentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _validationstatuserrorcode; - partial void OnvalidationstatuserrorcodeChanging(global::System.Nullable value); - partial void OnvalidationstatuserrorcodeChanged(); + private global::System.Nullable _isgridpresent; + partial void OnisgridpresentChanging(global::System.Nullable value); + partial void OnisgridpresentChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -682642,6 +682708,28 @@ public virtual string absoluteurl partial void OnservicetypeChanging(global::System.Nullable value); partial void OnservicetypeChanged(); /// + /// There are no comments for Property validationstatuserrorcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable validationstatuserrorcode + { + get + { + return this._validationstatuserrorcode; + } + set + { + this.OnvalidationstatuserrorcodeChanging(value); + this._validationstatuserrorcode = value; + this.OnvalidationstatuserrorcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _validationstatuserrorcode; + partial void OnvalidationstatuserrorcodeChanging(global::System.Nullable value); + partial void OnvalidationstatuserrorcodeChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -682730,6 +682818,28 @@ public virtual string absoluteurl partial void OnsitecollectionidChanging(global::System.Nullable value); partial void OnsitecollectionidChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property relativeurl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -682796,28 +682906,6 @@ public virtual string relativeurl partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -682972,28 +683060,6 @@ public virtual string description partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property isgridpresent in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isgridpresent - { - get - { - return this._isgridpresent; - } - set - { - this.OnisgridpresentChanging(value); - this._isgridpresent = value; - this.OnisgridpresentChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isgridpresent; - partial void OnisgridpresentChanging(global::System.Nullable value); - partial void OnisgridpresentChanged(); - /// /// There are no comments for Property sharepointsiteid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -683670,27 +683736,49 @@ public static similarityrule Createsimilarityrule(global::EMBC.ESS.Utilities.Dyn return similarityrule; } /// - /// There are no comments for Property similarityruleid in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable similarityruleid + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._similarityruleid; + return this._utcconversiontimezonecode; } set { - this.OnsimilarityruleidChanging(value); - this._similarityruleid = value; - this.OnsimilarityruleidChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _similarityruleid; - partial void OnsimilarityruleidChanging(global::System.Nullable value); - partial void OnsimilarityruleidChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property similarityruleidunique in the schema. /// @@ -683758,6 +683846,28 @@ public static similarityrule Createsimilarityrule(global::EMBC.ESS.Utilities.Dyn partial void OnbaseentitytypecodeChanging(global::System.Nullable value); partial void OnbaseentitytypecodeChanged(); /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -683824,27 +683934,27 @@ public static similarityrule Createsimilarityrule(global::EMBC.ESS.Utilities.Dyn partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual string description { get { - return this.__transactioncurrencyid_value; + return this._description; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property excludeinactiverecords in the schema. /// @@ -683890,49 +684000,49 @@ public virtual string ruleconditionxml partial void OnruleconditionxmlChanging(string value); partial void OnruleconditionxmlChanged(); /// - /// There are no comments for Property maxkeywords in the schema. + /// There are no comments for Property activerulefetchxml in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable maxkeywords + public virtual string activerulefetchxml { get { - return this._maxkeywords; + return this._activerulefetchxml; } set { - this.OnmaxkeywordsChanging(value); - this._maxkeywords = value; - this.OnmaxkeywordsChanged(); + this.OnactiverulefetchxmlChanging(value); + this._activerulefetchxml = value; + this.OnactiverulefetchxmlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _maxkeywords; - partial void OnmaxkeywordsChanging(global::System.Nullable value); - partial void OnmaxkeywordsChanged(); + private string _activerulefetchxml; + partial void OnactiverulefetchxmlChanging(string value); + partial void OnactiverulefetchxmlChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._utcconversiontimezonecode; + return this.__createdonbehalfby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -683956,71 +684066,27 @@ public virtual string ruleconditionxml partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property similarityruleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable similarityruleid { get { - return this._componentstate; + return this._similarityruleid; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnsimilarityruleidChanging(value); + this._similarityruleid = value; + this.OnsimilarityruleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _similarityruleid; + partial void OnsimilarityruleidChanging(global::System.Nullable value); + partial void OnsimilarityruleidChanged(); /// /// There are no comments for Property baseentityname in the schema. /// @@ -684132,27 +684198,71 @@ public virtual string fetchxmllist partial void OnfetchxmllistChanging(string value); partial void OnfetchxmllistChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._statuscode; + return this.__transactioncurrencyid_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// + /// There are no comments for Property name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string name + { + get + { + return this._name; + } + set + { + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -684176,27 +684286,27 @@ public virtual string fetchxmllist partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property maxkeywords in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable maxkeywords { get { - return this._description; + return this._maxkeywords; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnmaxkeywordsChanging(value); + this._maxkeywords = value; + this.OnmaxkeywordsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _maxkeywords; + partial void OnmaxkeywordsChanging(global::System.Nullable value); + partial void OnmaxkeywordsChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -684242,28 +684352,6 @@ public virtual string description partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -684286,28 +684374,6 @@ public virtual string description partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property activerulefetchxml in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string activerulefetchxml - { - get - { - return this._activerulefetchxml; - } - set - { - this.OnactiverulefetchxmlChanging(value); - this._activerulefetchxml = value; - this.OnactiverulefetchxmlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _activerulefetchxml; - partial void OnactiverulefetchxmlChanging(string value); - partial void OnactiverulefetchxmlChanged(); - /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -684330,27 +684396,27 @@ public virtual string activerulefetchxml partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable modifiedon { get { - return this._overriddencreatedon; + return this._modifiedon; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property matchingentityname in the schema. /// @@ -684688,28 +684754,6 @@ public static sitemap Createsitemap(global::EMBC.ESS.Utilities.Dynamics.Microsof return sitemap; } /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -684732,71 +684776,71 @@ public static sitemap Createsitemap(global::EMBC.ESS.Utilities.Dynamics.Microsof partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property sitemapxml in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string sitemapxml + public virtual global::System.Nullable overwritetime { get { - return this._sitemapxml; + return this._overwritetime; } set { - this.OnsitemapxmlChanging(value); - this._sitemapxml = value; - this.OnsitemapxmlChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sitemapxml; - partial void OnsitemapxmlChanging(string value); - partial void OnsitemapxmlChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property sitemapnameunique in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string sitemapnameunique + public virtual global::System.Nullable versionnumber { get { - return this._sitemapnameunique; + return this._versionnumber; } set { - this.OnsitemapnameuniqueChanging(value); - this._sitemapnameunique = value; - this.OnsitemapnameuniqueChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _sitemapnameunique; - partial void OnsitemapnameuniqueChanging(string value); - partial void OnsitemapnameuniqueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property sitemapnameunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string sitemapnameunique { get { - return this.__createdby_value; + return this._sitemapnameunique; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnsitemapnameuniqueChanging(value); + this._sitemapnameunique = value; + this.OnsitemapnameuniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _sitemapnameunique; + partial void OnsitemapnameuniqueChanging(string value); + partial void OnsitemapnameuniqueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -684842,49 +684886,27 @@ public virtual string sitemapnameunique partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _organizationid_value { get { - return this.__createdonbehalfby_value; + return this.__organizationid_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property sitemapidunique in the schema. /// @@ -684908,28 +684930,6 @@ public virtual string sitemapnameunique partial void OnsitemapiduniqueChanging(global::System.Nullable value); partial void OnsitemapiduniqueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -684952,27 +684952,27 @@ public virtual string sitemapnameunique partial void OncomponentstateChanging(global::System.Nullable value); partial void OncomponentstateChanged(); /// - /// There are no comments for Property isappaware in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isappaware + public virtual global::System.Nullable _createdby_value { get { - return this._isappaware; + return this.__createdby_value; } set { - this.OnisappawareChanging(value); - this._isappaware = value; - this.OnisappawareChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isappaware; - partial void OnisappawareChanging(global::System.Nullable value); - partial void OnisappawareChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property sitemapname in the schema. /// @@ -684996,27 +684996,49 @@ public virtual string sitemapname partial void OnsitemapnameChanging(string value); partial void OnsitemapnameChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__organizationid_value; + return this.__createdonbehalfby_value; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property solutionid in the schema. /// @@ -685062,6 +685084,50 @@ public virtual string sitemapname partial void OnsitemapidChanging(global::System.Nullable value); partial void OnsitemapidChanged(); /// + /// There are no comments for Property sitemapxml in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string sitemapxml + { + get + { + return this._sitemapxml; + } + set + { + this.OnsitemapxmlChanging(value); + this._sitemapxml = value; + this.OnsitemapxmlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _sitemapxml; + partial void OnsitemapxmlChanging(string value); + partial void OnsitemapxmlChanged(); + /// + /// There are no comments for Property isappaware in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isappaware + { + get + { + return this._isappaware; + } + set + { + this.OnisappawareChanging(value); + this._isappaware = value; + this.OnisappawareChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isappaware; + partial void OnisappawareChanging(global::System.Nullable value); + partial void OnisappawareChanged(); + /// /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -685891,49 +685957,27 @@ public static site Createsite(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dyna return site; } /// - /// There are no comments for Property address1_telephone2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address1_telephone2 - { - get - { - return this._address1_telephone2; - } - set - { - this.Onaddress1_telephone2Changing(value); - this._address1_telephone2 = value; - this.Onaddress1_telephone2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone2; - partial void Onaddress1_telephone2Changing(string value); - partial void Onaddress1_telephone2Changed(); - /// - /// There are no comments for Property address2_line3 in the schema. + /// There are no comments for Property address2_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_line3 + public virtual string address2_city { get { - return this._address2_line3; + return this._address2_city; } set { - this.Onaddress2_line3Changing(value); - this._address2_line3 = value; - this.Onaddress2_line3Changed(); + this.Onaddress2_cityChanging(value); + this._address2_city = value; + this.Onaddress2_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line3; - partial void Onaddress2_line3Changing(string value); - partial void Onaddress2_line3Changed(); + private string _address2_city; + partial void Onaddress2_cityChanging(string value); + partial void Onaddress2_cityChanged(); /// /// There are no comments for Property address2_latitude in the schema. /// @@ -685979,27 +686023,27 @@ public virtual string address2_line2 partial void Onaddress2_line2Changing(string value); partial void Onaddress2_line2Changed(); /// - /// There are no comments for Property address1_fax in the schema. + /// There are no comments for Property address1_country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_fax + public virtual string address1_country { get { - return this._address1_fax; + return this._address1_country; } set { - this.Onaddress1_faxChanging(value); - this._address1_fax = value; - this.Onaddress1_faxChanged(); + this.Onaddress1_countryChanging(value); + this._address1_country = value; + this.Onaddress1_countryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_fax; - partial void Onaddress1_faxChanging(string value); - partial void Onaddress1_faxChanged(); + private string _address1_country; + partial void Onaddress1_countryChanging(string value); + partial void Onaddress1_countryChanged(); /// /// There are no comments for Property address2_addresstypecode in the schema. /// @@ -686067,49 +686111,27 @@ public virtual string address1_fax partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property address2_line1 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_line1 - { - get - { - return this._address2_line1; - } - set - { - this.Onaddress2_line1Changing(value); - this._address2_line1 = value; - this.Onaddress2_line1Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line1; - partial void Onaddress2_line1Changing(string value); - partial void Onaddress2_line1Changed(); - /// - /// There are no comments for Property address1_telephone3 in the schema. + /// There are no comments for Property address1_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone3 + public virtual string address1_postofficebox { get { - return this._address1_telephone3; + return this._address1_postofficebox; } set { - this.Onaddress1_telephone3Changing(value); - this._address1_telephone3 = value; - this.Onaddress1_telephone3Changed(); + this.Onaddress1_postofficeboxChanging(value); + this._address1_postofficebox = value; + this.Onaddress1_postofficeboxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone3; - partial void Onaddress1_telephone3Changing(string value); - partial void Onaddress1_telephone3Changed(); + private string _address1_postofficebox; + partial void Onaddress1_postofficeboxChanging(string value); + partial void Onaddress1_postofficeboxChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -686133,49 +686155,27 @@ public virtual string address1_telephone3 partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property address2_stateorprovince in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_stateorprovince - { - get - { - return this._address2_stateorprovince; - } - set - { - this.Onaddress2_stateorprovinceChanging(value); - this._address2_stateorprovince = value; - this.Onaddress2_stateorprovinceChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_stateorprovince; - partial void Onaddress2_stateorprovinceChanging(string value); - partial void Onaddress2_stateorprovinceChanged(); - /// - /// There are no comments for Property address2_postalcode in the schema. + /// There are no comments for Property address1_telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_postalcode + public virtual string address1_telephone3 { get { - return this._address2_postalcode; + return this._address1_telephone3; } set { - this.Onaddress2_postalcodeChanging(value); - this._address2_postalcode = value; - this.Onaddress2_postalcodeChanged(); + this.Onaddress1_telephone3Changing(value); + this._address1_telephone3 = value; + this.Onaddress1_telephone3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_postalcode; - partial void Onaddress2_postalcodeChanging(string value); - partial void Onaddress2_postalcodeChanged(); + private string _address1_telephone3; + partial void Onaddress1_telephone3Changing(string value); + partial void Onaddress1_telephone3Changed(); /// /// There are no comments for Property emailaddress in the schema. /// @@ -686265,6 +686265,28 @@ public virtual string address2_postofficebox partial void Onaddress2_postofficeboxChanging(string value); partial void Onaddress2_postofficeboxChanged(); /// + /// There are no comments for Property address1_addresstypecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address1_addresstypecode + { + get + { + return this._address1_addresstypecode; + } + set + { + this.Onaddress1_addresstypecodeChanging(value); + this._address1_addresstypecode = value; + this.Onaddress1_addresstypecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address1_addresstypecode; + partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); + partial void Onaddress1_addresstypecodeChanged(); + /// /// There are no comments for Property address1_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -686287,71 +686309,71 @@ public virtual string address1_city partial void Onaddress1_cityChanging(string value); partial void Onaddress1_cityChanged(); /// - /// There are no comments for Property address2_country in the schema. + /// There are no comments for Property address1_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_country + public virtual string address1_telephone1 { get { - return this._address2_country; + return this._address1_telephone1; } set { - this.Onaddress2_countryChanging(value); - this._address2_country = value; - this.Onaddress2_countryChanged(); + this.Onaddress1_telephone1Changing(value); + this._address1_telephone1 = value; + this.Onaddress1_telephone1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_country; - partial void Onaddress2_countryChanging(string value); - partial void Onaddress2_countryChanged(); + private string _address1_telephone1; + partial void Onaddress1_telephone1Changing(string value); + partial void Onaddress1_telephone1Changed(); /// - /// There are no comments for Property address1_utcoffset in the schema. + /// There are no comments for Property address2_line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_utcoffset + public virtual string address2_line3 { get { - return this._address1_utcoffset; + return this._address2_line3; } set { - this.Onaddress1_utcoffsetChanging(value); - this._address1_utcoffset = value; - this.Onaddress1_utcoffsetChanged(); + this.Onaddress2_line3Changing(value); + this._address2_line3 = value; + this.Onaddress2_line3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_utcoffset; - partial void Onaddress1_utcoffsetChanging(global::System.Nullable value); - partial void Onaddress1_utcoffsetChanged(); + private string _address2_line3; + partial void Onaddress2_line3Changing(string value); + partial void Onaddress2_line3Changed(); /// - /// There are no comments for Property address2_city in the schema. + /// There are no comments for Property address1_telephone2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_city + public virtual string address1_telephone2 { get { - return this._address2_city; + return this._address1_telephone2; } set { - this.Onaddress2_cityChanging(value); - this._address2_city = value; - this.Onaddress2_cityChanged(); + this.Onaddress1_telephone2Changing(value); + this._address1_telephone2 = value; + this.Onaddress1_telephone2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_city; - partial void Onaddress2_cityChanging(string value); - partial void Onaddress2_cityChanged(); + private string _address1_telephone2; + partial void Onaddress1_telephone2Changing(string value); + partial void Onaddress1_telephone2Changed(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -686463,49 +686485,49 @@ public virtual string address2_telephone2 partial void Onaddress2_telephone2Changing(string value); partial void Onaddress2_telephone2Changed(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property address1_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual string address1_name { get { - return this._name; + return this._address1_name; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.Onaddress1_nameChanging(value); + this._address1_name = value; + this.Onaddress1_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private string _address1_name; + partial void Onaddress1_nameChanging(string value); + partial void Onaddress1_nameChanged(); /// - /// There are no comments for Property address1_line2 in the schema. + /// There are no comments for Property address1_utcoffset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_line2 + public virtual global::System.Nullable address1_utcoffset { get { - return this._address1_line2; + return this._address1_utcoffset; } set { - this.Onaddress1_line2Changing(value); - this._address1_line2 = value; - this.Onaddress1_line2Changed(); + this.Onaddress1_utcoffsetChanging(value); + this._address1_utcoffset = value; + this.Onaddress1_utcoffsetChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_line2; - partial void Onaddress1_line2Changing(string value); - partial void Onaddress1_line2Changed(); + private global::System.Nullable _address1_utcoffset; + partial void Onaddress1_utcoffsetChanging(global::System.Nullable value); + partial void Onaddress1_utcoffsetChanged(); /// /// There are no comments for Property address2_name in the schema. /// @@ -686551,27 +686573,49 @@ public virtual string address2_name partial void Onaddress1_latitudeChanging(global::System.Nullable value); partial void Onaddress1_latitudeChanged(); /// - /// There are no comments for Property address1_addresstypecode in the schema. + /// There are no comments for Property address2_upszone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_addresstypecode + public virtual string address2_upszone { get { - return this._address1_addresstypecode; + return this._address2_upszone; } set { - this.Onaddress1_addresstypecodeChanging(value); - this._address1_addresstypecode = value; - this.Onaddress1_addresstypecodeChanged(); + this.Onaddress2_upszoneChanging(value); + this._address2_upszone = value; + this.Onaddress2_upszoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_addresstypecode; - partial void Onaddress1_addresstypecodeChanging(global::System.Nullable value); - partial void Onaddress1_addresstypecodeChanged(); + private string _address2_upszone; + partial void Onaddress2_upszoneChanging(string value); + partial void Onaddress2_upszoneChanged(); + /// + /// There are no comments for Property address1_fax in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address1_fax + { + get + { + return this._address1_fax; + } + set + { + this.Onaddress1_faxChanging(value); + this._address1_fax = value; + this.Onaddress1_faxChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address1_fax; + partial void Onaddress1_faxChanging(string value); + partial void Onaddress1_faxChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -686617,6 +686661,28 @@ public virtual string address1_line3 partial void Onaddress1_line3Changing(string value); partial void Onaddress1_line3Changed(); /// + /// There are no comments for Property address2_stateorprovince in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_stateorprovince + { + get + { + return this._address2_stateorprovince; + } + set + { + this.Onaddress2_stateorprovinceChanging(value); + this._address2_stateorprovince = value; + this.Onaddress2_stateorprovinceChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_stateorprovince; + partial void Onaddress2_stateorprovinceChanging(string value); + partial void Onaddress2_stateorprovinceChanged(); + /// /// There are no comments for Property address1_county in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -686749,27 +686815,27 @@ public virtual string address1_county partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property address1_country in the schema. + /// There are no comments for Property address1_stateorprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_country + public virtual string address1_stateorprovince { get { - return this._address1_country; + return this._address1_stateorprovince; } set { - this.Onaddress1_countryChanging(value); - this._address1_country = value; - this.Onaddress1_countryChanged(); + this.Onaddress1_stateorprovinceChanging(value); + this._address1_stateorprovince = value; + this.Onaddress1_stateorprovinceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_country; - partial void Onaddress1_countryChanging(string value); - partial void Onaddress1_countryChanged(); + private string _address1_stateorprovince; + partial void Onaddress1_stateorprovinceChanging(string value); + partial void Onaddress1_stateorprovinceChanged(); /// /// There are no comments for Property address2_addressid in the schema. /// @@ -686793,28 +686859,6 @@ public virtual string address1_country partial void Onaddress2_addressidChanging(global::System.Nullable value); partial void Onaddress2_addressidChanged(); /// - /// There are no comments for Property address1_upszone in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address1_upszone - { - get - { - return this._address1_upszone; - } - set - { - this.Onaddress1_upszoneChanging(value); - this._address1_upszone = value; - this.Onaddress1_upszoneChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_upszone; - partial void Onaddress1_upszoneChanging(string value); - partial void Onaddress1_upszoneChanged(); - /// /// There are no comments for Property address2_county in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -686859,6 +686903,50 @@ public virtual string address2_county partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); partial void Onaddress1_shippingmethodcodeChanged(); /// + /// There are no comments for Property address2_country in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_country + { + get + { + return this._address2_country; + } + set + { + this.Onaddress2_countryChanging(value); + this._address2_country = value; + this.Onaddress2_countryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_country; + partial void Onaddress2_countryChanging(string value); + partial void Onaddress2_countryChanged(); + /// + /// There are no comments for Property address2_postalcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_postalcode + { + get + { + return this._address2_postalcode; + } + set + { + this.Onaddress2_postalcodeChanging(value); + this._address2_postalcode = value; + this.Onaddress2_postalcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_postalcode; + partial void Onaddress2_postalcodeChanging(string value); + partial void Onaddress2_postalcodeChanged(); + /// /// There are no comments for Property address2_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -686903,6 +686991,28 @@ public virtual string address2_telephone1 partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// + /// There are no comments for Property address2_line1 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_line1 + { + get + { + return this._address2_line1; + } + set + { + this.Onaddress2_line1Changing(value); + this._address2_line1 = value; + this.Onaddress2_line1Changed(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_line1; + partial void Onaddress2_line1Changing(string value); + partial void Onaddress2_line1Changed(); + /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -686925,49 +687035,49 @@ public virtual string address2_telephone1 partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property address1_telephone1 in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_telephone1 + public virtual string name { get { - return this._address1_telephone1; + return this._name; } set { - this.Onaddress1_telephone1Changing(value); - this._address1_telephone1 = value; - this.Onaddress1_telephone1Changed(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone1; - partial void Onaddress1_telephone1Changing(string value); - partial void Onaddress1_telephone1Changed(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property address1_name in the schema. + /// There are no comments for Property address1_upszone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_name + public virtual string address1_upszone { get { - return this._address1_name; + return this._address1_upszone; } set { - this.Onaddress1_nameChanging(value); - this._address1_name = value; - this.Onaddress1_nameChanged(); + this.Onaddress1_upszoneChanging(value); + this._address1_upszone = value; + this.Onaddress1_upszoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_name; - partial void Onaddress1_nameChanging(string value); - partial void Onaddress1_nameChanged(); + private string _address1_upszone; + partial void Onaddress1_upszoneChanging(string value); + partial void Onaddress1_upszoneChanged(); /// /// There are no comments for Property address1_longitude in the schema. /// @@ -687013,71 +687123,27 @@ public virtual string address1_name partial void Onaddress1_addressidChanging(global::System.Nullable value); partial void Onaddress1_addressidChanged(); /// - /// There are no comments for Property address1_stateorprovince in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address1_stateorprovince - { - get - { - return this._address1_stateorprovince; - } - set - { - this.Onaddress1_stateorprovinceChanging(value); - this._address1_stateorprovince = value; - this.Onaddress1_stateorprovinceChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_stateorprovince; - partial void Onaddress1_stateorprovinceChanging(string value); - partial void Onaddress1_stateorprovinceChanged(); - /// - /// There are no comments for Property address1_postofficebox in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address1_postofficebox - { - get - { - return this._address1_postofficebox; - } - set - { - this.Onaddress1_postofficeboxChanging(value); - this._address1_postofficebox = value; - this.Onaddress1_postofficeboxChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_postofficebox; - partial void Onaddress1_postofficeboxChanging(string value); - partial void Onaddress1_postofficeboxChanged(); - /// - /// There are no comments for Property address2_upszone in the schema. + /// There are no comments for Property address1_line2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_upszone + public virtual string address1_line2 { get { - return this._address2_upszone; + return this._address1_line2; } set { - this.Onaddress2_upszoneChanging(value); - this._address2_upszone = value; - this.Onaddress2_upszoneChanged(); + this.Onaddress1_line2Changing(value); + this._address1_line2 = value; + this.Onaddress1_line2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_upszone; - partial void Onaddress2_upszoneChanging(string value); - partial void Onaddress2_upszoneChanged(); + private string _address1_line2; + partial void Onaddress1_line2Changing(string value); + partial void Onaddress1_line2Changed(); /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// @@ -688119,6 +688185,50 @@ public virtual string successconditionsxml partial void OnsuccessconditionsxmlChanging(string value); partial void OnsuccessconditionsxmlChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -688207,27 +688317,27 @@ public virtual string changedattributelist partial void OnsequencenumberChanging(global::System.Nullable value); partial void OnsequencenumberChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable exchangerate { get { - return this.__ownerid_value; + return this._exchangerate; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property _slaid_value in the schema. /// @@ -688273,27 +688383,27 @@ public virtual string changedattributelist partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable overwritetime { get { - return this._modifiedon; + return this._overwritetime; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); /// /// There are no comments for Property allowpauseresume in the schema. /// @@ -688317,72 +688427,6 @@ public virtual string changedattributelist partial void OnallowpauseresumeChanging(global::System.Nullable value); partial void OnallowpauseresumeChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _transactioncurrencyid_value - { - get - { - return this.__transactioncurrencyid_value; - } - set - { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); - /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// - /// There are no comments for Property description in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string description - { - get - { - return this._description; - } - set - { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -688405,115 +688449,27 @@ public virtual string description partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// - /// There are no comments for Property slaitemid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable slaitemid - { - get - { - return this._slaitemid; - } - set - { - this.OnslaitemidChanging(value); - this._slaitemid = value; - this.OnslaitemidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _slaitemid; - partial void OnslaitemidChanging(global::System.Nullable value); - partial void OnslaitemidChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property applicablewhenxml in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string applicablewhenxml - { - get - { - return this._applicablewhenxml; - } - set - { - this.OnapplicablewhenxmlChanging(value); - this._applicablewhenxml = value; - this.OnapplicablewhenxmlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _applicablewhenxml; - partial void OnapplicablewhenxmlChanging(string value); - partial void OnapplicablewhenxmlChanged(); - /// - /// There are no comments for Property _businesshoursid_value in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _businesshoursid_value + public virtual global::System.Nullable solutionid { get { - return this.__businesshoursid_value; + return this._solutionid; } set { - this.On_businesshoursid_valueChanging(value); - this.__businesshoursid_value = value; - this.On_businesshoursid_valueChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __businesshoursid_value; - partial void On_businesshoursid_valueChanging(global::System.Nullable value); - partial void On_businesshoursid_valueChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property failureafter in the schema. /// @@ -688537,49 +688493,137 @@ public virtual string applicablewhenxml partial void OnfailureafterChanging(global::System.Nullable value); partial void OnfailureafterChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable versionnumber { get { - return this._overwritetime; + return this._versionnumber; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _transactioncurrencyid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _transactioncurrencyid_value { get { - return this._exchangerate; + return this.__transactioncurrencyid_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); + /// + /// There are no comments for Property slaitemid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable slaitemid + { + get + { + return this._slaitemid; + } + set + { + this.OnslaitemidChanging(value); + this._slaitemid = value; + this.OnslaitemidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _slaitemid; + partial void OnslaitemidChanging(global::System.Nullable value); + partial void OnslaitemidChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// + /// There are no comments for Property applicablewhenxml in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string applicablewhenxml + { + get + { + return this._applicablewhenxml; + } + set + { + this.OnapplicablewhenxmlChanging(value); + this._applicablewhenxml = value; + this.OnapplicablewhenxmlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _applicablewhenxml; + partial void OnapplicablewhenxmlChanging(string value); + partial void OnapplicablewhenxmlChanged(); + /// + /// There are no comments for Property description in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string description + { + get + { + return this._description; + } + set + { + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property _workflowid_value in the schema. /// @@ -688757,6 +688801,28 @@ public virtual string relatedfield partial void OnslaitemiduniqueChanging(global::System.Nullable value); partial void OnslaitemiduniqueChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property applicableentity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -688779,27 +688845,27 @@ public virtual string applicableentity partial void OnapplicableentityChanging(string value); partial void OnapplicableentityChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _businesshoursid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _businesshoursid_value { get { - return this.__createdby_value; + return this.__businesshoursid_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_businesshoursid_valueChanging(value); + this.__businesshoursid_value = value; + this.On_businesshoursid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __businesshoursid_value; + partial void On_businesshoursid_valueChanging(global::System.Nullable value); + partial void On_businesshoursid_valueChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -689850,27 +689916,27 @@ public static slakpiinstance Createslakpiinstance(global::EMBC.ESS.Utilities.Dyn partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property successcheckedat in the schema. + /// There are no comments for Property failuretime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable successcheckedat + public virtual global::System.Nullable failuretime { get { - return this._successcheckedat; + return this._failuretime; } set { - this.OnsuccesscheckedatChanging(value); - this._successcheckedat = value; - this.OnsuccesscheckedatChanged(); + this.OnfailuretimeChanging(value); + this._failuretime = value; + this.OnfailuretimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _successcheckedat; - partial void OnsuccesscheckedatChanging(global::System.Nullable value); - partial void OnsuccesscheckedatChanged(); + private global::System.Nullable _failuretime; + partial void OnfailuretimeChanging(global::System.Nullable value); + partial void OnfailuretimeChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -689938,49 +690004,49 @@ public static slakpiinstance Createslakpiinstance(global::EMBC.ESS.Utilities.Dyn partial void OnterminalstatereachedChanging(global::System.Nullable value); partial void OnterminalstatereachedChanged(); /// - /// There are no comments for Property failuretime in the schema. + /// There are no comments for Property computedwarningtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable failuretime + public virtual global::System.Nullable computedwarningtime { get { - return this._failuretime; + return this._computedwarningtime; } set { - this.OnfailuretimeChanging(value); - this._failuretime = value; - this.OnfailuretimeChanged(); + this.OncomputedwarningtimeChanging(value); + this._computedwarningtime = value; + this.OncomputedwarningtimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _failuretime; - partial void OnfailuretimeChanging(global::System.Nullable value); - partial void OnfailuretimeChanged(); + private global::System.Nullable _computedwarningtime; + partial void OncomputedwarningtimeChanging(global::System.Nullable value); + partial void OncomputedwarningtimeChanged(); /// - /// There are no comments for Property computedwarningtime in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable computedwarningtime + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._computedwarningtime; + return this.__modifiedonbehalfby_value; } set { - this.OncomputedwarningtimeChanging(value); - this._computedwarningtime = value; - this.OncomputedwarningtimeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _computedwarningtime; - partial void OncomputedwarningtimeChanging(global::System.Nullable value); - partial void OncomputedwarningtimeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property slakpiinstanceid in the schema. /// @@ -690026,28 +690092,6 @@ public static slakpiinstance Createslakpiinstance(global::EMBC.ESS.Utilities.Dyn partial void OnelapsedtimeChanging(global::System.Nullable value); partial void OnelapsedtimeChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedonbehalfby_value - { - get - { - return this.__modifiedonbehalfby_value; - } - set - { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); - /// /// There are no comments for Property terminalstatetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -690070,28 +690114,6 @@ public static slakpiinstance Createslakpiinstance(global::EMBC.ESS.Utilities.Dyn partial void OnterminalstatetimeChanging(global::System.Nullable value); partial void OnterminalstatetimeChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owningbusinessunit_value - { - get - { - return this.__owningbusinessunit_value; - } - set - { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); - /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -690136,27 +690158,49 @@ public static slakpiinstance Createslakpiinstance(global::EMBC.ESS.Utilities.Dyn partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property succeededon in the schema. + /// There are no comments for Property applicablefromvalue in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable succeededon + public virtual global::System.Nullable applicablefromvalue { get { - return this._succeededon; + return this._applicablefromvalue; } set { - this.OnsucceededonChanging(value); - this._succeededon = value; - this.OnsucceededonChanged(); + this.OnapplicablefromvalueChanging(value); + this._applicablefromvalue = value; + this.OnapplicablefromvalueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _succeededon; - partial void OnsucceededonChanging(global::System.Nullable value); - partial void OnsucceededonChanged(); + private global::System.Nullable _applicablefromvalue; + partial void OnapplicablefromvalueChanging(global::System.Nullable value); + partial void OnapplicablefromvalueChanged(); + /// + /// There are no comments for Property successcheckedat in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable successcheckedat + { + get + { + return this._successcheckedat; + } + set + { + this.OnsuccesscheckedatChanging(value); + this._successcheckedat = value; + this.OnsuccesscheckedatChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _successcheckedat; + partial void OnsuccesscheckedatChanging(global::System.Nullable value); + partial void OnsuccesscheckedatChanged(); /// /// There are no comments for Property lastresumetime in the schema. /// @@ -690180,6 +690224,28 @@ public static slakpiinstance Createslakpiinstance(global::EMBC.ESS.Utilities.Dyn partial void OnlastresumetimeChanging(global::System.Nullable value); partial void OnlastresumetimeChanged(); /// + /// There are no comments for Property _regarding_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _regarding_value + { + get + { + return this.__regarding_value; + } + set + { + this.On_regarding_valueChanging(value); + this.__regarding_value = value; + this.On_regarding_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __regarding_value; + partial void On_regarding_valueChanging(global::System.Nullable value); + partial void On_regarding_valueChanged(); + /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -690268,28 +690334,6 @@ public virtual string name partial void OnwarningtimereachedChanging(global::System.Nullable value); partial void OnwarningtimereachedChanged(); /// - /// There are no comments for Property applicablefromvalue in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable applicablefromvalue - { - get - { - return this._applicablefromvalue; - } - set - { - this.OnapplicablefromvalueChanging(value); - this._applicablefromvalue = value; - this.OnapplicablefromvalueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _applicablefromvalue; - partial void OnapplicablefromvalueChanging(global::System.Nullable value); - partial void OnapplicablefromvalueChanged(); - /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -690334,49 +690378,49 @@ public virtual string name partial void OnpausedonChanging(global::System.Nullable value); partial void OnpausedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__createdby_value; + return this.__createdonbehalfby_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__transactioncurrencyid_value; + return this.__owningbusinessunit_value; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -690400,6 +690444,28 @@ public virtual string name partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property succeededon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable succeededon + { + get + { + return this._succeededon; + } + set + { + this.OnsucceededonChanging(value); + this._succeededon = value; + this.OnsucceededonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _succeededon; + partial void OnsucceededonChanging(global::System.Nullable value); + partial void OnsucceededonChanged(); + /// /// There are no comments for Property computedfailuretime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -690422,27 +690488,49 @@ public virtual string name partial void OncomputedfailuretimeChanging(global::System.Nullable value); partial void OncomputedfailuretimeChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__createdonbehalfby_value; + return this.__createdby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _transactioncurrencyid_value + { + get + { + return this.__transactioncurrencyid_value; + } + set + { + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property regardingentityid in the schema. /// @@ -690488,28 +690576,6 @@ public virtual string regardingentityid partial void OnstatusChanging(global::System.Nullable value); partial void OnstatusChanged(); /// - /// There are no comments for Property _regarding_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _regarding_value - { - get - { - return this.__regarding_value; - } - set - { - this.On_regarding_valueChanging(value); - this.__regarding_value = value; - this.On_regarding_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __regarding_value; - partial void On_regarding_valueChanging(global::System.Nullable value); - partial void On_regarding_valueChanged(); - /// /// There are no comments for Property warningtime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -698286,27 +698352,27 @@ public static socialactivity Createsocialactivity(global::EMBC.ESS.Utilities.Dyn partial void OndirectioncodeChanging(global::System.Nullable value); partial void OndirectioncodeChanged(); /// - /// There are no comments for Property postedon in the schema. + /// There are no comments for Property postmessagetype in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable postedon + public virtual global::System.Nullable postmessagetype { get { - return this._postedon; + return this._postmessagetype; } set { - this.OnpostedonChanging(value); - this._postedon = value; - this.OnpostedonChanged(); + this.OnpostmessagetypeChanging(value); + this._postmessagetype = value; + this.OnpostmessagetypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _postedon; - partial void OnpostedonChanging(global::System.Nullable value); - partial void OnpostedonChanged(); + private global::System.Nullable _postmessagetype; + partial void OnpostmessagetypeChanging(global::System.Nullable value); + partial void OnpostmessagetypeChanged(); /// /// There are no comments for Property _postfromprofileid_value in the schema. /// @@ -698330,6 +698396,28 @@ public static socialactivity Createsocialactivity(global::EMBC.ESS.Utilities.Dyn partial void On_postfromprofileid_valueChanging(global::System.Nullable value); partial void On_postfromprofileid_valueChanged(); /// + /// There are no comments for Property importsequencenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable importsequencenumber + { + get + { + return this._importsequencenumber; + } + set + { + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); + /// /// There are no comments for Property postid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -698374,6 +698462,28 @@ public virtual string postid partial void OnsentimentvalueChanging(global::System.Nullable value); partial void OnsentimentvalueChanged(); /// + /// There are no comments for Property postedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable postedon + { + get + { + return this._postedon; + } + set + { + this.OnpostedonChanging(value); + this._postedon = value; + this.OnpostedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _postedon; + partial void OnpostedonChanging(global::System.Nullable value); + partial void OnpostedonChanged(); + /// /// There are no comments for Property posttoprofileid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -698396,6 +698506,28 @@ public virtual string posttoprofileid partial void OnposttoprofileidChanging(string value); partial void OnposttoprofileidChanged(); /// + /// There are no comments for Property inresponseto in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string inresponseto + { + get + { + return this._inresponseto; + } + set + { + this.OninresponsetoChanging(value); + this._inresponseto = value; + this.OninresponsetoChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _inresponseto; + partial void OninresponsetoChanging(string value); + partial void OninresponsetoChanged(); + /// /// There are no comments for Property _postauthoraccount_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -698440,28 +698572,6 @@ public virtual string posturl partial void OnposturlChanging(string value); partial void OnposturlChanged(); /// - /// There are no comments for Property postmessagetype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable postmessagetype - { - get - { - return this._postmessagetype; - } - set - { - this.OnpostmessagetypeChanging(value); - this._postmessagetype = value; - this.OnpostmessagetypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _postmessagetype; - partial void OnpostmessagetypeChanging(global::System.Nullable value); - partial void OnpostmessagetypeChanged(); - /// /// There are no comments for Property threadid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -698506,28 +698616,6 @@ public virtual string threadid partial void On_postauthor_valueChanging(global::System.Nullable value); partial void On_postauthor_valueChanged(); /// - /// There are no comments for Property inresponseto in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string inresponseto - { - get - { - return this._inresponseto; - } - set - { - this.OninresponsetoChanging(value); - this._inresponseto = value; - this.OninresponsetoChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _inresponseto; - partial void OninresponsetoChanging(string value); - partial void OninresponsetoChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -698550,28 +698638,6 @@ public virtual string inresponseto partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property socialadditionalparams in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -700368,49 +700434,49 @@ public static socialprofile Createsocialprofile(global::EMBC.ESS.Utilities.Dynam return socialprofile; } /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable exchangerate { get { - return this.__modifiedby_value; + return this._exchangerate; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _modifiedby_value { get { - return this._exchangerate; + return this.__modifiedby_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -700434,6 +700500,28 @@ public static socialprofile Createsocialprofile(global::EMBC.ESS.Utilities.Dynam partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property _customerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _customerid_value + { + get + { + return this.__customerid_value; + } + set + { + this.On_customerid_valueChanging(value); + this.__customerid_value = value; + this.On_customerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __customerid_value; + partial void On_customerid_valueChanging(global::System.Nullable value); + partial void On_customerid_valueChanged(); + /// /// There are no comments for Property influencescore in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -700742,28 +700830,6 @@ public virtual string uniqueprofileid partial void OnuniqueprofileidChanging(string value); partial void OnuniqueprofileidChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -700962,27 +701028,27 @@ public virtual string profilename partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property _customerid_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _customerid_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__customerid_value; + return this._timezoneruleversionnumber; } set { - this.On_customerid_valueChanging(value); - this.__customerid_value = value; - this.On_customerid_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __customerid_value; - partial void On_customerid_valueChanging(global::System.Nullable value); - partial void On_customerid_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property SocialProfile_DuplicateBaseRecord in the schema. /// @@ -701794,27 +701860,27 @@ public static solutioncomponentattributeconfiguration Createsolutioncomponentatt return solutioncomponentattributeconfiguration; } /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable overriddencreatedon { get { - return this._componentstate; + return this._overriddencreatedon; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -701926,28 +701992,6 @@ public virtual string name partial void OnencodingformatChanging(global::System.Nullable value); partial void OnencodingformatChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property isexportdisabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -701970,27 +702014,27 @@ public virtual string name partial void OnisexportdisabledChanging(global::System.Nullable value); partial void OnisexportdisabledChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable componentstate { get { - return this.__organizationid_value; + return this._componentstate; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property fileextension in the schema. /// @@ -702058,6 +702102,28 @@ public virtual string fileextension partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -702124,28 +702190,6 @@ public virtual string fileextension partial void On_solutioncomponentconfigurationid_valueChanging(global::System.Nullable value); partial void On_solutioncomponentconfigurationid_valueChanged(); /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// /// There are no comments for Property isexportedasfile in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -702322,6 +702366,28 @@ public virtual string fileextension partial void OncomponentiduniqueChanging(global::System.Nullable value); partial void OncomponentiduniqueChanged(); /// + /// There are no comments for Property ismanaged in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable ismanaged + { + get + { + return this._ismanaged; + } + set + { + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -703146,49 +703212,49 @@ public static solutioncomponentconfiguration Createsolutioncomponentconfiguratio return solutioncomponentconfiguration; } /// - /// There are no comments for Property isdisplayable in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isdisplayable + public virtual global::System.Nullable overriddencreatedon { get { - return this._isdisplayable; + return this._overriddencreatedon; } set { - this.OnisdisplayableChanging(value); - this._isdisplayable = value; - this.OnisdisplayableChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdisplayable; - partial void OnisdisplayableChanging(global::System.Nullable value); - partial void OnisdisplayableChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property keepactivecustomizationafterconversion in the schema. + /// There are no comments for Property isdisplayable in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable keepactivecustomizationafterconversion + public virtual global::System.Nullable isdisplayable { get { - return this._keepactivecustomizationafterconversion; + return this._isdisplayable; } set { - this.OnkeepactivecustomizationafterconversionChanging(value); - this._keepactivecustomizationafterconversion = value; - this.OnkeepactivecustomizationafterconversionChanged(); + this.OnisdisplayableChanging(value); + this._isdisplayable = value; + this.OnisdisplayableChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _keepactivecustomizationafterconversion; - partial void OnkeepactivecustomizationafterconversionChanging(global::System.Nullable value); - partial void OnkeepactivecustomizationafterconversionChanged(); + private global::System.Nullable _isdisplayable; + partial void OnisdisplayableChanging(global::System.Nullable value); + partial void OnisdisplayableChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -703278,28 +703344,6 @@ public static solutioncomponentconfiguration Createsolutioncomponentconfiguratio partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -703344,28 +703388,6 @@ public static solutioncomponentconfiguration Createsolutioncomponentconfiguratio partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// /// There are no comments for Property issoftdeleteenabled in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -703388,49 +703410,27 @@ public static solutioncomponentconfiguration Createsolutioncomponentconfiguratio partial void OnissoftdeleteenabledChanging(global::System.Nullable value); partial void OnissoftdeleteenabledChanged(); /// - /// There are no comments for Property filescope in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable filescope - { - get - { - return this._filescope; - } - set - { - this.OnfilescopeChanging(value); - this._filescope = value; - this.OnfilescopeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _filescope; - partial void OnfilescopeChanging(global::System.Nullable value); - partial void OnfilescopeChanged(); - /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property keepactivecustomizationafterconversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable keepactivecustomizationafterconversion { get { - return this.__modifiedby_value; + return this._keepactivecustomizationafterconversion; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnkeepactivecustomizationafterconversionChanging(value); + this._keepactivecustomizationafterconversion = value; + this.OnkeepactivecustomizationafterconversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _keepactivecustomizationafterconversion; + partial void OnkeepactivecustomizationafterconversionChanging(global::System.Nullable value); + partial void OnkeepactivecustomizationafterconversionChanged(); /// /// There are no comments for Property componentidunique in the schema. /// @@ -703476,6 +703476,28 @@ public static solutioncomponentconfiguration Createsolutioncomponentconfiguratio partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -703520,6 +703542,28 @@ public static solutioncomponentconfiguration Createsolutioncomponentconfiguratio partial void On_entityid_valueChanging(global::System.Nullable value); partial void On_entityid_valueChanged(); /// + /// There are no comments for Property createdon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -703542,27 +703586,27 @@ public static solutioncomponentconfiguration Createsolutioncomponentconfiguratio partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property overwritetime in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overwritetime + public virtual global::System.Nullable solutionid { get { - return this._overwritetime; + return this._solutionid; } set { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property iscustomizable in the schema. /// @@ -703586,27 +703630,27 @@ public static solutioncomponentconfiguration Createsolutioncomponentconfiguratio partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property filescope in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable filescope { get { - return this._createdon; + return this._filescope; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnfilescopeChanging(value); + this._filescope = value; + this.OnfilescopeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _filescope; + partial void OnfilescopeChanging(global::System.Nullable value); + partial void OnfilescopeChanged(); /// /// There are no comments for Property solutioncomponentconfigurationid in the schema. /// @@ -703696,6 +703740,28 @@ public virtual string name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -704476,71 +704542,49 @@ public static solutioncomponentrelationshipconfiguration Createsolutioncomponent return solutioncomponentrelationshipconfiguration; } /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this.__organizationid_value; + return this._timezoneruleversionnumber; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__createdby_value; + return this._utcconversiontimezonecode; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property primaryentitydependencytype in the schema. /// @@ -704564,71 +704608,27 @@ public static solutioncomponentrelationshipconfiguration Createsolutioncomponent partial void OnprimaryentitydependencytypeChanging(global::System.Nullable value); partial void OnprimaryentitydependencytypeChanged(); /// - /// There are no comments for Property componentstate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentstate - { - get - { - return this._componentstate; - } - set - { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); - /// - /// There are no comments for Property componentidunique in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable componentidunique - { - get - { - return this._componentidunique; - } - set - { - this.OncomponentiduniqueChanging(value); - this._componentidunique = value; - this.OncomponentiduniqueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentidunique; - partial void OncomponentiduniqueChanging(global::System.Nullable value); - partial void OncomponentiduniqueChanged(); - /// - /// There are no comments for Property addrelatedcomponents in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable addrelatedcomponents + public virtual global::System.Nullable statecode { get { - return this._addrelatedcomponents; + return this._statecode; } set { - this.OnaddrelatedcomponentsChanging(value); - this._addrelatedcomponents = value; - this.OnaddrelatedcomponentsChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _addrelatedcomponents; - partial void OnaddrelatedcomponentsChanging(global::System.Nullable value); - partial void OnaddrelatedcomponentsChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -704674,71 +704674,71 @@ public static solutioncomponentrelationshipconfiguration Createsolutioncomponent partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable overriddencreatedon { get { - return this.__modifiedby_value; + return this._overriddencreatedon; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property addrelatedcomponents in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable addrelatedcomponents { get { - return this._overriddencreatedon; + return this._addrelatedcomponents; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OnaddrelatedcomponentsChanging(value); + this._addrelatedcomponents = value; + this.OnaddrelatedcomponentsChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _addrelatedcomponents; + partial void OnaddrelatedcomponentsChanging(global::System.Nullable value); + partial void OnaddrelatedcomponentsChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property componentidunique in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable componentidunique { get { - return this._utcconversiontimezonecode; + return this._componentidunique; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OncomponentiduniqueChanging(value); + this._componentidunique = value; + this.OncomponentiduniqueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _componentidunique; + partial void OncomponentiduniqueChanging(global::System.Nullable value); + partial void OncomponentiduniqueChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -704762,6 +704762,28 @@ public static solutioncomponentrelationshipconfiguration Createsolutioncomponent partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// + /// There are no comments for Property _organizationid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _organizationid_value + { + get + { + return this.__organizationid_value; + } + set + { + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -704806,27 +704828,71 @@ public static solutioncomponentrelationshipconfiguration Createsolutioncomponent partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable createdon { get { - return this._timezoneruleversionnumber; + return this._createdon; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property _entityrelationshipid_value in the schema. /// @@ -704850,28 +704916,6 @@ public static solutioncomponentrelationshipconfiguration Createsolutioncomponent partial void On_entityrelationshipid_valueChanging(global::System.Nullable value); partial void On_entityrelationshipid_valueChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -704916,28 +704960,6 @@ public static solutioncomponentrelationshipconfiguration Createsolutioncomponent partial void OnsolutioncomponentrelationshipconfigurationidChanging(global::System.Nullable value); partial void OnsolutioncomponentrelationshipconfigurationidChanged(); /// - /// There are no comments for Property statecode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statecode - { - get - { - return this._statecode; - } - set - { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -705026,6 +705048,28 @@ public static solutioncomponentrelationshipconfiguration Createsolutioncomponent partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -705048,6 +705092,28 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -707000,27 +707066,27 @@ public static solution Createsolution(global::EMBC.ESS.Utilities.Dynamics.Micros partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property pinpointsolutionid in the schema. + /// There are no comments for Property pinpointsolutiondefaultlocale in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pinpointsolutionid + public virtual string pinpointsolutiondefaultlocale { get { - return this._pinpointsolutionid; + return this._pinpointsolutiondefaultlocale; } set { - this.OnpinpointsolutionidChanging(value); - this._pinpointsolutionid = value; - this.OnpinpointsolutionidChanged(); + this.OnpinpointsolutiondefaultlocaleChanging(value); + this._pinpointsolutiondefaultlocale = value; + this.OnpinpointsolutiondefaultlocaleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pinpointsolutionid; - partial void OnpinpointsolutionidChanging(global::System.Nullable value); - partial void OnpinpointsolutionidChanged(); + private string _pinpointsolutiondefaultlocale; + partial void OnpinpointsolutiondefaultlocaleChanging(string value); + partial void OnpinpointsolutiondefaultlocaleChanged(); /// /// There are no comments for Property _publisherid_value in the schema. /// @@ -707088,203 +707154,181 @@ public virtual string pinpointassetid partial void OnpinpointassetidChanging(string value); partial void OnpinpointassetidChanged(); /// - /// There are no comments for Property isvisible in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isvisible - { - get - { - return this._isvisible; - } - set - { - this.OnisvisibleChanging(value); - this._isvisible = value; - this.OnisvisibleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isvisible; - partial void OnisvisibleChanging(global::System.Nullable value); - partial void OnisvisibleChanged(); - /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property uniquename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string uniquename { get { - return this._modifiedon; + return this._uniquename; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnuniquenameChanging(value); + this._uniquename = value; + this.OnuniquenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private string _uniquename; + partial void OnuniquenameChanging(string value); + partial void OnuniquenameChanged(); /// - /// There are no comments for Property installedon in the schema. + /// There are no comments for Property _configurationpageid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable installedon + public virtual global::System.Nullable _configurationpageid_value { get { - return this._installedon; + return this.__configurationpageid_value; } set { - this.OninstalledonChanging(value); - this._installedon = value; - this.OninstalledonChanged(); + this.On_configurationpageid_valueChanging(value); + this.__configurationpageid_value = value; + this.On_configurationpageid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _installedon; - partial void OninstalledonChanging(global::System.Nullable value); - partial void OninstalledonChanged(); + private global::System.Nullable __configurationpageid_value; + partial void On_configurationpageid_valueChanging(global::System.Nullable value); + partial void On_configurationpageid_valueChanged(); /// - /// There are no comments for Property uniquename in the schema. + /// There are no comments for Property _parentsolutionid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string uniquename + public virtual global::System.Nullable _parentsolutionid_value { get { - return this._uniquename; + return this.__parentsolutionid_value; } set { - this.OnuniquenameChanging(value); - this._uniquename = value; - this.OnuniquenameChanged(); + this.On_parentsolutionid_valueChanging(value); + this.__parentsolutionid_value = value; + this.On_parentsolutionid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _uniquename; - partial void OnuniquenameChanging(string value); - partial void OnuniquenameChanged(); + private global::System.Nullable __parentsolutionid_value; + partial void On_parentsolutionid_valueChanging(global::System.Nullable value); + partial void On_parentsolutionid_valueChanged(); /// - /// There are no comments for Property solutionpackageversion in the schema. + /// There are no comments for Property isapimanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string solutionpackageversion + public virtual global::System.Nullable isapimanaged { get { - return this._solutionpackageversion; + return this._isapimanaged; } set { - this.OnsolutionpackageversionChanging(value); - this._solutionpackageversion = value; - this.OnsolutionpackageversionChanged(); + this.OnisapimanagedChanging(value); + this._isapimanaged = value; + this.OnisapimanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _solutionpackageversion; - partial void OnsolutionpackageversionChanging(string value); - partial void OnsolutionpackageversionChanged(); + private global::System.Nullable _isapimanaged; + partial void OnisapimanagedChanging(global::System.Nullable value); + partial void OnisapimanagedChanged(); /// - /// There are no comments for Property upgradeinfo in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string upgradeinfo + public virtual global::System.Nullable createdon { get { - return this._upgradeinfo; + return this._createdon; } set { - this.OnupgradeinfoChanging(value); - this._upgradeinfo = value; - this.OnupgradeinfoChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _upgradeinfo; - partial void OnupgradeinfoChanging(string value); - partial void OnupgradeinfoChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property _configurationpageid_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _configurationpageid_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__configurationpageid_value; + return this.__modifiedonbehalfby_value; } set { - this.On_configurationpageid_valueChanging(value); - this.__configurationpageid_value = value; - this.On_configurationpageid_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __configurationpageid_value; - partial void On_configurationpageid_valueChanging(global::System.Nullable value); - partial void On_configurationpageid_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _parentsolutionid_value in the schema. + /// There are no comments for Property thumbprint in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _parentsolutionid_value + public virtual string thumbprint { get { - return this.__parentsolutionid_value; + return this._thumbprint; } set { - this.On_parentsolutionid_valueChanging(value); - this.__parentsolutionid_value = value; - this.On_parentsolutionid_valueChanged(); + this.OnthumbprintChanging(value); + this._thumbprint = value; + this.OnthumbprintChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentsolutionid_value; - partial void On_parentsolutionid_valueChanging(global::System.Nullable value); - partial void On_parentsolutionid_valueChanged(); + private string _thumbprint; + partial void OnthumbprintChanging(string value); + partial void OnthumbprintChanged(); /// - /// There are no comments for Property updatedon in the schema. + /// There are no comments for Property isvisible in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable updatedon + public virtual global::System.Nullable isvisible { get { - return this._updatedon; + return this._isvisible; } set { - this.OnupdatedonChanging(value); - this._updatedon = value; - this.OnupdatedonChanged(); + this.OnisvisibleChanging(value); + this._isvisible = value; + this.OnisvisibleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _updatedon; - partial void OnupdatedonChanging(global::System.Nullable value); - partial void OnupdatedonChanged(); + private global::System.Nullable _isvisible; + partial void OnisvisibleChanging(global::System.Nullable value); + partial void OnisvisibleChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -707308,27 +707352,49 @@ public virtual string upgradeinfo partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__modifiedonbehalfby_value; + return this.__createdby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// + /// There are no comments for Property solutionpackageversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string solutionpackageversion + { + get + { + return this._solutionpackageversion; + } + set + { + this.OnsolutionpackageversionChanging(value); + this._solutionpackageversion = value; + this.OnsolutionpackageversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _solutionpackageversion; + partial void OnsolutionpackageversionChanging(string value); + partial void OnsolutionpackageversionChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -707418,181 +707484,181 @@ public virtual string templatesuffix partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property installedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable installedon { get { - return this.__createdby_value; + return this._installedon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OninstalledonChanging(value); + this._installedon = value; + this.OninstalledonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _installedon; + partial void OninstalledonChanging(global::System.Nullable value); + partial void OninstalledonChanged(); /// - /// There are no comments for Property pinpointpublisherid in the schema. + /// There are no comments for Property version in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable pinpointpublisherid + public virtual string version { get { - return this._pinpointpublisherid; + return this._version; } set { - this.OnpinpointpublisheridChanging(value); - this._pinpointpublisherid = value; - this.OnpinpointpublisheridChanged(); + this.OnversionChanging(value); + this._version = value; + this.OnversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _pinpointpublisherid; - partial void OnpinpointpublisheridChanging(global::System.Nullable value); - partial void OnpinpointpublisheridChanged(); + private string _version; + partial void OnversionChanging(string value); + partial void OnversionChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property pinpointsolutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable pinpointsolutionid { get { - return this._createdon; + return this._pinpointsolutionid; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnpinpointsolutionidChanging(value); + this._pinpointsolutionid = value; + this.OnpinpointsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _pinpointsolutionid; + partial void OnpinpointsolutionidChanging(global::System.Nullable value); + partial void OnpinpointsolutionidChanged(); /// - /// There are no comments for Property thumbprint in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string thumbprint + public virtual global::System.Nullable modifiedon { get { - return this._thumbprint; + return this._modifiedon; } set { - this.OnthumbprintChanging(value); - this._thumbprint = value; - this.OnthumbprintChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _thumbprint; - partial void OnthumbprintChanging(string value); - partial void OnthumbprintChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property pinpointsolutiondefaultlocale in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string pinpointsolutiondefaultlocale + public virtual string description { get { - return this._pinpointsolutiondefaultlocale; + return this._description; } set { - this.OnpinpointsolutiondefaultlocaleChanging(value); - this._pinpointsolutiondefaultlocale = value; - this.OnpinpointsolutiondefaultlocaleChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _pinpointsolutiondefaultlocale; - partial void OnpinpointsolutiondefaultlocaleChanging(string value); - partial void OnpinpointsolutiondefaultlocaleChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property upgradeinfo in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual string upgradeinfo { get { - return this._description; + return this._upgradeinfo; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnupgradeinfoChanging(value); + this._upgradeinfo = value; + this.OnupgradeinfoChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private string _upgradeinfo; + partial void OnupgradeinfoChanging(string value); + partial void OnupgradeinfoChanged(); /// - /// There are no comments for Property isapimanaged in the schema. + /// There are no comments for Property updatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isapimanaged + public virtual global::System.Nullable updatedon { get { - return this._isapimanaged; + return this._updatedon; } set { - this.OnisapimanagedChanging(value); - this._isapimanaged = value; - this.OnisapimanagedChanged(); + this.OnupdatedonChanging(value); + this._updatedon = value; + this.OnupdatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isapimanaged; - partial void OnisapimanagedChanging(global::System.Nullable value); - partial void OnisapimanagedChanged(); + private global::System.Nullable _updatedon; + partial void OnupdatedonChanging(global::System.Nullable value); + partial void OnupdatedonChanged(); /// - /// There are no comments for Property version in the schema. + /// There are no comments for Property pinpointpublisherid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string version + public virtual global::System.Nullable pinpointpublisherid { get { - return this._version; + return this._pinpointpublisherid; } set { - this.OnversionChanging(value); - this._version = value; - this.OnversionChanged(); + this.OnpinpointpublisheridChanging(value); + this._pinpointpublisherid = value; + this.OnpinpointpublisheridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _version; - partial void OnversionChanging(string value); - partial void OnversionChanged(); + private global::System.Nullable _pinpointpublisherid; + partial void OnpinpointpublisheridChanging(global::System.Nullable value); + partial void OnpinpointpublisheridChanged(); /// /// There are no comments for Property friendlyname in the schema. /// @@ -708564,27 +708630,27 @@ public static stagesolutionupload Createstagesolutionupload(global::EMBC.ESS.Uti partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _owningteam_value { get { - return this._versionnumber; + return this.__owningteam_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// /// There are no comments for Property solutionuniquename in the schema. /// @@ -708762,28 +708828,6 @@ public virtual string name partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// /// There are no comments for Property solutionfilename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -708850,49 +708894,49 @@ public virtual string solutionfilename partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable versionnumber { get { - return this._createdon; + return this._versionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable createdon { get { - return this.__owningteam_value; + return this._createdon; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property solutionfile_name in the schema. /// @@ -708982,6 +709026,28 @@ public virtual byte[] solutionfile partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); + /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -709893,6 +709959,28 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// + /// There are no comments for Property _createdbyexternalparty_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdbyexternalparty_value + { + get + { + return this.__createdbyexternalparty_value; + } + set + { + this.On_createdbyexternalparty_valueChanging(value); + this.__createdbyexternalparty_value = value; + this.On_createdbyexternalparty_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdbyexternalparty_value; + partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); + partial void On_createdbyexternalparty_valueChanged(); + /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -709937,93 +710025,49 @@ public virtual string description partial void On_modifiedbyexternalparty_valueChanging(global::System.Nullable value); partial void On_modifiedbyexternalparty_valueChanged(); /// - /// There are no comments for Property _parentsubject_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _parentsubject_value - { - get - { - return this.__parentsubject_value; - } - set - { - this.On_parentsubject_valueChanging(value); - this.__parentsubject_value = value; - this.On_parentsubject_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentsubject_value; - partial void On_parentsubject_valueChanging(global::System.Nullable value); - partial void On_parentsubject_valueChanged(); - /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// - /// There are no comments for Property _createdbyexternalparty_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdbyexternalparty_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__createdbyexternalparty_value; + return this.__modifiedonbehalfby_value; } set { - this.On_createdbyexternalparty_valueChanging(value); - this.__createdbyexternalparty_value = value; - this.On_createdbyexternalparty_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdbyexternalparty_value; - partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); - partial void On_createdbyexternalparty_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _parentsubject_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable _parentsubject_value { get { - return this._versionnumber; + return this.__parentsubject_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.On_parentsubject_valueChanging(value); + this.__parentsubject_value = value; + this.On_parentsubject_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable __parentsubject_value; + partial void On_parentsubject_valueChanging(global::System.Nullable value); + partial void On_parentsubject_valueChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -710047,27 +710091,27 @@ public virtual string description partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property subjectid in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable subjectid + public virtual global::System.Nullable versionnumber { get { - return this._subjectid; + return this._versionnumber; } set { - this.OnsubjectidChanging(value); - this._subjectid = value; - this.OnsubjectidChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _subjectid; - partial void OnsubjectidChanging(global::System.Nullable value); - partial void OnsubjectidChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -710113,71 +710157,71 @@ public virtual string title partial void OntitleChanging(string value); partial void OntitleChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property featuremask in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable featuremask { get { - return this._modifiedon; + return this._featuremask; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnfeaturemaskChanging(value); + this._featuremask = value; + this.OnfeaturemaskChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _featuremask; + partial void OnfeaturemaskChanging(global::System.Nullable value); + partial void OnfeaturemaskChanged(); /// - /// There are no comments for Property featuremask in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable featuremask + public virtual global::System.Nullable _organizationid_value { get { - return this._featuremask; + return this.__organizationid_value; } set { - this.OnfeaturemaskChanging(value); - this._featuremask = value; - this.OnfeaturemaskChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _featuremask; - partial void OnfeaturemaskChanging(global::System.Nullable value); - partial void OnfeaturemaskChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property subjectid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable subjectid { get { - return this.__modifiedonbehalfby_value; + return this._subjectid; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnsubjectidChanging(value); + this._subjectid = value; + this.OnsubjectidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _subjectid; + partial void OnsubjectidChanging(global::System.Nullable value); + partial void OnsubjectidChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -710201,6 +710245,28 @@ public virtual string title partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -710645,28 +710711,6 @@ public subscriptionmanuallytrackedobjectSingle(global::Microsoft.OData.Client.Da [global::Microsoft.OData.Client.Key("subscriptionmanuallytrackedobjectid")] public partial class subscriptionmanuallytrackedobject : crmbaseentity { - /// - /// There are no comments for Property subscriptionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable subscriptionid - { - get - { - return this._subscriptionid; - } - set - { - this.OnsubscriptionidChanging(value); - this._subscriptionid = value; - this.OnsubscriptionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _subscriptionid; - partial void OnsubscriptionidChanging(global::System.Nullable value); - partial void OnsubscriptionidChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -710690,27 +710734,27 @@ public partial class subscriptionmanuallytrackedobject : crmbaseentity partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property track in the schema. + /// There are no comments for Property subscriptionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable track + public virtual global::System.Nullable subscriptionid { get { - return this._track; + return this._subscriptionid; } set { - this.OntrackChanging(value); - this._track = value; - this.OntrackChanged(); + this.OnsubscriptionidChanging(value); + this._subscriptionid = value; + this.OnsubscriptionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _track; - partial void OntrackChanging(global::System.Nullable value); - partial void OntrackChanged(); + private global::System.Nullable _subscriptionid; + partial void OnsubscriptionidChanging(global::System.Nullable value); + partial void OnsubscriptionidChanged(); /// /// There are no comments for Property objectid in the schema. /// @@ -710734,6 +710778,28 @@ public partial class subscriptionmanuallytrackedobject : crmbaseentity partial void OnobjectidChanging(global::System.Nullable value); partial void OnobjectidChanged(); /// + /// There are no comments for Property track in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable track + { + get + { + return this._track; + } + set + { + this.OntrackChanging(value); + this._track = value; + this.OntrackChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _track; + partial void OntrackChanging(global::System.Nullable value); + partial void OntrackChanged(); + /// /// There are no comments for Property objecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -719365,6 +719431,28 @@ public static syncerror Createsyncerror(global::EMBC.ESS.Utilities.Dynamics.Micr return syncerror; } /// + /// There are no comments for Property errortype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable errortype + { + get + { + return this._errortype; + } + set + { + this.OnerrortypeChanging(value); + this._errortype = value; + this.OnerrortypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _errortype; + partial void OnerrortypeChanging(global::System.Nullable value); + partial void OnerrortypeChanged(); + /// /// There are no comments for Property errortime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -719409,27 +719497,27 @@ public virtual string errorcode partial void OnerrorcodeChanging(string value); partial void OnerrorcodeChanged(); /// - /// There are no comments for Property syncerrorid in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable syncerrorid + public virtual global::System.Nullable _ownerid_value { get { - return this._syncerrorid; + return this.__ownerid_value; } set { - this.OnsyncerroridChanging(value); - this._syncerrorid = value; - this.OnsyncerroridChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _syncerrorid; - partial void OnsyncerroridChanging(global::System.Nullable value); - partial void OnsyncerroridChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -719453,27 +719541,27 @@ public virtual string errorcode partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// - /// There are no comments for Property actiondata in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string actiondata + public virtual global::System.Nullable _owninguser_value { get { - return this._actiondata; + return this.__owninguser_value; } set { - this.OnactiondataChanging(value); - this._actiondata = value; - this.OnactiondataChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _actiondata; - partial void OnactiondataChanging(string value); - partial void OnactiondataChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property _owningteam_value in the schema. /// @@ -719497,49 +719585,27 @@ public virtual string actiondata partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _owninguser_value - { - get - { - return this.__owninguser_value; - } - set - { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); - /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property syncerrorid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable syncerrorid { get { - return this.__ownerid_value; + return this._syncerrorid; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.OnsyncerroridChanging(value); + this._syncerrorid = value; + this.OnsyncerroridChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable _syncerrorid; + partial void OnsyncerroridChanging(global::System.Nullable value); + partial void OnsyncerroridChanged(); /// /// There are no comments for Property errordetail in the schema. /// @@ -719563,28 +719629,6 @@ public virtual string errordetail partial void OnerrordetailChanging(string value); partial void OnerrordetailChanged(); /// - /// There are no comments for Property _regardingobjectid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _regardingobjectid_value - { - get - { - return this.__regardingobjectid_value; - } - set - { - this.On_regardingobjectid_valueChanging(value); - this.__regardingobjectid_value = value; - this.On_regardingobjectid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __regardingobjectid_value; - partial void On_regardingobjectid_valueChanging(global::System.Nullable value); - partial void On_regardingobjectid_valueChanged(); - /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -719629,27 +719673,27 @@ public virtual string description partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable statecode { get { - return this.__modifiedby_value; + return this._statecode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -719673,49 +719717,49 @@ public virtual string description partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property errormessage in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string errormessage + public virtual string name { get { - return this._errormessage; + return this._name; } set { - this.OnerrormessageChanging(value); - this._errormessage = value; - this.OnerrormessageChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _errormessage; - partial void OnerrormessageChanging(string value); - partial void OnerrormessageChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property errortype in the schema. + /// There are no comments for Property actiondata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable errortype + public virtual string actiondata { get { - return this._errortype; + return this._actiondata; } set { - this.OnerrortypeChanging(value); - this._errortype = value; - this.OnerrortypeChanged(); + this.OnactiondataChanging(value); + this._actiondata = value; + this.OnactiondataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _errortype; - partial void OnerrortypeChanging(global::System.Nullable value); - partial void OnerrortypeChanged(); + private string _actiondata; + partial void OnactiondataChanging(string value); + partial void OnactiondataChanged(); /// /// There are no comments for Property action in the schema. /// @@ -719761,28 +719805,6 @@ public virtual string requestdata partial void OnrequestdataChanging(string value); partial void OnrequestdataChanged(); /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -719827,49 +719849,71 @@ public virtual string requestdata partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _modifiedby_value { get { - return this._name; + return this.__modifiedby_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property _regardingobjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable _regardingobjectid_value { get { - return this._statecode; + return this.__regardingobjectid_value; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.On_regardingobjectid_valueChanging(value); + this.__regardingobjectid_value = value; + this.On_regardingobjectid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable __regardingobjectid_value; + partial void On_regardingobjectid_valueChanging(global::System.Nullable value); + partial void On_regardingobjectid_valueChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -719893,6 +719937,28 @@ public virtual string name partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property errormessage in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string errormessage + { + get + { + return this._errormessage; + } + set + { + this.OnerrormessageChanging(value); + this._errormessage = value; + this.OnerrormessageChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _errormessage; + partial void OnerrormessageChanging(string value); + partial void OnerrormessageChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -726719,6 +726785,50 @@ public static systemform Createsystemform(global::EMBC.ESS.Utilities.Dynamics.Mi return systemform; } /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// + /// There are no comments for Property version in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable version + { + get + { + return this._version; + } + set + { + this.OnversionChanging(value); + this._version = value; + this.OnversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _version; + partial void OnversionChanging(global::System.Nullable value); + partial void OnversionChanged(); + /// /// There are no comments for Property formjson in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -726763,28 +726873,6 @@ public virtual string formjson partial void OnformactivationstateChanging(global::System.Nullable value); partial void OnformactivationstateChanged(); /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// /// There are no comments for Property canbedeleted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -726807,71 +726895,71 @@ public virtual string formjson partial void OncanbedeletedChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OncanbedeletedChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _ancestorformid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _ancestorformid_value { get { - return this._componentstate; + return this.__ancestorformid_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_ancestorformid_valueChanging(value); + this.__ancestorformid_value = value; + this.On_ancestorformid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __ancestorformid_value; + partial void On_ancestorformid_valueChanging(global::System.Nullable value); + partial void On_ancestorformid_valueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable componentstate { get { - return this.__organizationid_value; + return this._componentstate; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property version in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable version + public virtual global::System.Nullable solutionid { get { - return this._version; + return this._solutionid; } set { - this.OnversionChanging(value); - this._version = value; - this.OnversionChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _version; - partial void OnversionChanging(global::System.Nullable value); - partial void OnversionChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property description in the schema. /// @@ -726917,49 +727005,71 @@ public virtual string description partial void OnistabletenabledChanging(global::System.Nullable value); partial void OnistabletenabledChanged(); /// - /// There are no comments for Property isdefault in the schema. + /// There are no comments for Property uniquename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isdefault + public virtual string uniquename { get { - return this._isdefault; + return this._uniquename; } set { - this.OnisdefaultChanging(value); - this._isdefault = value; - this.OnisdefaultChanged(); + this.OnuniquenameChanging(value); + this._uniquename = value; + this.OnuniquenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdefault; - partial void OnisdefaultChanging(global::System.Nullable value); - partial void OnisdefaultChanged(); + private string _uniquename; + partial void OnuniquenameChanging(string value); + partial void OnuniquenameChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable _organizationid_value { get { - return this._introducedversion; + return this.__organizationid_value; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); + /// + /// There are no comments for Property isdefault in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable isdefault + { + get + { + return this._isdefault; + } + set + { + this.OnisdefaultChanging(value); + this._isdefault = value; + this.OnisdefaultChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _isdefault; + partial void OnisdefaultChanging(global::System.Nullable value); + partial void OnisdefaultChanged(); /// /// There are no comments for Property objecttypecode in the schema. /// @@ -727027,27 +727137,27 @@ public virtual string objecttypecode partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property type in the schema. + /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable type + public virtual string introducedversion { get { - return this._type; + return this._introducedversion; } set { - this.OntypeChanging(value); - this._type = value; - this.OntypeChanged(); + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _type; - partial void OntypeChanging(global::System.Nullable value); - partial void OntypeChanged(); + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); /// /// There are no comments for Property formidunique in the schema. /// @@ -727115,28 +727225,6 @@ public virtual string objecttypecode partial void OnformidChanging(global::System.Nullable value); partial void OnformidChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -727159,27 +727247,27 @@ public virtual string name partial void OnnameChanging(string value); partial void OnnameChanged(); /// - /// There are no comments for Property uniquename in the schema. + /// There are no comments for Property type in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string uniquename + public virtual global::System.Nullable type { get { - return this._uniquename; + return this._type; } set { - this.OnuniquenameChanging(value); - this._uniquename = value; - this.OnuniquenameChanged(); + this.OntypeChanging(value); + this._type = value; + this.OntypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _uniquename; - partial void OnuniquenameChanging(string value); - partial void OnuniquenameChanged(); + private global::System.Nullable _type; + partial void OntypeChanging(global::System.Nullable value); + partial void OntypeChanged(); /// /// There are no comments for Property formxml in the schema. /// @@ -727269,28 +727357,6 @@ public virtual string formxml partial void OnpublishedonChanging(global::System.Nullable value); partial void OnpublishedonChanged(); /// - /// There are no comments for Property _ancestorformid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ancestorformid_value - { - get - { - return this.__ancestorformid_value; - } - set - { - this.On_ancestorformid_valueChanging(value); - this.__ancestorformid_value = value; - this.On_ancestorformid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ancestorformid_value; - partial void On_ancestorformid_valueChanging(global::System.Nullable value); - partial void On_ancestorformid_valueChanged(); - /// /// There are no comments for Property isairmerged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -765012,28 +765078,6 @@ public static systemuser Createsystemuser(global::EMBC.ESS.Utilities.Dynamics.Mi return systemuser; } /// - /// There are no comments for Property title in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string title - { - get - { - return this._title; - } - set - { - this.OntitleChanging(value); - this._title = value; - this.OntitleChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _title; - partial void OntitleChanging(string value); - partial void OntitleChanged(); - /// /// There are no comments for Property address1_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -765078,137 +765122,93 @@ public virtual string address1_fax partial void OnorganizationidChanging(global::System.Nullable value); partial void OnorganizationidChanged(); /// - /// There are no comments for Property nickname in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string nickname - { - get - { - return this._nickname; - } - set - { - this.OnnicknameChanging(value); - this._nickname = value; - this.OnnicknameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _nickname; - partial void OnnicknameChanging(string value); - partial void OnnicknameChanged(); - /// - /// There are no comments for Property defaultodbfoldername in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string defaultodbfoldername - { - get - { - return this._defaultodbfoldername; - } - set - { - this.OndefaultodbfoldernameChanging(value); - this._defaultodbfoldername = value; - this.OndefaultodbfoldernameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _defaultodbfoldername; - partial void OndefaultodbfoldernameChanging(string value); - partial void OndefaultodbfoldernameChanged(); - /// - /// There are no comments for Property address1_stateorprovince in the schema. + /// There are no comments for Property address1_postofficebox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_stateorprovince + public virtual string address1_postofficebox { get { - return this._address1_stateorprovince; + return this._address1_postofficebox; } set { - this.Onaddress1_stateorprovinceChanging(value); - this._address1_stateorprovince = value; - this.Onaddress1_stateorprovinceChanged(); + this.Onaddress1_postofficeboxChanging(value); + this._address1_postofficebox = value; + this.Onaddress1_postofficeboxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_stateorprovince; - partial void Onaddress1_stateorprovinceChanging(string value); - partial void Onaddress1_stateorprovinceChanged(); + private string _address1_postofficebox; + partial void Onaddress1_postofficeboxChanging(string value); + partial void Onaddress1_postofficeboxChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property accessmode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable accessmode { get { - return this.__modifiedby_value; + return this._accessmode; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnaccessmodeChanging(value); + this._accessmode = value; + this.OnaccessmodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _accessmode; + partial void OnaccessmodeChanging(global::System.Nullable value); + partial void OnaccessmodeChanged(); /// - /// There are no comments for Property applicationid in the schema. + /// There are no comments for Property address1_upszone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable applicationid + public virtual string address1_upszone { get { - return this._applicationid; + return this._address1_upszone; } set { - this.OnapplicationidChanging(value); - this._applicationid = value; - this.OnapplicationidChanged(); + this.Onaddress1_upszoneChanging(value); + this._address1_upszone = value; + this.Onaddress1_upszoneChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _applicationid; - partial void OnapplicationidChanging(global::System.Nullable value); - partial void OnapplicationidChanged(); + private string _address1_upszone; + partial void Onaddress1_upszoneChanging(string value); + partial void Onaddress1_upszoneChanged(); /// - /// There are no comments for Property address1_upszone in the schema. + /// There are no comments for Property photourl in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_upszone + public virtual string photourl { get { - return this._address1_upszone; + return this._photourl; } set { - this.Onaddress1_upszoneChanging(value); - this._address1_upszone = value; - this.Onaddress1_upszoneChanged(); + this.OnphotourlChanging(value); + this._photourl = value; + this.OnphotourlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_upszone; - partial void Onaddress1_upszoneChanging(string value); - partial void Onaddress1_upszoneChanged(); + private string _photourl; + partial void OnphotourlChanging(string value); + partial void OnphotourlChanged(); /// /// There are no comments for Property address1_latitude in the schema. /// @@ -765254,28 +765254,6 @@ public virtual string address1_upszone partial void Onaddress1_shippingmethodcodeChanging(global::System.Nullable value); partial void Onaddress1_shippingmethodcodeChanged(); /// - /// There are no comments for Property versionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable versionnumber - { - get - { - return this._versionnumber; - } - set - { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); - /// /// There are no comments for Property address1_utcoffset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -765342,6 +765320,50 @@ public virtual string homephone partial void OnhomephoneChanging(string value); partial void OnhomephoneChanged(); /// + /// There are no comments for Property skills in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string skills + { + get + { + return this._skills; + } + set + { + this.OnskillsChanging(value); + this._skills = value; + this.OnskillsChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _skills; + partial void OnskillsChanging(string value); + partial void OnskillsChanged(); + /// + /// There are no comments for Property emailrouteraccessapproval in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable emailrouteraccessapproval + { + get + { + return this._emailrouteraccessapproval; + } + set + { + this.OnemailrouteraccessapprovalChanging(value); + this._emailrouteraccessapproval = value; + this.OnemailrouteraccessapprovalChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _emailrouteraccessapproval; + partial void OnemailrouteraccessapprovalChanging(global::System.Nullable value); + partial void OnemailrouteraccessapprovalChanged(); + /// /// There are no comments for Property address2_latitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -765364,6 +765386,28 @@ public virtual string homephone partial void Onaddress2_latitudeChanging(global::System.Nullable value); partial void Onaddress2_latitudeChanged(); /// + /// There are no comments for Property address1_longitude in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address1_longitude + { + get + { + return this._address1_longitude; + } + set + { + this.Onaddress1_longitudeChanging(value); + this._address1_longitude = value; + this.Onaddress1_longitudeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address1_longitude; + partial void Onaddress1_longitudeChanging(global::System.Nullable value); + partial void Onaddress1_longitudeChanged(); + /// /// There are no comments for Property governmentid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -765408,28 +765452,6 @@ public virtual string governmentid partial void On_parentsystemuserid_valueChanging(global::System.Nullable value); partial void On_parentsystemuserid_valueChanged(); /// - /// There are no comments for Property salutation in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string salutation - { - get - { - return this._salutation; - } - set - { - this.OnsalutationChanging(value); - this._salutation = value; - this.OnsalutationChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _salutation; - partial void OnsalutationChanging(string value); - partial void OnsalutationChanged(); - /// /// There are no comments for Property address2_longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -765474,49 +765496,27 @@ public virtual string salutation partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property windowsliveid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string windowsliveid - { - get - { - return this._windowsliveid; - } - set - { - this.OnwindowsliveidChanging(value); - this._windowsliveid = value; - this.OnwindowsliveidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _windowsliveid; - partial void OnwindowsliveidChanging(string value); - partial void OnwindowsliveidChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property defaultfilterspopulated in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable defaultfilterspopulated { get { - return this._overriddencreatedon; + return this._defaultfilterspopulated; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OndefaultfilterspopulatedChanging(value); + this._defaultfilterspopulated = value; + this.OndefaultfilterspopulatedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _defaultfilterspopulated; + partial void OndefaultfilterspopulatedChanging(global::System.Nullable value); + partial void OndefaultfilterspopulatedChanged(); /// /// There are no comments for Property address1_telephone3 in the schema. /// @@ -765562,27 +765562,27 @@ public virtual string mobilephone partial void OnmobilephoneChanging(string value); partial void OnmobilephoneChanged(); /// - /// There are no comments for Property _queueid_value in the schema. + /// There are no comments for Property address2_fax in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _queueid_value + public virtual string address2_fax { get { - return this.__queueid_value; + return this._address2_fax; } set { - this.On_queueid_valueChanging(value); - this.__queueid_value = value; - this.On_queueid_valueChanged(); + this.Onaddress2_faxChanging(value); + this._address2_fax = value; + this.Onaddress2_faxChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __queueid_value; - partial void On_queueid_valueChanging(global::System.Nullable value); - partial void On_queueid_valueChanged(); + private string _address2_fax; + partial void Onaddress2_faxChanging(string value); + partial void Onaddress2_faxChanged(); /// /// There are no comments for Property preferredaddresscode in the schema. /// @@ -765628,49 +765628,27 @@ public virtual string address2_city partial void Onaddress2_cityChanging(string value); partial void Onaddress2_cityChanged(); /// - /// There are no comments for Property address1_addressid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable address1_addressid - { - get - { - return this._address1_addressid; - } - set - { - this.Onaddress1_addressidChanging(value); - this._address1_addressid = value; - this.Onaddress1_addressidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_addressid; - partial void Onaddress1_addressidChanging(global::System.Nullable value); - partial void Onaddress1_addressidChanged(); - /// - /// There are no comments for Property address1_name in the schema. + /// There are no comments for Property defaultodbfoldername in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_name + public virtual string defaultodbfoldername { get { - return this._address1_name; + return this._defaultodbfoldername; } set { - this.Onaddress1_nameChanging(value); - this._address1_name = value; - this.Onaddress1_nameChanged(); + this.OndefaultodbfoldernameChanging(value); + this._defaultodbfoldername = value; + this.OndefaultodbfoldernameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_name; - partial void Onaddress1_nameChanging(string value); - partial void Onaddress1_nameChanged(); + private string _defaultodbfoldername; + partial void OndefaultodbfoldernameChanging(string value); + partial void OndefaultodbfoldernameChanged(); /// /// There are no comments for Property address2_stateorprovince in the schema. /// @@ -765782,181 +765760,181 @@ public virtual string firstname partial void OnpassporthiChanging(global::System.Nullable value); partial void OnpassporthiChanged(); /// - /// There are no comments for Property address2_name in the schema. + /// There are no comments for Property applicationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_name + public virtual global::System.Nullable applicationid { get { - return this._address2_name; + return this._applicationid; } set { - this.Onaddress2_nameChanging(value); - this._address2_name = value; - this.Onaddress2_nameChanged(); + this.OnapplicationidChanging(value); + this._applicationid = value; + this.OnapplicationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_name; - partial void Onaddress2_nameChanging(string value); - partial void Onaddress2_nameChanged(); + private global::System.Nullable _applicationid; + partial void OnapplicationidChanging(global::System.Nullable value); + partial void OnapplicationidChanged(); /// - /// There are no comments for Property _territoryid_value in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _territoryid_value + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this.__territoryid_value; + return this.__modifiedonbehalfby_value; } set { - this.On_territoryid_valueChanging(value); - this.__territoryid_value = value; - this.On_territoryid_valueChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __territoryid_value; - partial void On_territoryid_valueChanging(global::System.Nullable value); - partial void On_territoryid_valueChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property address2_shippingmethodcode in the schema. + /// There are no comments for Property address1_addressid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address2_shippingmethodcode + public virtual global::System.Nullable address1_addressid { get { - return this._address2_shippingmethodcode; + return this._address1_addressid; } set { - this.Onaddress2_shippingmethodcodeChanging(value); - this._address2_shippingmethodcode = value; - this.Onaddress2_shippingmethodcodeChanged(); + this.Onaddress1_addressidChanging(value); + this._address1_addressid = value; + this.Onaddress1_addressidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address2_shippingmethodcode; - partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); - partial void Onaddress2_shippingmethodcodeChanged(); + private global::System.Nullable _address1_addressid; + partial void Onaddress1_addressidChanging(global::System.Nullable value); + partial void Onaddress1_addressidChanged(); /// - /// There are no comments for Property disabledreason in the schema. + /// There are no comments for Property address1_composite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string disabledreason + public virtual string address1_composite { get { - return this._disabledreason; + return this._address1_composite; } set { - this.OndisabledreasonChanging(value); - this._disabledreason = value; - this.OndisabledreasonChanged(); + this.Onaddress1_compositeChanging(value); + this._address1_composite = value; + this.Onaddress1_compositeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _disabledreason; - partial void OndisabledreasonChanging(string value); - partial void OndisabledreasonChanged(); + private string _address1_composite; + partial void Onaddress1_compositeChanging(string value); + partial void Onaddress1_compositeChanged(); /// - /// There are no comments for Property address1_postofficebox in the schema. + /// There are no comments for Property address1_city in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_postofficebox + public virtual string address1_city { get { - return this._address1_postofficebox; + return this._address1_city; } set { - this.Onaddress1_postofficeboxChanging(value); - this._address1_postofficebox = value; - this.Onaddress1_postofficeboxChanged(); + this.Onaddress1_cityChanging(value); + this._address1_city = value; + this.Onaddress1_cityChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_postofficebox; - partial void Onaddress1_postofficeboxChanging(string value); - partial void Onaddress1_postofficeboxChanged(); + private string _address1_city; + partial void Onaddress1_cityChanging(string value); + partial void Onaddress1_cityChanged(); /// - /// There are no comments for Property address1_composite in the schema. + /// There are no comments for Property address2_county in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_composite + public virtual string address2_county { get { - return this._address1_composite; + return this._address2_county; } set { - this.Onaddress1_compositeChanging(value); - this._address1_composite = value; - this.Onaddress1_compositeChanged(); + this.Onaddress2_countyChanging(value); + this._address2_county = value; + this.Onaddress2_countyChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_composite; - partial void Onaddress1_compositeChanging(string value); - partial void Onaddress1_compositeChanged(); + private string _address2_county; + partial void Onaddress2_countyChanging(string value); + partial void Onaddress2_countyChanged(); /// - /// There are no comments for Property setupuser in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable setupuser + public virtual global::System.Nullable versionnumber { get { - return this._setupuser; + return this._versionnumber; } set { - this.OnsetupuserChanging(value); - this._setupuser = value; - this.OnsetupuserChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _setupuser; - partial void OnsetupuserChanging(global::System.Nullable value); - partial void OnsetupuserChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property entityimage_timestamp in the schema. + /// There are no comments for Property msdyn_gdproptout in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimage_timestamp + public virtual global::System.Nullable msdyn_gdproptout { get { - return this._entityimage_timestamp; + return this._msdyn_gdproptout; } set { - this.Onentityimage_timestampChanging(value); - this._entityimage_timestamp = value; - this.Onentityimage_timestampChanged(); + this.Onmsdyn_gdproptoutChanging(value); + this._msdyn_gdproptout = value; + this.Onmsdyn_gdproptoutChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimage_timestamp; - partial void Onentityimage_timestampChanging(global::System.Nullable value); - partial void Onentityimage_timestampChanged(); + private global::System.Nullable _msdyn_gdproptout; + partial void Onmsdyn_gdproptoutChanging(global::System.Nullable value); + partial void Onmsdyn_gdproptoutChanged(); /// /// There are no comments for Property internalemailaddress in the schema. /// @@ -765980,6 +765958,28 @@ public virtual string internalemailaddress partial void OninternalemailaddressChanging(string value); partial void OninternalemailaddressChanged(); /// + /// There are no comments for Property salutation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string salutation + { + get + { + return this._salutation; + } + set + { + this.OnsalutationChanging(value); + this._salutation = value; + this.OnsalutationChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _salutation; + partial void OnsalutationChanging(string value); + partial void OnsalutationChanged(); + /// /// There are no comments for Property isemailaddressapprovedbyo365admin in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -766046,28 +766046,6 @@ public virtual string address1_county partial void On_businessunitid_valueChanging(global::System.Nullable value); partial void On_businessunitid_valueChanged(); /// - /// There are no comments for Property address1_telephone1 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address1_telephone1 - { - get - { - return this._address1_telephone1; - } - set - { - this.Onaddress1_telephone1Changing(value); - this._address1_telephone1 = value; - this.Onaddress1_telephone1Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_telephone1; - partial void Onaddress1_telephone1Changing(string value); - partial void Onaddress1_telephone1Changed(); - /// /// There are no comments for Property invitestatuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -766112,50 +766090,6 @@ public virtual string address1_telephone1 partial void OnentityimageidChanging(global::System.Nullable value); partial void OnentityimageidChanged(); /// - /// There are no comments for Property address2_line3 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_line3 - { - get - { - return this._address2_line3; - } - set - { - this.Onaddress2_line3Changing(value); - this._address2_line3 = value; - this.Onaddress2_line3Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line3; - partial void Onaddress2_line3Changing(string value); - partial void Onaddress2_line3Changed(); - /// - /// There are no comments for Property userlicensetype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable userlicensetype - { - get - { - return this._userlicensetype; - } - set - { - this.OnuserlicensetypeChanging(value); - this._userlicensetype = value; - this.OnuserlicensetypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _userlicensetype; - partial void OnuserlicensetypeChanging(global::System.Nullable value); - partial void OnuserlicensetypeChanged(); - /// /// There are no comments for Property incomingemaildeliverymethod in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -766178,27 +766112,27 @@ public virtual string address2_line3 partial void OnincomingemaildeliverymethodChanging(global::System.Nullable value); partial void OnincomingemaildeliverymethodChanged(); /// - /// There are no comments for Property skills in the schema. + /// There are no comments for Property stageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string skills + public virtual global::System.Nullable stageid { get { - return this._skills; + return this._stageid; } set { - this.OnskillsChanging(value); - this._skills = value; - this.OnskillsChanged(); + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _skills; - partial void OnskillsChanging(string value); - partial void OnskillsChanged(); + private global::System.Nullable _stageid; + partial void OnstageidChanging(global::System.Nullable value); + partial void OnstageidChanged(); /// /// There are no comments for Property address1_addresstypecode in the schema. /// @@ -766288,27 +766222,27 @@ public virtual string address2_postalcode partial void OnpassportloChanging(global::System.Nullable value); partial void OnpassportloChanged(); /// - /// There are no comments for Property issyncwithdirectory in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable issyncwithdirectory + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._issyncwithdirectory; + return this._timezoneruleversionnumber; } set { - this.OnissyncwithdirectoryChanging(value); - this._issyncwithdirectory = value; - this.OnissyncwithdirectoryChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _issyncwithdirectory; - partial void OnissyncwithdirectoryChanging(global::System.Nullable value); - partial void OnissyncwithdirectoryChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -766398,71 +766332,93 @@ public virtual string yammeruserid partial void OnyammeruseridChanging(string value); partial void OnyammeruseridChanged(); /// - /// There are no comments for Property address1_longitude in the schema. + /// There are no comments for Property nickname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable address1_longitude + public virtual string nickname { get { - return this._address1_longitude; + return this._nickname; } set { - this.Onaddress1_longitudeChanging(value); - this._address1_longitude = value; - this.Onaddress1_longitudeChanged(); + this.OnnicknameChanging(value); + this._nickname = value; + this.OnnicknameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _address1_longitude; - partial void Onaddress1_longitudeChanging(global::System.Nullable value); - partial void Onaddress1_longitudeChanged(); + private string _nickname; + partial void OnnicknameChanging(string value); + partial void OnnicknameChanged(); /// - /// There are no comments for Property defaultfilterspopulated in the schema. + /// There are no comments for Property address1_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable defaultfilterspopulated + public virtual string address1_name { get { - return this._defaultfilterspopulated; + return this._address1_name; } set { - this.OndefaultfilterspopulatedChanging(value); - this._defaultfilterspopulated = value; - this.OndefaultfilterspopulatedChanged(); + this.Onaddress1_nameChanging(value); + this._address1_name = value; + this.Onaddress1_nameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _defaultfilterspopulated; - partial void OndefaultfilterspopulatedChanging(global::System.Nullable value); - partial void OndefaultfilterspopulatedChanged(); + private string _address1_name; + partial void Onaddress1_nameChanging(string value); + partial void Onaddress1_nameChanged(); /// - /// There are no comments for Property stageid in the schema. + /// There are no comments for Property _queueid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable stageid + public virtual global::System.Nullable _queueid_value { get { - return this._stageid; + return this.__queueid_value; } set { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); + this.On_queueid_valueChanging(value); + this.__queueid_value = value; + this.On_queueid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _stageid; - partial void OnstageidChanging(global::System.Nullable value); - partial void OnstageidChanged(); + private global::System.Nullable __queueid_value; + partial void On_queueid_valueChanging(global::System.Nullable value); + partial void On_queueid_valueChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// /// There are no comments for Property isintegrationuser in the schema. /// @@ -766486,6 +766442,28 @@ public virtual string yammeruserid partial void OnisintegrationuserChanging(global::System.Nullable value); partial void OnisintegrationuserChanged(); /// + /// There are no comments for Property entityimage_timestamp in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable entityimage_timestamp + { + get + { + return this._entityimage_timestamp; + } + set + { + this.Onentityimage_timestampChanging(value); + this._entityimage_timestamp = value; + this.Onentityimage_timestampChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _entityimage_timestamp; + partial void Onentityimage_timestampChanging(global::System.Nullable value); + partial void Onentityimage_timestampChanged(); + /// /// There are no comments for Property personalemailaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -766530,28 +766508,6 @@ public virtual string personalemailaddress partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property address2_telephone2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string address2_telephone2 - { - get - { - return this._address2_telephone2; - } - set - { - this.Onaddress2_telephone2Changing(value); - this._address2_telephone2 = value; - this.Onaddress2_telephone2Changed(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone2; - partial void Onaddress2_telephone2Changing(string value); - partial void Onaddress2_telephone2Changed(); - /// /// There are no comments for Property preferredemailcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -766596,27 +766552,27 @@ public virtual string address2_composite partial void Onaddress2_compositeChanging(string value); partial void Onaddress2_compositeChanged(); /// - /// There are no comments for Property preferredphonecode in the schema. + /// There are no comments for Property address1_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable preferredphonecode + public virtual string address1_telephone1 { get { - return this._preferredphonecode; + return this._address1_telephone1; } set { - this.OnpreferredphonecodeChanging(value); - this._preferredphonecode = value; - this.OnpreferredphonecodeChanged(); + this.Onaddress1_telephone1Changing(value); + this._address1_telephone1 = value; + this.Onaddress1_telephone1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _preferredphonecode; - partial void OnpreferredphonecodeChanging(global::System.Nullable value); - partial void OnpreferredphonecodeChanged(); + private string _address1_telephone1; + partial void Onaddress1_telephone1Changing(string value); + partial void Onaddress1_telephone1Changed(); /// /// There are no comments for Property _mobileofflineprofileid_value in the schema. /// @@ -766640,27 +766596,27 @@ public virtual string address2_composite partial void On_mobileofflineprofileid_valueChanging(global::System.Nullable value); partial void On_mobileofflineprofileid_valueChanged(); /// - /// There are no comments for Property msdyn_gdproptout in the schema. + /// There are no comments for Property windowsliveid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable msdyn_gdproptout + public virtual string windowsliveid { get { - return this._msdyn_gdproptout; + return this._windowsliveid; } set { - this.Onmsdyn_gdproptoutChanging(value); - this._msdyn_gdproptout = value; - this.Onmsdyn_gdproptoutChanged(); + this.OnwindowsliveidChanging(value); + this._windowsliveid = value; + this.OnwindowsliveidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _msdyn_gdproptout; - partial void Onmsdyn_gdproptoutChanging(global::System.Nullable value); - partial void Onmsdyn_gdproptoutChanged(); + private string _windowsliveid; + partial void OnwindowsliveidChanging(string value); + partial void OnwindowsliveidChanged(); /// /// There are no comments for Property address1_line1 in the schema. /// @@ -766728,27 +766684,49 @@ public virtual byte[] entityimage partial void OnentityimageChanging(byte[] value); partial void OnentityimageChanged(); /// - /// There are no comments for Property emailrouteraccessapproval in the schema. + /// There are no comments for Property islicensed in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable emailrouteraccessapproval + public virtual global::System.Nullable islicensed { get { - return this._emailrouteraccessapproval; + return this._islicensed; } set { - this.OnemailrouteraccessapprovalChanging(value); - this._emailrouteraccessapproval = value; - this.OnemailrouteraccessapprovalChanged(); + this.OnislicensedChanging(value); + this._islicensed = value; + this.OnislicensedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _emailrouteraccessapproval; - partial void OnemailrouteraccessapprovalChanging(global::System.Nullable value); - partial void OnemailrouteraccessapprovalChanged(); + private global::System.Nullable _islicensed; + partial void OnislicensedChanging(global::System.Nullable value); + partial void OnislicensedChanged(); + /// + /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _transactioncurrencyid_value + { + get + { + return this.__transactioncurrencyid_value; + } + set + { + this.On_transactioncurrencyid_valueChanging(value); + this.__transactioncurrencyid_value = value; + this.On_transactioncurrencyid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __transactioncurrencyid_value; + partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); + partial void On_transactioncurrencyid_valueChanged(); /// /// There are no comments for Property _calendarid_value in the schema. /// @@ -766838,27 +766816,27 @@ public virtual string fullname partial void OnfullnameChanging(string value); partial void OnfullnameChanged(); /// - /// There are no comments for Property azureactivedirectoryobjectid in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable azureactivedirectoryobjectid + public virtual string entityimage_url { get { - return this._azureactivedirectoryobjectid; + return this._entityimage_url; } set { - this.OnazureactivedirectoryobjectidChanging(value); - this._azureactivedirectoryobjectid = value; - this.OnazureactivedirectoryobjectidChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _azureactivedirectoryobjectid; - partial void OnazureactivedirectoryobjectidChanging(global::System.Nullable value); - partial void OnazureactivedirectoryobjectidChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// /// There are no comments for Property systemuserid in the schema. /// @@ -766882,27 +766860,27 @@ public virtual string fullname partial void OnsystemuseridChanging(global::System.Nullable value); partial void OnsystemuseridChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual global::System.Nullable _modifiedby_value { get { - return this._entityimage_url; + return this.__modifiedby_value; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property address1_line2 in the schema. /// @@ -766948,49 +766926,93 @@ public virtual string address2_upszone partial void Onaddress2_upszoneChanging(string value); partial void Onaddress2_upszoneChanged(); /// - /// There are no comments for Property address1_city in the schema. + /// There are no comments for Property address1_stateorprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_city + public virtual string address1_stateorprovince { get { - return this._address1_city; + return this._address1_stateorprovince; } set { - this.Onaddress1_cityChanging(value); - this._address1_city = value; - this.Onaddress1_cityChanged(); + this.Onaddress1_stateorprovinceChanging(value); + this._address1_stateorprovince = value; + this.Onaddress1_stateorprovinceChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_city; - partial void Onaddress1_cityChanging(string value); - partial void Onaddress1_cityChanged(); + private string _address1_stateorprovince; + partial void Onaddress1_stateorprovinceChanging(string value); + partial void Onaddress1_stateorprovinceChanged(); /// - /// There are no comments for Property address2_fax in the schema. + /// There are no comments for Property address2_line3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_fax + public virtual string address2_line3 { get { - return this._address2_fax; + return this._address2_line3; } set { - this.Onaddress2_faxChanging(value); - this._address2_fax = value; - this.Onaddress2_faxChanged(); + this.Onaddress2_line3Changing(value); + this._address2_line3 = value; + this.Onaddress2_line3Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_fax; - partial void Onaddress2_faxChanging(string value); - partial void Onaddress2_faxChanged(); + private string _address2_line3; + partial void Onaddress2_line3Changing(string value); + partial void Onaddress2_line3Changed(); + /// + /// There are no comments for Property address2_name in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string address2_name + { + get + { + return this._address2_name; + } + set + { + this.Onaddress2_nameChanging(value); + this._address2_name = value; + this.Onaddress2_nameChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address2_name; + partial void Onaddress2_nameChanging(string value); + partial void Onaddress2_nameChanged(); + /// + /// There are no comments for Property userlicensetype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable userlicensetype + { + get + { + return this._userlicensetype; + } + set + { + this.OnuserlicensetypeChanging(value); + this._userlicensetype = value; + this.OnuserlicensetypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _userlicensetype; + partial void OnuserlicensetypeChanging(global::System.Nullable value); + partial void OnuserlicensetypeChanged(); /// /// There are no comments for Property _positionid_value in the schema. /// @@ -767014,27 +767036,27 @@ public virtual string address2_fax partial void On_positionid_valueChanging(global::System.Nullable value); partial void On_positionid_valueChanged(); /// - /// There are no comments for Property address2_line1 in the schema. + /// There are no comments for Property setupuser in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_line1 + public virtual global::System.Nullable setupuser { get { - return this._address2_line1; + return this._setupuser; } set { - this.Onaddress2_line1Changing(value); - this._address2_line1 = value; - this.Onaddress2_line1Changed(); + this.OnsetupuserChanging(value); + this._setupuser = value; + this.OnsetupuserChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_line1; - partial void Onaddress2_line1Changing(string value); - partial void Onaddress2_line1Changed(); + private global::System.Nullable _setupuser; + partial void OnsetupuserChanging(global::System.Nullable value); + partial void OnsetupuserChanged(); /// /// There are no comments for Property _siteid_value in the schema. /// @@ -767058,49 +767080,49 @@ public virtual string address2_line1 partial void On_siteid_valueChanging(global::System.Nullable value); partial void On_siteid_valueChanged(); /// - /// There are no comments for Property _transactioncurrencyid_value in the schema. + /// There are no comments for Property address2_line1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transactioncurrencyid_value + public virtual string address2_line1 { get { - return this.__transactioncurrencyid_value; + return this._address2_line1; } set { - this.On_transactioncurrencyid_valueChanging(value); - this.__transactioncurrencyid_value = value; - this.On_transactioncurrencyid_valueChanged(); + this.Onaddress2_line1Changing(value); + this._address2_line1 = value; + this.Onaddress2_line1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transactioncurrencyid_value; - partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); - partial void On_transactioncurrencyid_valueChanged(); + private string _address2_line1; + partial void Onaddress2_line1Changing(string value); + partial void Onaddress2_line1Changed(); /// - /// There are no comments for Property address2_telephone1 in the schema. + /// There are no comments for Property _defaultmailbox_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_telephone1 + public virtual global::System.Nullable _defaultmailbox_value { get { - return this._address2_telephone1; + return this.__defaultmailbox_value; } set { - this.Onaddress2_telephone1Changing(value); - this._address2_telephone1 = value; - this.Onaddress2_telephone1Changed(); + this.On_defaultmailbox_valueChanging(value); + this.__defaultmailbox_value = value; + this.On_defaultmailbox_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_telephone1; - partial void Onaddress2_telephone1Changing(string value); - partial void Onaddress2_telephone1Changed(); + private global::System.Nullable __defaultmailbox_value; + partial void On_defaultmailbox_valueChanging(global::System.Nullable value); + partial void On_defaultmailbox_valueChanged(); /// /// There are no comments for Property middlename in the schema. /// @@ -767146,49 +767168,27 @@ public virtual string middlename partial void OnisdisabledChanging(global::System.Nullable value); partial void OnisdisabledChanged(); /// - /// There are no comments for Property _defaultmailbox_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _defaultmailbox_value - { - get - { - return this.__defaultmailbox_value; - } - set - { - this.On_defaultmailbox_valueChanging(value); - this.__defaultmailbox_value = value; - this.On_defaultmailbox_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __defaultmailbox_value; - partial void On_defaultmailbox_valueChanging(global::System.Nullable value); - partial void On_defaultmailbox_valueChanged(); - /// - /// There are no comments for Property address1_postalcode in the schema. + /// There are no comments for Property issyncwithdirectory in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address1_postalcode + public virtual global::System.Nullable issyncwithdirectory { get { - return this._address1_postalcode; + return this._issyncwithdirectory; } set { - this.Onaddress1_postalcodeChanging(value); - this._address1_postalcode = value; - this.Onaddress1_postalcodeChanged(); + this.OnissyncwithdirectoryChanging(value); + this._issyncwithdirectory = value; + this.OnissyncwithdirectoryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address1_postalcode; - partial void Onaddress1_postalcodeChanging(string value); - partial void Onaddress1_postalcodeChanged(); + private global::System.Nullable _issyncwithdirectory; + partial void OnissyncwithdirectoryChanging(global::System.Nullable value); + partial void OnissyncwithdirectoryChanged(); /// /// There are no comments for Property employeeid in the schema. /// @@ -767256,27 +767256,27 @@ public virtual string mobilealertemail partial void OnmobilealertemailChanging(string value); partial void OnmobilealertemailChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property address2_telephone2 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string address2_telephone2 { get { - return this._timezoneruleversionnumber; + return this._address2_telephone2; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.Onaddress2_telephone2Changing(value); + this._address2_telephone2 = value; + this.Onaddress2_telephone2Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private string _address2_telephone2; + partial void Onaddress2_telephone2Changing(string value); + partial void Onaddress2_telephone2Changed(); /// /// There are no comments for Property identityid in the schema. /// @@ -767300,27 +767300,49 @@ public virtual string mobilealertemail partial void OnidentityidChanging(global::System.Nullable value); partial void OnidentityidChanged(); /// - /// There are no comments for Property photourl in the schema. + /// There are no comments for Property address2_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string photourl + public virtual string address2_telephone1 { get { - return this._photourl; + return this._address2_telephone1; } set { - this.OnphotourlChanging(value); - this._photourl = value; - this.OnphotourlChanged(); + this.Onaddress2_telephone1Changing(value); + this._address2_telephone1 = value; + this.Onaddress2_telephone1Changed(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _photourl; - partial void OnphotourlChanging(string value); - partial void OnphotourlChanged(); + private string _address2_telephone1; + partial void Onaddress2_telephone1Changing(string value); + partial void Onaddress2_telephone1Changed(); + /// + /// There are no comments for Property _territoryid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _territoryid_value + { + get + { + return this.__territoryid_value; + } + set + { + this.On_territoryid_valueChanging(value); + this.__territoryid_value = value; + this.On_territoryid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __territoryid_value; + partial void On_territoryid_valueChanging(global::System.Nullable value); + partial void On_territoryid_valueChanged(); /// /// There are no comments for Property traversedpath in the schema. /// @@ -767344,27 +767366,49 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// - /// There are no comments for Property address2_county in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address2_county + public virtual global::System.Nullable createdon { get { - return this._address2_county; + return this._createdon; } set { - this.Onaddress2_countyChanging(value); - this._address2_county = value; - this.Onaddress2_countyChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address2_county; - partial void Onaddress2_countyChanging(string value); - partial void Onaddress2_countyChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property azureactivedirectoryobjectid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable azureactivedirectoryobjectid + { + get + { + return this._azureactivedirectoryobjectid; + } + set + { + this.OnazureactivedirectoryobjectidChanging(value); + this._azureactivedirectoryobjectid = value; + this.OnazureactivedirectoryobjectidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _azureactivedirectoryobjectid; + partial void OnazureactivedirectoryobjectidChanging(global::System.Nullable value); + partial void OnazureactivedirectoryobjectidChanged(); /// /// There are no comments for Property yomifirstname in the schema. /// @@ -767388,6 +767432,28 @@ public virtual string yomifirstname partial void OnyomifirstnameChanging(string value); partial void OnyomifirstnameChanged(); /// + /// There are no comments for Property address2_shippingmethodcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable address2_shippingmethodcode + { + get + { + return this._address2_shippingmethodcode; + } + set + { + this.Onaddress2_shippingmethodcodeChanging(value); + this._address2_shippingmethodcode = value; + this.Onaddress2_shippingmethodcodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _address2_shippingmethodcode; + partial void Onaddress2_shippingmethodcodeChanging(global::System.Nullable value); + partial void Onaddress2_shippingmethodcodeChanged(); + /// /// There are no comments for Property address2_telephone3 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -767498,50 +767564,6 @@ public virtual string yomifullname partial void Onaddress2_addresstypecodeChanging(global::System.Nullable value); partial void Onaddress2_addresstypecodeChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property accessmode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable accessmode - { - get - { - return this._accessmode; - } - set - { - this.OnaccessmodeChanging(value); - this._accessmode = value; - this.OnaccessmodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _accessmode; - partial void OnaccessmodeChanging(global::System.Nullable value); - partial void OnaccessmodeChanged(); - /// /// There are no comments for Property yammeremailaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -767564,27 +767586,27 @@ public virtual string yammeremailaddress partial void OnyammeremailaddressChanging(string value); partial void OnyammeremailaddressChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property address1_postalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual string address1_postalcode { get { - return this.__modifiedonbehalfby_value; + return this._address1_postalcode; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.Onaddress1_postalcodeChanging(value); + this._address1_postalcode = value; + this.Onaddress1_postalcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private string _address1_postalcode; + partial void Onaddress1_postalcodeChanging(string value); + partial void Onaddress1_postalcodeChanged(); /// /// There are no comments for Property exchangerate in the schema. /// @@ -767740,6 +767762,28 @@ public virtual string applicationiduri partial void OnapplicationiduriChanging(string value); partial void OnapplicationiduriChanged(); /// + /// There are no comments for Property preferredphonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable preferredphonecode + { + get + { + return this._preferredphonecode; + } + set + { + this.OnpreferredphonecodeChanging(value); + this._preferredphonecode = value; + this.OnpreferredphonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _preferredphonecode; + partial void OnpreferredphonecodeChanging(global::System.Nullable value); + partial void OnpreferredphonecodeChanged(); + /// /// There are no comments for Property address2_utcoffset in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -767762,27 +767806,27 @@ public virtual string applicationiduri partial void Onaddress2_utcoffsetChanging(global::System.Nullable value); partial void Onaddress2_utcoffsetChanged(); /// - /// There are no comments for Property islicensed in the schema. + /// There are no comments for Property title in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable islicensed + public virtual string title { get { - return this._islicensed; + return this._title; } set { - this.OnislicensedChanging(value); - this._islicensed = value; - this.OnislicensedChanged(); + this.OntitleChanging(value); + this._title = value; + this.OntitleChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _islicensed; - partial void OnislicensedChanging(global::System.Nullable value); - partial void OnislicensedChanged(); + private string _title; + partial void OntitleChanging(string value); + partial void OntitleChanged(); /// /// There are no comments for Property address1_telephone2 in the schema. /// @@ -767806,6 +767850,28 @@ public virtual string address1_telephone2 partial void Onaddress1_telephone2Changing(string value); partial void Onaddress1_telephone2Changed(); /// + /// There are no comments for Property disabledreason in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string disabledreason + { + get + { + return this._disabledreason; + } + set + { + this.OndisabledreasonChanging(value); + this._disabledreason = value; + this.OndisabledreasonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _disabledreason; + partial void OndisabledreasonChanging(string value); + partial void OndisabledreasonChanged(); + /// /// There are no comments for Property address1_country in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -806296,6 +806362,28 @@ public static task Createtask(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dyna partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// + /// There are no comments for Property category in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string category + { + get + { + return this._category; + } + set + { + this.OncategoryChanging(value); + this._category = value; + this.OncategoryChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _category; + partial void OncategoryChanging(string value); + partial void OncategoryChanged(); + /// /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -806384,28 +806472,6 @@ public virtual string subcategory partial void OnpercentcompleteChanging(global::System.Nullable value); partial void OnpercentcompleteChanged(); /// - /// There are no comments for Property category in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string category - { - get - { - return this._category; - } - set - { - this.OncategoryChanging(value); - this._category = value; - this.OncategoryChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _category; - partial void OncategoryChanging(string value); - partial void OncategoryChanged(); - /// /// There are no comments for Property task_PostRegardings in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -816478,6 +816544,28 @@ public virtual string traversedpath partial void OnorganizationidChanging(global::System.Nullable value); partial void OnorganizationidChanged(); /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -816522,28 +816610,6 @@ public virtual string name partial void On_regardingobjectid_valueChanging(global::System.Nullable value); partial void On_regardingobjectid_valueChanged(); /// - /// There are no comments for Property isdefault in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable isdefault - { - get - { - return this._isdefault; - } - set - { - this.OnisdefaultChanging(value); - this._isdefault = value; - this.OnisdefaultChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdefault; - partial void OnisdefaultChanging(global::System.Nullable value); - partial void OnisdefaultChanged(); - /// /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -816720,6 +816786,28 @@ public virtual string emailaddress partial void On_businessunitid_valueChanging(global::System.Nullable value); partial void On_businessunitid_valueChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property _queueid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -816742,27 +816830,49 @@ public virtual string emailaddress partial void On_queueid_valueChanging(global::System.Nullable value); partial void On_queueid_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property isdefault in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable isdefault { get { - return this._modifiedon; + return this._isdefault; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnisdefaultChanging(value); + this._isdefault = value; + this.OnisdefaultChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _isdefault; + partial void OnisdefaultChanging(global::System.Nullable value); + partial void OnisdefaultChanged(); + /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property overriddencreatedon in the schema. /// @@ -816874,50 +816984,6 @@ public virtual string emailaddress partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property azureactivedirectoryobjectid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -821697,28 +821763,6 @@ public partial class teamsyncattributemappingprofiles : crmbaseentity partial void OnteamsyncattributemappingprofileidChanging(global::System.Nullable value); partial void OnteamsyncattributemappingprofileidChanged(); /// - /// There are no comments for Property syncattributemappingprofileid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable syncattributemappingprofileid - { - get - { - return this._syncattributemappingprofileid; - } - set - { - this.OnsyncattributemappingprofileidChanging(value); - this._syncattributemappingprofileid = value; - this.OnsyncattributemappingprofileidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _syncattributemappingprofileid; - partial void OnsyncattributemappingprofileidChanging(global::System.Nullable value); - partial void OnsyncattributemappingprofileidChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -821762,6 +821806,28 @@ public partial class teamsyncattributemappingprofiles : crmbaseentity private global::System.Nullable _teamid; partial void OnteamidChanging(global::System.Nullable value); partial void OnteamidChanged(); + /// + /// There are no comments for Property syncattributemappingprofileid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable syncattributemappingprofileid + { + get + { + return this._syncattributemappingprofileid; + } + set + { + this.OnsyncattributemappingprofileidChanging(value); + this._syncattributemappingprofileid = value; + this.OnsyncattributemappingprofileidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _syncattributemappingprofileid; + partial void OnsyncattributemappingprofileidChanging(global::System.Nullable value); + partial void OnsyncattributemappingprofileidChanged(); } /// /// There are no comments for teamtemplateSingle in the schema. @@ -822000,28 +822066,6 @@ public static teamtemplate Createteamtemplate(global::EMBC.ESS.Utilities.Dynamic partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -822088,6 +822132,28 @@ public static teamtemplate Createteamtemplate(global::EMBC.ESS.Utilities.Dynamic partial void OndefaultaccessrightsmaskChanging(global::System.Nullable value); partial void OndefaultaccessrightsmaskChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -822154,6 +822220,28 @@ public static teamtemplate Createteamtemplate(global::EMBC.ESS.Utilities.Dynamic partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -822198,28 +822286,6 @@ public virtual string description partial void OnissystemChanging(global::System.Nullable value); partial void OnissystemChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property teamtemplatename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -822857,28 +822923,6 @@ public virtual string subjectpresentationxml partial void OnsubjectpresentationxmlChanging(string value); partial void OnsubjectpresentationxmlChanged(); /// - /// There are no comments for Property solutionid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable solutionid - { - get - { - return this._solutionid; - } - set - { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); - /// /// There are no comments for Property generationtypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -823099,49 +823143,49 @@ public virtual string safehtml partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property entityimage_timestamp in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimage_timestamp + public virtual string description { get { - return this._entityimage_timestamp; + return this._description; } set { - this.Onentityimage_timestampChanging(value); - this._entityimage_timestamp = value; - this.Onentityimage_timestampChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimage_timestamp; - partial void Onentityimage_timestampChanging(global::System.Nullable value); - partial void Onentityimage_timestampChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// - /// There are no comments for Property templateidunique in the schema. + /// There are no comments for Property entityimage_timestamp in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable templateidunique + public virtual global::System.Nullable entityimage_timestamp { get { - return this._templateidunique; + return this._entityimage_timestamp; } set { - this.OntemplateiduniqueChanging(value); - this._templateidunique = value; - this.OntemplateiduniqueChanged(); + this.Onentityimage_timestampChanging(value); + this._entityimage_timestamp = value; + this.Onentityimage_timestampChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _templateidunique; - partial void OntemplateiduniqueChanging(global::System.Nullable value); - partial void OntemplateiduniqueChanged(); + private global::System.Nullable _entityimage_timestamp; + partial void Onentityimage_timestampChanging(global::System.Nullable value); + partial void Onentityimage_timestampChanged(); /// /// There are no comments for Property body in the schema. /// @@ -823165,27 +823209,27 @@ public virtual string body partial void OnbodyChanging(string value); partial void OnbodyChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property solutionid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable solutionid { get { - return this._description; + return this._solutionid; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); /// /// There are no comments for Property _modifiedby_value in the schema. /// @@ -823627,6 +823671,28 @@ public virtual byte[] entityimage partial void OnentityimageChanging(byte[] value); partial void OnentityimageChanged(); /// + /// There are no comments for Property templateidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable templateidunique + { + get + { + return this._templateidunique; + } + set + { + this.OntemplateiduniqueChanging(value); + this._templateidunique = value; + this.OntemplateiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _templateidunique; + partial void OntemplateiduniqueChanging(global::System.Nullable value); + partial void OntemplateiduniqueChanged(); + /// /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -824614,49 +824680,49 @@ public static territory Createterritory(global::EMBC.ESS.Utilities.Dynamics.Micr return territory; } /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable modifiedon { get { - return this._utcconversiontimezonecode; + return this._modifiedon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._timezoneruleversionnumber; + return this._utcconversiontimezonecode; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property _managerid_value in the schema. /// @@ -824746,27 +824812,27 @@ public static territory Createterritory(global::EMBC.ESS.Utilities.Dynamics.Micr partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property entityimageid in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable entityimageid + public virtual global::System.Nullable exchangerate { get { - return this._entityimageid; + return this._exchangerate; } set { - this.OnentityimageidChanging(value); - this._entityimageid = value; - this.OnentityimageidChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _entityimageid; - partial void OnentityimageidChanging(global::System.Nullable value); - partial void OnentityimageidChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); /// /// There are no comments for Property description in the schema. /// @@ -824790,28 +824856,6 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property exchangerate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable exchangerate - { - get - { - return this._exchangerate; - } - set - { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -824834,27 +824878,27 @@ public virtual string description partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property entityimageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable entityimageid { get { - return this._modifiedon; + return this._entityimageid; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnentityimageidChanging(value); + this._entityimageid = value; + this.OnentityimageidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _entityimageid; + partial void OnentityimageidChanging(global::System.Nullable value); + partial void OnentityimageidChanged(); /// /// There are no comments for Property _transactioncurrencyid_value in the schema. /// @@ -824944,6 +824988,28 @@ public virtual byte[] entityimage partial void OnentityimageChanging(byte[] value); partial void OnentityimageChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -827370,49 +827436,49 @@ public virtual string userinterfacename partial void OnretiredorderChanging(global::System.Nullable value); partial void OnretiredorderChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._modifiedon; + return this.__createdonbehalfby_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable modifiedon { get { - return this.__createdonbehalfby_value; + return this._modifiedon; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -827904,6 +827970,28 @@ public static timezonelocalizedname Createtimezonelocalizedname(global::EMBC.ESS return timezonelocalizedname; } /// + /// There are no comments for Property _timezonedefinitionid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _timezonedefinitionid_value + { + get + { + return this.__timezonedefinitionid_value; + } + set + { + this.On_timezonedefinitionid_valueChanging(value); + this.__timezonedefinitionid_value = value; + this.On_timezonedefinitionid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __timezonedefinitionid_value; + partial void On_timezonedefinitionid_valueChanging(global::System.Nullable value); + partial void On_timezonedefinitionid_valueChanged(); + /// /// There are no comments for Property daylightname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -827926,27 +828014,27 @@ public virtual string daylightname partial void OndaylightnameChanging(string value); partial void OndaylightnameChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property userinterfacename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string userinterfacename { get { - return this.__modifiedby_value; + return this._userinterfacename; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnuserinterfacenameChanging(value); + this._userinterfacename = value; + this.OnuserinterfacenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _userinterfacename; + partial void OnuserinterfacenameChanging(string value); + partial void OnuserinterfacenameChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -828014,6 +828102,50 @@ public virtual string standardname partial void OnstandardnameChanging(string value); partial void OnstandardnameChanged(); /// + /// There are no comments for Property _modifiedby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedby_value + { + get + { + return this.__modifiedby_value; + } + set + { + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); + /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -828036,72 +828168,6 @@ public virtual string standardname partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// - /// There are no comments for Property userinterfacename in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string userinterfacename - { - get - { - return this._userinterfacename; - } - set - { - this.OnuserinterfacenameChanging(value); - this._userinterfacename = value; - this.OnuserinterfacenameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _userinterfacename; - partial void OnuserinterfacenameChanging(string value); - partial void OnuserinterfacenameChanged(); - /// - /// There are no comments for Property _timezonedefinitionid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _timezonedefinitionid_value - { - get - { - return this.__timezonedefinitionid_value; - } - set - { - this.On_timezonedefinitionid_valueChanging(value); - this.__timezonedefinitionid_value = value; - this.On_timezonedefinitionid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __timezonedefinitionid_value; - partial void On_timezonedefinitionid_valueChanging(global::System.Nullable value); - partial void On_timezonedefinitionid_valueChanged(); - /// /// There are no comments for Property cultureid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -828190,27 +828256,27 @@ public virtual string userinterfacename partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable createdon { get { - return this.__createdby_value; + return this._createdon; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property createdonbehalfby in the schema. /// @@ -828593,49 +828659,49 @@ public static timezonerule Createtimezonerule(global::EMBC.ESS.Utilities.Dynamic partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property standardmonth in the schema. + /// There are no comments for Property daylightyear in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable standardmonth + public virtual global::System.Nullable daylightyear { get { - return this._standardmonth; + return this._daylightyear; } set { - this.OnstandardmonthChanging(value); - this._standardmonth = value; - this.OnstandardmonthChanged(); + this.OndaylightyearChanging(value); + this._daylightyear = value; + this.OndaylightyearChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _standardmonth; - partial void OnstandardmonthChanging(global::System.Nullable value); - partial void OnstandardmonthChanged(); + private global::System.Nullable _daylightyear; + partial void OndaylightyearChanging(global::System.Nullable value); + partial void OndaylightyearChanged(); /// - /// There are no comments for Property standardhour in the schema. + /// There are no comments for Property timezoneruleid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable standardhour + public virtual global::System.Nullable timezoneruleid { get { - return this._standardhour; + return this._timezoneruleid; } set { - this.OnstandardhourChanging(value); - this._standardhour = value; - this.OnstandardhourChanged(); + this.OntimezoneruleidChanging(value); + this._timezoneruleid = value; + this.OntimezoneruleidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _standardhour; - partial void OnstandardhourChanging(global::System.Nullable value); - partial void OnstandardhourChanged(); + private global::System.Nullable _timezoneruleid; + partial void OntimezoneruleidChanging(global::System.Nullable value); + partial void OntimezoneruleidChanged(); /// /// There are no comments for Property bias in the schema. /// @@ -828659,28 +828725,6 @@ public static timezonerule Createtimezonerule(global::EMBC.ESS.Utilities.Dynamic partial void OnbiasChanging(global::System.Nullable value); partial void OnbiasChanged(); /// - /// There are no comments for Property _timezonedefinitionid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _timezonedefinitionid_value - { - get - { - return this.__timezonedefinitionid_value; - } - set - { - this.On_timezonedefinitionid_valueChanging(value); - this.__timezonedefinitionid_value = value; - this.On_timezonedefinitionid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __timezonedefinitionid_value; - partial void On_timezonedefinitionid_valueChanging(global::System.Nullable value); - partial void On_timezonedefinitionid_valueChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -828725,71 +828769,71 @@ public static timezonerule Createtimezonerule(global::EMBC.ESS.Utilities.Dynamic partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property standardday in the schema. + /// There are no comments for Property standarddayofweek in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable standardday + public virtual global::System.Nullable standarddayofweek { get { - return this._standardday; + return this._standarddayofweek; } set { - this.OnstandarddayChanging(value); - this._standardday = value; - this.OnstandarddayChanged(); + this.OnstandarddayofweekChanging(value); + this._standarddayofweek = value; + this.OnstandarddayofweekChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _standardday; - partial void OnstandarddayChanging(global::System.Nullable value); - partial void OnstandarddayChanged(); + private global::System.Nullable _standarddayofweek; + partial void OnstandarddayofweekChanging(global::System.Nullable value); + partial void OnstandarddayofweekChanged(); /// - /// There are no comments for Property daylightbias in the schema. + /// There are no comments for Property standardday in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable daylightbias + public virtual global::System.Nullable standardday { get { - return this._daylightbias; + return this._standardday; } set { - this.OndaylightbiasChanging(value); - this._daylightbias = value; - this.OndaylightbiasChanged(); + this.OnstandarddayChanging(value); + this._standardday = value; + this.OnstandarddayChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _daylightbias; - partial void OndaylightbiasChanging(global::System.Nullable value); - partial void OndaylightbiasChanged(); + private global::System.Nullable _standardday; + partial void OnstandarddayChanging(global::System.Nullable value); + partial void OnstandarddayChanged(); /// - /// There are no comments for Property standardminute in the schema. + /// There are no comments for Property daylightdayofweek in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable standardminute + public virtual global::System.Nullable daylightdayofweek { get { - return this._standardminute; + return this._daylightdayofweek; } set { - this.OnstandardminuteChanging(value); - this._standardminute = value; - this.OnstandardminuteChanged(); + this.OndaylightdayofweekChanging(value); + this._daylightdayofweek = value; + this.OndaylightdayofweekChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _standardminute; - partial void OnstandardminuteChanging(global::System.Nullable value); - partial void OnstandardminuteChanged(); + private global::System.Nullable _daylightdayofweek; + partial void OndaylightdayofweekChanging(global::System.Nullable value); + partial void OndaylightdayofweekChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -828813,49 +828857,27 @@ public static timezonerule Createtimezonerule(global::EMBC.ESS.Utilities.Dynamic partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property timezoneruleid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleid - { - get - { - return this._timezoneruleid; - } - set - { - this.OntimezoneruleidChanging(value); - this._timezoneruleid = value; - this.OntimezoneruleidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleid; - partial void OntimezoneruleidChanging(global::System.Nullable value); - partial void OntimezoneruleidChanged(); - /// - /// There are no comments for Property daylightyear in the schema. + /// There are no comments for Property standardyear in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable daylightyear + public virtual global::System.Nullable standardyear { get { - return this._daylightyear; + return this._standardyear; } set { - this.OndaylightyearChanging(value); - this._daylightyear = value; - this.OndaylightyearChanged(); + this.OnstandardyearChanging(value); + this._standardyear = value; + this.OnstandardyearChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _daylightyear; - partial void OndaylightyearChanging(global::System.Nullable value); - partial void OndaylightyearChanged(); + private global::System.Nullable _standardyear; + partial void OnstandardyearChanging(global::System.Nullable value); + partial void OnstandardyearChanged(); /// /// There are no comments for Property standardbias in the schema. /// @@ -828901,27 +828923,27 @@ public static timezonerule Createtimezonerule(global::EMBC.ESS.Utilities.Dynamic partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property standardyear in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable standardyear + public virtual global::System.Nullable _modifiedby_value { get { - return this._standardyear; + return this.__modifiedby_value; } set { - this.OnstandardyearChanging(value); - this._standardyear = value; - this.OnstandardyearChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _standardyear; - partial void OnstandardyearChanging(global::System.Nullable value); - partial void OnstandardyearChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -828967,49 +828989,49 @@ public static timezonerule Createtimezonerule(global::EMBC.ESS.Utilities.Dynamic partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property standarddayofweek in the schema. + /// There are no comments for Property _timezonedefinitionid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable standarddayofweek + public virtual global::System.Nullable _timezonedefinitionid_value { get { - return this._standarddayofweek; + return this.__timezonedefinitionid_value; } set { - this.OnstandarddayofweekChanging(value); - this._standarddayofweek = value; - this.OnstandarddayofweekChanged(); + this.On_timezonedefinitionid_valueChanging(value); + this.__timezonedefinitionid_value = value; + this.On_timezonedefinitionid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _standarddayofweek; - partial void OnstandarddayofweekChanging(global::System.Nullable value); - partial void OnstandarddayofweekChanged(); + private global::System.Nullable __timezonedefinitionid_value; + partial void On_timezonedefinitionid_valueChanging(global::System.Nullable value); + partial void On_timezonedefinitionid_valueChanged(); /// - /// There are no comments for Property daylightsecond in the schema. + /// There are no comments for Property daylightbias in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable daylightsecond + public virtual global::System.Nullable daylightbias { get { - return this._daylightsecond; + return this._daylightbias; } set { - this.OndaylightsecondChanging(value); - this._daylightsecond = value; - this.OndaylightsecondChanged(); + this.OndaylightbiasChanging(value); + this._daylightbias = value; + this.OndaylightbiasChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _daylightsecond; - partial void OndaylightsecondChanging(global::System.Nullable value); - partial void OndaylightsecondChanged(); + private global::System.Nullable _daylightbias; + partial void OndaylightbiasChanging(global::System.Nullable value); + partial void OndaylightbiasChanged(); /// /// There are no comments for Property daylightmonth in the schema. /// @@ -829055,49 +829077,93 @@ public static timezonerule Createtimezonerule(global::EMBC.ESS.Utilities.Dynamic partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// - /// There are no comments for Property daylightdayofweek in the schema. + /// There are no comments for Property effectivedatetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable daylightdayofweek + public virtual global::System.Nullable effectivedatetime { get { - return this._daylightdayofweek; + return this._effectivedatetime; } set { - this.OndaylightdayofweekChanging(value); - this._daylightdayofweek = value; - this.OndaylightdayofweekChanged(); + this.OneffectivedatetimeChanging(value); + this._effectivedatetime = value; + this.OneffectivedatetimeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _daylightdayofweek; - partial void OndaylightdayofweekChanging(global::System.Nullable value); - partial void OndaylightdayofweekChanged(); + private global::System.Nullable _effectivedatetime; + partial void OneffectivedatetimeChanging(global::System.Nullable value); + partial void OneffectivedatetimeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property daylightsecond in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable daylightsecond { get { - return this.__modifiedby_value; + return this._daylightsecond; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OndaylightsecondChanging(value); + this._daylightsecond = value; + this.OndaylightsecondChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _daylightsecond; + partial void OndaylightsecondChanging(global::System.Nullable value); + partial void OndaylightsecondChanged(); + /// + /// There are no comments for Property standardmonth in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable standardmonth + { + get + { + return this._standardmonth; + } + set + { + this.OnstandardmonthChanging(value); + this._standardmonth = value; + this.OnstandardmonthChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _standardmonth; + partial void OnstandardmonthChanging(global::System.Nullable value); + partial void OnstandardmonthChanged(); + /// + /// There are no comments for Property standardhour in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable standardhour + { + get + { + return this._standardhour; + } + set + { + this.OnstandardhourChanging(value); + this._standardhour = value; + this.OnstandardhourChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _standardhour; + partial void OnstandardhourChanging(global::System.Nullable value); + partial void OnstandardhourChanged(); /// /// There are no comments for Property daylightday in the schema. /// @@ -829121,27 +829187,27 @@ public static timezonerule Createtimezonerule(global::EMBC.ESS.Utilities.Dynamic partial void OndaylightdayChanging(global::System.Nullable value); partial void OndaylightdayChanged(); /// - /// There are no comments for Property effectivedatetime in the schema. + /// There are no comments for Property standardminute in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable effectivedatetime + public virtual global::System.Nullable standardminute { get { - return this._effectivedatetime; + return this._standardminute; } set { - this.OneffectivedatetimeChanging(value); - this._effectivedatetime = value; - this.OneffectivedatetimeChanged(); + this.OnstandardminuteChanging(value); + this._standardminute = value; + this.OnstandardminuteChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _effectivedatetime; - partial void OneffectivedatetimeChanging(global::System.Nullable value); - partial void OneffectivedatetimeChanged(); + private global::System.Nullable _standardminute; + partial void OnstandardminuteChanging(global::System.Nullable value); + partial void OnstandardminuteChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -829545,28 +829611,6 @@ public static tracelog Createtracelog(global::EMBC.ESS.Utilities.Dynamics.Micros return tracelog; } /// - /// There are no comments for Property canbedeleted in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable canbedeleted - { - get - { - return this._canbedeleted; - } - set - { - this.OncanbedeletedChanging(value); - this._canbedeleted = value; - this.OncanbedeletedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _canbedeleted; - partial void OncanbedeletedChanging(global::System.Nullable value); - partial void OncanbedeletedChanged(); - /// /// There are no comments for Property collationlevel in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -829611,27 +829655,27 @@ public virtual string traceparameterxml partial void OntraceparameterxmlChanging(string value); partial void OntraceparameterxmlChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. + /// There are no comments for Property canbedeleted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual global::System.Nullable canbedeleted { get { - return this._timezoneruleversionnumber; + return this._canbedeleted; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); + this.OncanbedeletedChanging(value); + this._canbedeleted = value; + this.OncanbedeletedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); + private global::System.Nullable _canbedeleted; + partial void OncanbedeletedChanging(global::System.Nullable value); + partial void OncanbedeletedChanged(); /// /// There are no comments for Property traceparameterhash in the schema. /// @@ -829655,28 +829699,6 @@ public virtual string traceparameterxml partial void OntraceparameterhashChanging(global::System.Nullable value); partial void OntraceparameterhashChanged(); /// - /// There are no comments for Property errortypedisplay in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string errortypedisplay - { - get - { - return this._errortypedisplay; - } - set - { - this.OnerrortypedisplayChanging(value); - this._errortypedisplay = value; - this.OnerrortypedisplayChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _errortypedisplay; - partial void OnerrortypedisplayChanging(string value); - partial void OnerrortypedisplayChanged(); - /// /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -829721,71 +829743,49 @@ public virtual string text partial void OntextChanging(string value); partial void OntextChanged(); /// - /// There are no comments for Property _regardingobjectowningbusinessunit_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _regardingobjectowningbusinessunit_value - { - get - { - return this.__regardingobjectowningbusinessunit_value; - } - set - { - this.On_regardingobjectowningbusinessunit_valueChanging(value); - this.__regardingobjectowningbusinessunit_value = value; - this.On_regardingobjectowningbusinessunit_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __regardingobjectowningbusinessunit_value; - partial void On_regardingobjectowningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_regardingobjectowningbusinessunit_valueChanged(); - /// - /// There are no comments for Property level in the schema. + /// There are no comments for Property timezoneruleversionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable level + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._level; + return this._timezoneruleversionnumber; } set { - this.OnlevelChanging(value); - this._level = value; - this.OnlevelChanged(); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _level; - partial void OnlevelChanging(global::System.Nullable value); - partial void OnlevelChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property errortypedisplay in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual string errortypedisplay { get { - return this._utcconversiontimezonecode; + return this._errortypedisplay; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnerrortypedisplayChanging(value); + this._errortypedisplay = value; + this.OnerrortypedisplayChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private string _errortypedisplay; + partial void OnerrortypedisplayChanging(string value); + partial void OnerrortypedisplayChanged(); /// /// There are no comments for Property machinename in the schema. /// @@ -829853,6 +829853,28 @@ public virtual string machinename partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// + /// There are no comments for Property level in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable level + { + get + { + return this._level; + } + set + { + this.OnlevelChanging(value); + this._level = value; + this.OnlevelChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _level; + partial void OnlevelChanging(global::System.Nullable value); + partial void OnlevelChanged(); + /// /// There are no comments for Property tracecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -830073,6 +830095,28 @@ public virtual string traceactionxml partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// + /// There are no comments for Property utcconversiontimezonecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable utcconversiontimezonecode + { + get + { + return this._utcconversiontimezonecode; + } + set + { + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); + /// /// There are no comments for Property _regardingobjectid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -830161,6 +830205,28 @@ public virtual string traceactionxml partial void On_parenttracelogid_valueChanging(global::System.Nullable value); partial void On_parenttracelogid_valueChanged(); /// + /// There are no comments for Property _regardingobjectowningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _regardingobjectowningbusinessunit_value + { + get + { + return this.__regardingobjectowningbusinessunit_value; + } + set + { + this.On_regardingobjectowningbusinessunit_valueChanging(value); + this.__regardingobjectowningbusinessunit_value = value; + this.On_regardingobjectowningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __regardingobjectowningbusinessunit_value; + partial void On_regardingobjectowningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_regardingobjectowningbusinessunit_valueChanged(); + /// /// There are no comments for Property regardingobjectid_mailbox in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -833149,6 +833215,28 @@ public static transactioncurrency Createtransactioncurrency(global::EMBC.ESS.Uti return transactioncurrency; } /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -833193,28 +833281,6 @@ public virtual string isocurrencycode partial void OnisocurrencycodeChanging(string value); partial void OnisocurrencycodeChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -833259,6 +833325,28 @@ public virtual string isocurrencycode partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// + /// There are no comments for Property currencysymbol in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string currencysymbol + { + get + { + return this._currencysymbol; + } + set + { + this.OncurrencysymbolChanging(value); + this._currencysymbol = value; + this.OncurrencysymbolChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _currencysymbol; + partial void OncurrencysymbolChanging(string value); + partial void OncurrencysymbolChanged(); + /// /// There are no comments for Property currencyname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -833303,27 +833391,27 @@ public virtual string currencyname partial void OnoverriddencreatedonChanging(global::System.Nullable value); partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property transactioncurrencyid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable transactioncurrencyid { get { - return this.__modifiedonbehalfby_value; + return this._transactioncurrencyid; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OntransactioncurrencyidChanging(value); + this._transactioncurrencyid = value; + this.OntransactioncurrencyidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _transactioncurrencyid; + partial void OntransactioncurrencyidChanging(global::System.Nullable value); + partial void OntransactioncurrencyidChanged(); /// /// There are no comments for Property entityimage in the schema. /// @@ -833391,49 +833479,49 @@ public virtual byte[] entityimage partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property currencysymbol in the schema. + /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string currencysymbol + public virtual string entityimage_url { get { - return this._currencysymbol; + return this._entityimage_url; } set { - this.OncurrencysymbolChanging(value); - this._currencysymbol = value; - this.OncurrencysymbolChanged(); + this.Onentityimage_urlChanging(value); + this._entityimage_url = value; + this.Onentityimage_urlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _currencysymbol; - partial void OncurrencysymbolChanging(string value); - partial void OncurrencysymbolChanged(); + private string _entityimage_url; + partial void Onentityimage_urlChanging(string value); + partial void Onentityimage_urlChanged(); /// - /// There are no comments for Property entityimage_url in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string entityimage_url + public virtual global::System.Nullable importsequencenumber { get { - return this._entityimage_url; + return this._importsequencenumber; } set { - this.Onentityimage_urlChanging(value); - this._entityimage_url = value; - this.Onentityimage_urlChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _entityimage_url; - partial void Onentityimage_urlChanging(string value); - partial void Onentityimage_urlChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -833479,6 +833567,28 @@ public virtual string entityimage_url partial void OncurrencyprecisionChanging(global::System.Nullable value); partial void OncurrencyprecisionChanged(); /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); + /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -833523,28 +833633,6 @@ public virtual string entityimage_url partial void Onentityimage_timestampChanging(global::System.Nullable value); partial void Onentityimage_timestampChanged(); /// - /// There are no comments for Property transactioncurrencyid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable transactioncurrencyid - { - get - { - return this._transactioncurrencyid; - } - set - { - this.OntransactioncurrencyidChanging(value); - this._transactioncurrencyid = value; - this.OntransactioncurrencyidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _transactioncurrencyid; - partial void OntransactioncurrencyidChanging(global::System.Nullable value); - partial void OntransactioncurrencyidChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -833567,28 +833655,6 @@ public virtual string entityimage_url partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable importsequencenumber - { - get - { - return this._importsequencenumber; - } - set - { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -836675,6 +836741,28 @@ public static transformationmapping Createtransformationmapping(global::EMBC.ESS return transformationmapping; } /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -836851,28 +836939,6 @@ public virtual string targetentityname partial void OnismanagedChanging(global::System.Nullable value); partial void OnismanagedChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property transformationtypename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -836917,28 +836983,6 @@ public virtual string transformationtypename partial void On_importmapid_valueChanging(global::System.Nullable value); partial void On_importmapid_valueChanged(); /// - /// There are no comments for Property transformationmappingid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable transformationmappingid - { - get - { - return this._transformationmappingid; - } - set - { - this.OntransformationmappingidChanging(value); - this._transformationmappingid = value; - this.OntransformationmappingidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _transformationmappingid; - partial void OntransformationmappingidChanging(global::System.Nullable value); - partial void OntransformationmappingidChanged(); - /// /// There are no comments for Property overwritetime in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -836983,49 +837027,71 @@ public virtual string transformationtypename partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__modifiedonbehalfby_value; + return this.__modifiedby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property transformationmappingid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable transformationmappingid { get { - return this._introducedversion; + return this._transformationmappingid; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.OntransformationmappingidChanging(value); + this._transformationmappingid = value; + this.OntransformationmappingidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable _transformationmappingid; + partial void OntransformationmappingidChanging(global::System.Nullable value); + partial void OntransformationmappingidChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property sourceentityname in the schema. /// @@ -837451,27 +837517,27 @@ public static transformationparametermapping Createtransformationparametermappin return transformationparametermapping; } /// - /// There are no comments for Property _transformationmappingid_value in the schema. + /// There are no comments for Property transformationparametermappingid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _transformationmappingid_value + public virtual global::System.Nullable transformationparametermappingid { get { - return this.__transformationmappingid_value; + return this._transformationparametermappingid; } set { - this.On_transformationmappingid_valueChanging(value); - this.__transformationmappingid_value = value; - this.On_transformationmappingid_valueChanged(); + this.OntransformationparametermappingidChanging(value); + this._transformationparametermappingid = value; + this.OntransformationparametermappingidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __transformationmappingid_value; - partial void On_transformationmappingid_valueChanging(global::System.Nullable value); - partial void On_transformationmappingid_valueChanged(); + private global::System.Nullable _transformationparametermappingid; + partial void OntransformationparametermappingidChanging(global::System.Nullable value); + partial void OntransformationparametermappingidChanged(); /// /// There are no comments for Property overwritetime in the schema. /// @@ -837517,6 +837583,50 @@ public static transformationparametermapping Createtransformationparametermappin partial void OnparametersequenceChanging(global::System.Nullable value); partial void OnparametersequenceChanged(); /// + /// There are no comments for Property introducedversion in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string introducedversion + { + get + { + return this._introducedversion; + } + set + { + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); + /// + /// There are no comments for Property modifiedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable modifiedon + { + get + { + return this._modifiedon; + } + set + { + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); + /// /// There are no comments for Property parameterarrayindex in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -837561,49 +837671,49 @@ public static transformationparametermapping Createtransformationparametermappin partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property introducedversion in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string introducedversion + public virtual global::System.Nullable ismanaged { get { - return this._introducedversion; + return this._ismanaged; } set { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _transformationmappingid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _transformationmappingid_value { get { - return this._componentstate; + return this.__transformationmappingid_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_transformationmappingid_valueChanging(value); + this.__transformationmappingid_value = value; + this.On_transformationmappingid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __transformationmappingid_value; + partial void On_transformationmappingid_valueChanging(global::System.Nullable value); + partial void On_transformationmappingid_valueChanged(); /// /// There are no comments for Property data in the schema. /// @@ -837627,50 +837737,6 @@ public virtual string data partial void OndataChanging(string value); partial void OndataChanged(); /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property datatypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -837803,6 +837869,28 @@ public virtual string data partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// /// There are no comments for Property parametertypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -837847,28 +837935,6 @@ public virtual string data partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property transformationparametermappingid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable transformationparametermappingid - { - get - { - return this._transformationparametermappingid; - } - set - { - this.OntransformationparametermappingidChanging(value); - this._transformationparametermappingid = value; - this.OntransformationparametermappingidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _transformationparametermappingid; - partial void OntransformationparametermappingidChanging(global::System.Nullable value); - partial void OntransformationparametermappingidChanged(); - /// /// There are no comments for Property transformationmappingid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -838363,27 +838429,27 @@ public static translationprocess Createtranslationprocess(global::EMBC.ESS.Utili return translationprocess; } /// - /// There are no comments for Property duration in the schema. + /// There are no comments for Property activestagestartedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable duration + public virtual global::System.Nullable activestagestartedon { get { - return this._duration; + return this._activestagestartedon; } set { - this.OndurationChanging(value); - this._duration = value; - this.OndurationChanged(); + this.OnactivestagestartedonChanging(value); + this._activestagestartedon = value; + this.OnactivestagestartedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _duration; - partial void OndurationChanging(global::System.Nullable value); - partial void OndurationChanged(); + private global::System.Nullable _activestagestartedon; + partial void OnactivestagestartedonChanging(global::System.Nullable value); + partial void OnactivestagestartedonChanged(); /// /// There are no comments for Property traversedpath in the schema. /// @@ -838407,27 +838473,27 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// - /// There are no comments for Property _knowledgearticleid_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _knowledgearticleid_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__knowledgearticleid_value; + return this._importsequencenumber; } set { - this.On_knowledgearticleid_valueChanging(value); - this.__knowledgearticleid_value = value; - this.On_knowledgearticleid_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __knowledgearticleid_value; - partial void On_knowledgearticleid_valueChanging(global::System.Nullable value); - partial void On_knowledgearticleid_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -838451,27 +838517,49 @@ public virtual string traversedpath partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual global::System.Nullable exchangerate { get { - return this._importsequencenumber; + return this._exchangerate; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnexchangerateChanging(value); + this._exchangerate = value; + this.OnexchangerateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private global::System.Nullable _exchangerate; + partial void OnexchangerateChanging(global::System.Nullable value); + partial void OnexchangerateChanged(); + /// + /// There are no comments for Property statuscode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statuscode + { + get + { + return this._statuscode; + } + set + { + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _activestageid_value in the schema. /// @@ -838495,28 +838583,6 @@ public virtual string traversedpath partial void On_activestageid_valueChanging(global::System.Nullable value); partial void On_activestageid_valueChanged(); /// - /// There are no comments for Property createdon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable createdon - { - get - { - return this._createdon; - } - set - { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); - /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -838627,50 +838693,6 @@ public virtual string name partial void OnbusinessprocessflowinstanceidChanging(global::System.Nullable value); partial void OnbusinessprocessflowinstanceidChanged(); /// - /// There are no comments for Property statuscode in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable statuscode - { - get - { - return this._statuscode; - } - set - { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); - /// - /// There are no comments for Property activestagestartedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable activestagestartedon - { - get - { - return this._activestagestartedon; - } - set - { - this.OnactivestagestartedonChanging(value); - this._activestagestartedon = value; - this.OnactivestagestartedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _activestagestartedon; - partial void OnactivestagestartedonChanging(global::System.Nullable value); - partial void OnactivestagestartedonChanged(); - /// /// There are no comments for Property completedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -838781,71 +838803,71 @@ public virtual string name partial void On_transactioncurrencyid_valueChanging(global::System.Nullable value); partial void On_transactioncurrencyid_valueChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable overriddencreatedon + public virtual global::System.Nullable createdon { get { - return this._overriddencreatedon; + return this._createdon; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// - /// There are no comments for Property exchangerate in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable exchangerate + public virtual global::System.Nullable _modifiedby_value { get { - return this._exchangerate; + return this.__modifiedby_value; } set { - this.OnexchangerateChanging(value); - this._exchangerate = value; - this.OnexchangerateChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _exchangerate; - partial void OnexchangerateChanging(global::System.Nullable value); - partial void OnexchangerateChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property duration in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable duration { get { - return this.__modifiedby_value; + return this._duration; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OndurationChanging(value); + this._duration = value; + this.OndurationChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _duration; + partial void OndurationChanging(global::System.Nullable value); + partial void OndurationChanged(); /// /// There are no comments for Property _organizationid_value in the schema. /// @@ -838869,6 +838891,50 @@ public virtual string name partial void On_organizationid_valueChanging(global::System.Nullable value); partial void On_organizationid_valueChanged(); /// + /// There are no comments for Property _knowledgearticleid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _knowledgearticleid_value + { + get + { + return this.__knowledgearticleid_value; + } + set + { + this.On_knowledgearticleid_valueChanging(value); + this.__knowledgearticleid_value = value; + this.On_knowledgearticleid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __knowledgearticleid_value; + partial void On_knowledgearticleid_valueChanging(global::System.Nullable value); + partial void On_knowledgearticleid_valueChanged(); + /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property TranslationProcess_SyncErrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -839646,71 +839712,71 @@ public static uom Createuom(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynami return uom; } /// - /// There are no comments for Property organizationid in the schema. + /// There are no comments for Property isschedulebaseuom in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable organizationid + public virtual global::System.Nullable isschedulebaseuom { get { - return this._organizationid; + return this._isschedulebaseuom; } set { - this.OnorganizationidChanging(value); - this._organizationid = value; - this.OnorganizationidChanged(); + this.OnisschedulebaseuomChanging(value); + this._isschedulebaseuom = value; + this.OnisschedulebaseuomChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _organizationid; - partial void OnorganizationidChanging(global::System.Nullable value); - partial void OnorganizationidChanged(); + private global::System.Nullable _isschedulebaseuom; + partial void OnisschedulebaseuomChanging(global::System.Nullable value); + partial void OnisschedulebaseuomChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property organizationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable organizationid { get { - return this._versionnumber; + return this._organizationid; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnorganizationidChanging(value); + this._organizationid = value; + this.OnorganizationidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _organizationid; + partial void OnorganizationidChanging(global::System.Nullable value); + partial void OnorganizationidChanged(); /// - /// There are no comments for Property isschedulebaseuom in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isschedulebaseuom + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._isschedulebaseuom; + return this._utcconversiontimezonecode; } set { - this.OnisschedulebaseuomChanging(value); - this._isschedulebaseuom = value; - this.OnisschedulebaseuomChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isschedulebaseuom; - partial void OnisschedulebaseuomChanging(global::System.Nullable value); - partial void OnisschedulebaseuomChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property quantity in the schema. /// @@ -839778,28 +839844,6 @@ public static uom Createuom(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynami partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property _uomscheduleid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -839822,27 +839866,27 @@ public static uom Createuom(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynami partial void On_uomscheduleid_valueChanging(global::System.Nullable value); partial void On_uomscheduleid_valueChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__modifiedonbehalfby_value; + return this.__modifiedby_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _baseuom_value in the schema. /// @@ -839866,28 +839910,6 @@ public static uom Createuom(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynami partial void On_baseuom_valueChanging(global::System.Nullable value); partial void On_baseuom_valueChanged(); /// - /// There are no comments for Property timezoneruleversionnumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezoneruleversionnumber - { - get - { - return this._timezoneruleversionnumber; - } - set - { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezoneruleversionnumber; - partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); - partial void OntimezoneruleversionnumberChanged(); - /// /// There are no comments for Property overriddencreatedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -839954,6 +839976,28 @@ public static uom Createuom(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynami partial void On_modifiedbyexternalparty_valueChanging(global::System.Nullable value); partial void On_modifiedbyexternalparty_valueChanged(); /// + /// There are no comments for Property timezoneruleversionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezoneruleversionnumber + { + get + { + return this._timezoneruleversionnumber; + } + set + { + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); + /// /// There are no comments for Property uomid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -839976,115 +840020,137 @@ public static uom Createuom(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynami partial void OnuomidChanging(global::System.Nullable value); partial void OnuomidChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._utcconversiontimezonecode; + return this.__modifiedonbehalfby_value; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable modifiedon { get { - return this._name; + return this._modifiedon; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _createdbyexternalparty_value in the schema. + /// There are no comments for Property importsequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdbyexternalparty_value + public virtual global::System.Nullable importsequencenumber { get { - return this.__createdbyexternalparty_value; + return this._importsequencenumber; } set { - this.On_createdbyexternalparty_valueChanging(value); - this.__createdbyexternalparty_value = value; - this.On_createdbyexternalparty_valueChanged(); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdbyexternalparty_value; - partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); - partial void On_createdbyexternalparty_valueChanged(); + private global::System.Nullable _importsequencenumber; + partial void OnimportsequencenumberChanging(global::System.Nullable value); + partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable versionnumber { get { - return this._modifiedon; + return this._versionnumber; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string name { get { - return this._importsequencenumber; + return this._name; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _importsequencenumber; - partial void OnimportsequencenumberChanging(global::System.Nullable value); - partial void OnimportsequencenumberChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property _createdbyexternalparty_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdbyexternalparty_value + { + get + { + return this.__createdbyexternalparty_value; + } + set + { + this.On_createdbyexternalparty_valueChanging(value); + this.__createdbyexternalparty_value = value; + this.On_createdbyexternalparty_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdbyexternalparty_value; + partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); + partial void On_createdbyexternalparty_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -840965,49 +841031,49 @@ public static uomschedule Createuomschedule(global::EMBC.ESS.Utilities.Dynamics. partial void On_modifiedbyexternalparty_valueChanging(global::System.Nullable value); partial void On_modifiedbyexternalparty_valueChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable statuscode { get { - return this.__createdby_value; + return this._statuscode; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual global::System.Nullable _organizationid_value { get { - return this._modifiedon; + return this.__organizationid_value; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property baseuomname in the schema. /// @@ -841053,27 +841119,27 @@ public virtual string baseuomname partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property utcconversiontimezonecode in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable utcconversiontimezonecode + public virtual global::System.Nullable modifiedon { get { - return this._utcconversiontimezonecode; + return this._modifiedon; } set { - this.OnutcconversiontimezonecodeChanging(value); - this._utcconversiontimezonecode = value; - this.OnutcconversiontimezonecodeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _utcconversiontimezonecode; - partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); - partial void OnutcconversiontimezonecodeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _createdbyexternalparty_value in the schema. /// @@ -841097,28 +841163,6 @@ public virtual string baseuomname partial void On_createdbyexternalparty_valueChanging(global::System.Nullable value); partial void On_createdbyexternalparty_valueChanged(); /// - /// There are no comments for Property name in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string name - { - get - { - return this._name; - } - set - { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -841141,49 +841185,49 @@ public virtual string name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual global::System.Nullable _createdby_value { get { - return this.__createdonbehalfby_value; + return this.__createdby_value; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property description in the schema. + /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string description + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._description; + return this.__createdonbehalfby_value; } set { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -841251,27 +841295,49 @@ public virtual string description partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string name { get { - return this._statuscode; + return this._name; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); + /// + /// There are no comments for Property description in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string description + { + get + { + return this._description; + } + set + { + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); /// /// There are no comments for Property importsequencenumber in the schema. /// @@ -841295,27 +841361,27 @@ public virtual string description partial void OnimportsequencenumberChanging(global::System.Nullable value); partial void OnimportsequencenumberChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. + /// There are no comments for Property utcconversiontimezonecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _organizationid_value + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this.__organizationid_value; + return this._utcconversiontimezonecode; } set { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// /// There are no comments for Property timezoneruleversionnumber in the schema. /// @@ -842026,49 +842092,49 @@ public virtual string description partial void OnuserformidChanging(global::System.Nullable value); partial void OnuserformidChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property formjson in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual string formjson { get { - return this._name; + return this._formjson; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.OnformjsonChanging(value); + this._formjson = value; + this.OnformjsonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private string _formjson; + partial void OnformjsonChanging(string value); + partial void OnformjsonChanged(); /// - /// There are no comments for Property formjson in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string formjson + public virtual global::System.Nullable modifiedon { get { - return this._formjson; + return this._modifiedon; } set { - this.OnformjsonChanging(value); - this._formjson = value; - this.OnformjsonChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _formjson; - partial void OnformjsonChanging(string value); - partial void OnformjsonChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -842114,115 +842180,115 @@ public virtual string formjson partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string name { get { - return this.__modifiedby_value; + return this._name; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. + /// There are no comments for Property formxml in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdonbehalfby_value + public virtual string formxml { get { - return this.__createdonbehalfby_value; + return this._formxml; } set { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); + this.OnformxmlChanging(value); + this._formxml = value; + this.OnformxmlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); + private string _formxml; + partial void OnformxmlChanging(string value); + partial void OnformxmlChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property objecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string objecttypecode { get { - return this._modifiedon; + return this._objecttypecode; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); + this.OnobjecttypecodeChanging(value); + this._objecttypecode = value; + this.OnobjecttypecodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); + private string _objecttypecode; + partial void OnobjecttypecodeChanging(string value); + partial void OnobjecttypecodeChanged(); /// - /// There are no comments for Property formxml in the schema. + /// There are no comments for Property type in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string formxml + public virtual global::System.Nullable type { get { - return this._formxml; + return this._type; } set { - this.OnformxmlChanging(value); - this._formxml = value; - this.OnformxmlChanged(); + this.OntypeChanging(value); + this._type = value; + this.OntypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _formxml; - partial void OnformxmlChanging(string value); - partial void OnformxmlChanged(); + private global::System.Nullable _type; + partial void OntypeChanging(global::System.Nullable value); + partial void OntypeChanged(); /// - /// There are no comments for Property objecttypecode in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string objecttypecode + public virtual global::System.Nullable _modifiedby_value { get { - return this._objecttypecode; + return this.__modifiedby_value; } set { - this.OnobjecttypecodeChanging(value); - this._objecttypecode = value; - this.OnobjecttypecodeChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _objecttypecode; - partial void OnobjecttypecodeChanging(string value); - partial void OnobjecttypecodeChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// @@ -842246,28 +842312,6 @@ public virtual string objecttypecode partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property type in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable type - { - get - { - return this._type; - } - set - { - this.OntypeChanging(value); - this._type = value; - this.OntypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _type; - partial void OntypeChanging(global::System.Nullable value); - partial void OntypeChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -842312,6 +842356,28 @@ public virtual string objecttypecode partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -843764,28 +843830,6 @@ public static userquery Createuserquery(global::EMBC.ESS.Utilities.Dynamics.Micr return userquery; } /// - /// There are no comments for Property modifiedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable modifiedon - { - get - { - return this._modifiedon; - } - set - { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _modifiedon; - partial void OnmodifiedonChanging(global::System.Nullable value); - partial void OnmodifiedonChanged(); - /// /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -843940,49 +843984,27 @@ public virtual string columnsetxml partial void OncolumnsetxmlChanging(string value); partial void OncolumnsetxmlChanged(); /// - /// There are no comments for Property fetchxml in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string fetchxml - { - get - { - return this._fetchxml; - } - set - { - this.OnfetchxmlChanging(value); - this._fetchxml = value; - this.OnfetchxmlChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _fetchxml; - partial void OnfetchxmlChanging(string value); - partial void OnfetchxmlChanged(); - /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property conditionalformatting in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string conditionalformatting { get { - return this.__owninguser_value; + return this._conditionalformatting; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.OnconditionalformattingChanging(value); + this._conditionalformatting = value; + this.OnconditionalformattingChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private string _conditionalformatting; + partial void OnconditionalformattingChanging(string value); + partial void OnconditionalformattingChanged(); /// /// There are no comments for Property description in the schema. /// @@ -844006,49 +844028,27 @@ public virtual string description partial void OndescriptionChanging(string value); partial void OndescriptionChanged(); /// - /// There are no comments for Property conditionalformatting in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string conditionalformatting - { - get - { - return this._conditionalformatting; - } - set - { - this.OnconditionalformattingChanging(value); - this._conditionalformatting = value; - this.OnconditionalformattingChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _conditionalformatting; - partial void OnconditionalformattingChanging(string value); - partial void OnconditionalformattingChanged(); - /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual global::System.Nullable modifiedon { get { - return this._statecode; + return this._modifiedon; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statecode; - partial void OnstatecodeChanging(global::System.Nullable value); - partial void OnstatecodeChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// /// There are no comments for Property name in the schema. /// @@ -844116,27 +844116,27 @@ public virtual string layoutjson partial void OnlayoutjsonChanging(string value); partial void OnlayoutjsonChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property fetchxml in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual string fetchxml { get { - return this.__owningbusinessunit_value; + return this._fetchxml; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.OnfetchxmlChanging(value); + this._fetchxml = value; + this.OnfetchxmlChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private string _fetchxml; + partial void OnfetchxmlChanging(string value); + partial void OnfetchxmlChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -844226,27 +844226,49 @@ public virtual string layoutjson partial void OnuserqueryidChanging(global::System.Nullable value); partial void OnuserqueryidChanged(); /// - /// There are no comments for Property layoutxml in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string layoutxml + public virtual global::System.Nullable _owninguser_value { get { - return this._layoutxml; + return this.__owninguser_value; } set { - this.OnlayoutxmlChanging(value); - this._layoutxml = value; - this.OnlayoutxmlChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _layoutxml; - partial void OnlayoutxmlChanging(string value); - partial void OnlayoutxmlChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); + /// + /// There are no comments for Property statecode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable statecode + { + get + { + return this._statecode; + } + set + { + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// /// There are no comments for Property versionnumber in the schema. /// @@ -844292,6 +844314,28 @@ public virtual string layoutxml partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property layoutxml in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string layoutxml + { + get + { + return this._layoutxml; + } + set + { + this.OnlayoutxmlChanging(value); + this._layoutxml = value; + this.OnlayoutxmlChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _layoutxml; + partial void OnlayoutxmlChanging(string value); + partial void OnlayoutxmlChanged(); + /// /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -844336,6 +844380,28 @@ public virtual string offlinesqlquery partial void OnofflinesqlqueryChanging(string value); partial void OnofflinesqlqueryChanged(); /// + /// There are no comments for Property _owningbusinessunit_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _owningbusinessunit_value + { + get + { + return this.__owningbusinessunit_value; + } + set + { + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); + /// /// There are no comments for Property ownerid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -844901,71 +844967,71 @@ public static userqueryvisualization Createuserqueryvisualization(global::EMBC.E return userqueryvisualization; } /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__owninguser_value; + return this.__modifiedby_value; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owninguser_value; - partial void On_owninguser_valueChanging(global::System.Nullable value); - partial void On_owninguser_valueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property _webresourceid_value in the schema. + /// There are no comments for Property presentationdescription in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _webresourceid_value + public virtual string presentationdescription { get { - return this.__webresourceid_value; + return this._presentationdescription; } set { - this.On_webresourceid_valueChanging(value); - this.__webresourceid_value = value; - this.On_webresourceid_valueChanged(); + this.OnpresentationdescriptionChanging(value); + this._presentationdescription = value; + this.OnpresentationdescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __webresourceid_value; - partial void On_webresourceid_valueChanging(global::System.Nullable value); - partial void On_webresourceid_valueChanged(); + private string _presentationdescription; + partial void OnpresentationdescriptionChanging(string value); + partial void OnpresentationdescriptionChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property _ownerid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual global::System.Nullable _ownerid_value { get { - return this.__owningbusinessunit_value; + return this.__ownerid_value; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningbusinessunit_value; - partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); - partial void On_owningbusinessunit_valueChanged(); + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); /// /// There are no comments for Property userqueryvisualizationid in the schema. /// @@ -845011,71 +845077,71 @@ public static userqueryvisualization Createuserqueryvisualization(global::EMBC.E partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// - /// There are no comments for Property presentationdescription in the schema. + /// There are no comments for Property isdefault in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string presentationdescription + public virtual global::System.Nullable isdefault { get { - return this._presentationdescription; + return this._isdefault; } set { - this.OnpresentationdescriptionChanging(value); - this._presentationdescription = value; - this.OnpresentationdescriptionChanged(); + this.OnisdefaultChanging(value); + this._isdefault = value; + this.OnisdefaultChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _presentationdescription; - partial void OnpresentationdescriptionChanging(string value); - partial void OnpresentationdescriptionChanged(); + private global::System.Nullable _isdefault; + partial void OnisdefaultChanging(global::System.Nullable value); + partial void OnisdefaultChanged(); /// - /// There are no comments for Property isdefault in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isdefault + public virtual global::System.Nullable _createdby_value { get { - return this._isdefault; + return this.__createdby_value; } set { - this.OnisdefaultChanging(value); - this._isdefault = value; - this.OnisdefaultChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isdefault; - partial void OnisdefaultChanging(global::System.Nullable value); - partial void OnisdefaultChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. + /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _ownerid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__ownerid_value; + return this.__owningbusinessunit_value; } set { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); + private global::System.Nullable __owningbusinessunit_value; + partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); + partial void On_owningbusinessunit_valueChanged(); /// /// There are no comments for Property primaryentitytypecode in the schema. /// @@ -845121,28 +845187,6 @@ public virtual string primaryentitytypecode partial void OncharttypeChanging(global::System.Nullable value); partial void OncharttypeChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _modifiedby_value - { - get - { - return this.__modifiedby_value; - } - set - { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); - /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -845209,27 +845253,27 @@ public virtual string primaryentitytypecode partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual global::System.Nullable _owninguser_value { get { - return this.__createdby_value; + return this.__owninguser_value; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private global::System.Nullable __owninguser_value; + partial void On_owninguser_valueChanging(global::System.Nullable value); + partial void On_owninguser_valueChanged(); /// /// There are no comments for Property name in the schema. /// @@ -845297,6 +845341,28 @@ public virtual string name partial void On_owningteam_valueChanging(global::System.Nullable value); partial void On_owningteam_valueChanged(); /// + /// There are no comments for Property _webresourceid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _webresourceid_value + { + get + { + return this.__webresourceid_value; + } + set + { + this.On_webresourceid_valueChanging(value); + this.__webresourceid_value = value; + this.On_webresourceid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __webresourceid_value; + partial void On_webresourceid_valueChanging(global::System.Nullable value); + partial void On_webresourceid_valueChanged(); + /// /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -845808,28 +845874,6 @@ public static usersettings Createusersettings(global::EMBC.ESS.Utilities.Dynamic return usersettings; } /// - /// There are no comments for Property timezonedaylightsecond in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezonedaylightsecond - { - get - { - return this._timezonedaylightsecond; - } - set - { - this.OntimezonedaylightsecondChanging(value); - this._timezonedaylightsecond = value; - this.OntimezonedaylightsecondChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezonedaylightsecond; - partial void OntimezonedaylightsecondChanging(global::System.Nullable value); - partial void OntimezonedaylightsecondChanged(); - /// /// There are no comments for Property numberseparator in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -845940,27 +845984,27 @@ public virtual string homepagelayout partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property negativecurrencyformatcode in the schema. + /// There are no comments for Property homepagearea in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable negativecurrencyformatcode + public virtual string homepagearea { get { - return this._negativecurrencyformatcode; + return this._homepagearea; } set { - this.OnnegativecurrencyformatcodeChanging(value); - this._negativecurrencyformatcode = value; - this.OnnegativecurrencyformatcodeChanged(); + this.OnhomepageareaChanging(value); + this._homepagearea = value; + this.OnhomepageareaChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _negativecurrencyformatcode; - partial void OnnegativecurrencyformatcodeChanging(global::System.Nullable value); - partial void OnnegativecurrencyformatcodeChanged(); + private string _homepagearea; + partial void OnhomepageareaChanging(string value); + partial void OnhomepageareaChanged(); /// /// There are no comments for Property defaultsearchexperience in the schema. /// @@ -845984,27 +846028,27 @@ public virtual string homepagelayout partial void OndefaultsearchexperienceChanging(global::System.Nullable value); partial void OndefaultsearchexperienceChanged(); /// - /// There are no comments for Property timezonestandardday in the schema. + /// There are no comments for Property outlooksyncinterval in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezonestandardday + public virtual global::System.Nullable outlooksyncinterval { get { - return this._timezonestandardday; + return this._outlooksyncinterval; } set { - this.OntimezonestandarddayChanging(value); - this._timezonestandardday = value; - this.OntimezonestandarddayChanged(); + this.OnoutlooksyncintervalChanging(value); + this._outlooksyncinterval = value; + this.OnoutlooksyncintervalChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezonestandardday; - partial void OntimezonestandarddayChanging(global::System.Nullable value); - partial void OntimezonestandarddayChanged(); + private global::System.Nullable _outlooksyncinterval; + partial void OnoutlooksyncintervalChanging(global::System.Nullable value); + partial void OnoutlooksyncintervalChanged(); /// /// There are no comments for Property longdateformatcode in the schema. /// @@ -846116,28 +846160,6 @@ public virtual string homepagelayout partial void OntimezonedaylighthourChanging(global::System.Nullable value); partial void OntimezonedaylighthourChanged(); /// - /// There are no comments for Property addressbooksyncinterval in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable addressbooksyncinterval - { - get - { - return this._addressbooksyncinterval; - } - set - { - this.OnaddressbooksyncintervalChanging(value); - this._addressbooksyncinterval = value; - this.OnaddressbooksyncintervalChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _addressbooksyncinterval; - partial void OnaddressbooksyncintervalChanging(global::System.Nullable value); - partial void OnaddressbooksyncintervalChanged(); - /// /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -846468,27 +846490,49 @@ public virtual string defaultcountrycode partial void OnisresourcebookingexchangesyncenabledChanging(global::System.Nullable value); partial void OnisresourcebookingexchangesyncenabledChanged(); /// - /// There are no comments for Property localeid in the schema. + /// There are no comments for Property negativecurrencyformatcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable localeid + public virtual global::System.Nullable negativecurrencyformatcode { get { - return this._localeid; + return this._negativecurrencyformatcode; } set { - this.OnlocaleidChanging(value); - this._localeid = value; - this.OnlocaleidChanged(); + this.OnnegativecurrencyformatcodeChanging(value); + this._negativecurrencyformatcode = value; + this.OnnegativecurrencyformatcodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _localeid; - partial void OnlocaleidChanging(global::System.Nullable value); - partial void OnlocaleidChanged(); + private global::System.Nullable _negativecurrencyformatcode; + partial void OnnegativecurrencyformatcodeChanging(global::System.Nullable value); + partial void OnnegativecurrencyformatcodeChanged(); + /// + /// There are no comments for Property timezonedaylightday in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezonedaylightday + { + get + { + return this._timezonedaylightday; + } + set + { + this.OntimezonedaylightdayChanging(value); + this._timezonedaylightday = value; + this.OntimezonedaylightdayChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezonedaylightday; + partial void OntimezonedaylightdayChanging(global::System.Nullable value); + partial void OntimezonedaylightdayChanged(); /// /// There are no comments for Property autocaptureuserstatus in the schema. /// @@ -846644,27 +846688,27 @@ public virtual string homepagesubarea partial void OnhelplanguageidChanging(global::System.Nullable value); partial void OnhelplanguageidChanged(); /// - /// There are no comments for Property homepagearea in the schema. + /// There are no comments for Property addressbooksyncinterval in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string homepagearea + public virtual global::System.Nullable addressbooksyncinterval { get { - return this._homepagearea; + return this._addressbooksyncinterval; } set { - this.OnhomepageareaChanging(value); - this._homepagearea = value; - this.OnhomepageareaChanged(); + this.OnaddressbooksyncintervalChanging(value); + this._addressbooksyncinterval = value; + this.OnaddressbooksyncintervalChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _homepagearea; - partial void OnhomepageareaChanging(string value); - partial void OnhomepageareaChanged(); + private global::System.Nullable _addressbooksyncinterval; + partial void OnaddressbooksyncintervalChanging(global::System.Nullable value); + partial void OnaddressbooksyncintervalChanged(); /// /// There are no comments for Property selectedglobalfilterid in the schema. /// @@ -846908,6 +846952,28 @@ public virtual string dateformatstring partial void OnusecrmformforappointmentChanging(global::System.Nullable value); partial void OnusecrmformforappointmentChanged(); /// + /// There are no comments for Property timezonedaylightsecond in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable timezonedaylightsecond + { + get + { + return this._timezonedaylightsecond; + } + set + { + this.OntimezonedaylightsecondChanging(value); + this._timezonedaylightsecond = value; + this.OntimezonedaylightsecondChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _timezonedaylightsecond; + partial void OntimezonedaylightsecondChanging(global::System.Nullable value); + partial void OntimezonedaylightsecondChanged(); + /// /// There are no comments for Property dateformatcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -847106,27 +847172,27 @@ public virtual string dateformatstring partial void OnreportscripterrorsChanging(global::System.Nullable value); partial void OnreportscripterrorsChanged(); /// - /// There are no comments for Property outlooksyncinterval in the schema. + /// There are no comments for Property timezonestandardday in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable outlooksyncinterval + public virtual global::System.Nullable timezonestandardday { get { - return this._outlooksyncinterval; + return this._timezonestandardday; } set { - this.OnoutlooksyncintervalChanging(value); - this._outlooksyncinterval = value; - this.OnoutlooksyncintervalChanged(); + this.OntimezonestandarddayChanging(value); + this._timezonestandardday = value; + this.OntimezonestandarddayChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _outlooksyncinterval; - partial void OnoutlooksyncintervalChanging(global::System.Nullable value); - partial void OnoutlooksyncintervalChanged(); + private global::System.Nullable _timezonestandardday; + partial void OntimezonestandarddayChanging(global::System.Nullable value); + partial void OntimezonestandarddayChanged(); /// /// There are no comments for Property createdon in the schema. /// @@ -847260,6 +847326,28 @@ public virtual string dateformatstring partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property localeid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable localeid + { + get + { + return this._localeid; + } + set + { + this.OnlocaleidChanging(value); + this._localeid = value; + this.OnlocaleidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _localeid; + partial void OnlocaleidChanging(global::System.Nullable value); + partial void OnlocaleidChanged(); + /// /// There are no comments for Property currencysymbol in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -847326,28 +847414,6 @@ public virtual string currencysymbol partial void OncurrencyformatcodeChanging(global::System.Nullable value); partial void OncurrencyformatcodeChanged(); /// - /// There are no comments for Property timezonedaylightday in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable timezonedaylightday - { - get - { - return this._timezonedaylightday; - } - set - { - this.OntimezonedaylightdayChanging(value); - this._timezonedaylightday = value; - this.OntimezonedaylightdayChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _timezonedaylightday; - partial void OntimezonedaylightdayChanging(global::System.Nullable value); - partial void OntimezonedaylightdayChanged(); - /// /// There are no comments for Property nexttrackingnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -848590,115 +848656,159 @@ public static webresource Createwebresource(global::EMBC.ESS.Utilities.Dynamics. partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property solutionid in the schema. + /// There are no comments for Property content in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable solutionid + public virtual string content { get { - return this._solutionid; + return this._content; } set { - this.OnsolutionidChanging(value); - this._solutionid = value; - this.OnsolutionidChanged(); + this.OncontentChanging(value); + this._content = value; + this.OncontentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _solutionid; - partial void OnsolutionidChanging(global::System.Nullable value); - partial void OnsolutionidChanged(); + private string _content; + partial void OncontentChanging(string value); + partial void OncontentChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property content_binary in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual byte[] content_binary { get { - return this._versionnumber; + return this._content_binary; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.Oncontent_binaryChanging(value); + this._content_binary = value; + this.Oncontent_binaryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private byte[] _content_binary; + partial void Oncontent_binaryChanging(byte[] value); + partial void Oncontent_binaryChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property introducedversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual string introducedversion { get { - return this._componentstate; + return this._introducedversion; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnintroducedversionChanging(value); + this._introducedversion = value; + this.OnintroducedversionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private string _introducedversion; + partial void OnintroducedversionChanging(string value); + partial void OnintroducedversionChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property isenabledformobileclient in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedonbehalfby_value + public virtual global::System.Nullable isenabledformobileclient { get { - return this.__modifiedonbehalfby_value; + return this._isenabledformobileclient; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); + this.OnisenabledformobileclientChanging(value); + this._isenabledformobileclient = value; + this.OnisenabledformobileclientChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedonbehalfby_value; - partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); - partial void On_modifiedonbehalfby_valueChanged(); + private global::System.Nullable _isenabledformobileclient; + partial void OnisenabledformobileclientChanging(global::System.Nullable value); + partial void OnisenabledformobileclientChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property description in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual string description { get { - return this.__modifiedby_value; + return this._description; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); + /// + /// There are no comments for Property webresourceidunique in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable webresourceidunique + { + get + { + return this._webresourceidunique; + } + set + { + this.OnwebresourceiduniqueChanging(value); + this._webresourceidunique = value; + this.OnwebresourceiduniqueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _webresourceidunique; + partial void OnwebresourceiduniqueChanging(global::System.Nullable value); + partial void OnwebresourceiduniqueChanged(); + /// + /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _modifiedonbehalfby_value + { + get + { + return this.__modifiedonbehalfby_value; + } + set + { + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __modifiedonbehalfby_value; + partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); + partial void On_modifiedonbehalfby_valueChanged(); /// /// There are no comments for Property webresourcetype in the schema. /// @@ -848744,28 +848854,6 @@ public static webresource Createwebresource(global::EMBC.ESS.Utilities.Dynamics. partial void OnishiddenChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OnishiddenChanged(); /// - /// There are no comments for Property description in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string description - { - get - { - return this._description; - } - set - { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); - /// /// There are no comments for Property canbedeleted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -848788,71 +848876,49 @@ public virtual string description partial void OncanbedeletedChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OncanbedeletedChanged(); /// - /// There are no comments for Property introducedversion in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string introducedversion - { - get - { - return this._introducedversion; - } - set - { - this.OnintroducedversionChanging(value); - this._introducedversion = value; - this.OnintroducedversionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _introducedversion; - partial void OnintroducedversionChanging(string value); - partial void OnintroducedversionChanged(); - /// - /// There are no comments for Property content in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string content + public virtual global::System.Nullable componentstate { get { - return this._content; + return this._componentstate; } set { - this.OncontentChanging(value); - this._content = value; - this.OncontentChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _content; - partial void OncontentChanging(string value); - partial void OncontentChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// - /// There are no comments for Property content_binary in the schema. + /// There are no comments for Property createdon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual byte[] content_binary + public virtual global::System.Nullable createdon { get { - return this._content_binary; + return this._createdon; } set { - this.Oncontent_binaryChanging(value); - this._content_binary = value; - this.Oncontent_binaryChanged(); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private byte[] _content_binary; - partial void Oncontent_binaryChanging(byte[] value); - partial void Oncontent_binaryChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); /// /// There are no comments for Property _createdonbehalfby_value in the schema. /// @@ -848942,71 +849008,71 @@ public virtual string contentjson partial void OncontentjsonChanging(string value); partial void OncontentjsonChanged(); /// - /// There are no comments for Property _createdby_value in the schema. + /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _createdby_value + public virtual string name { get { - return this.__createdby_value; + return this._name; } set { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); + this.OnnameChanging(value); + this._name = value; + this.OnnameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); + private string _name; + partial void OnnameChanging(string value); + partial void OnnameChanged(); /// - /// There are no comments for Property isenabledformobileclient in the schema. + /// There are no comments for Property ismanaged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable isenabledformobileclient + public virtual global::System.Nullable ismanaged { get { - return this._isenabledformobileclient; + return this._ismanaged; } set { - this.OnisenabledformobileclientChanging(value); - this._isenabledformobileclient = value; - this.OnisenabledformobileclientChanged(); + this.OnismanagedChanging(value); + this._ismanaged = value; + this.OnismanagedChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _isenabledformobileclient; - partial void OnisenabledformobileclientChanging(global::System.Nullable value); - partial void OnisenabledformobileclientChanged(); + private global::System.Nullable _ismanaged; + partial void OnismanagedChanging(global::System.Nullable value); + partial void OnismanagedChanged(); /// - /// There are no comments for Property webresourceidunique in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable webresourceidunique + public virtual global::System.Nullable _modifiedby_value { get { - return this._webresourceidunique; + return this.__modifiedby_value; } set { - this.OnwebresourceiduniqueChanging(value); - this._webresourceidunique = value; - this.OnwebresourceiduniqueChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _webresourceidunique; - partial void OnwebresourceiduniqueChanging(global::System.Nullable value); - partial void OnwebresourceiduniqueChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// /// There are no comments for Property webresourceid in the schema. /// @@ -849096,6 +849162,28 @@ public virtual string dependencyxml partial void OndependencyxmlChanging(string value); partial void OndependencyxmlChanged(); /// + /// There are no comments for Property solutionid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable solutionid + { + get + { + return this._solutionid; + } + set + { + this.OnsolutionidChanging(value); + this._solutionid = value; + this.OnsolutionidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _solutionid; + partial void OnsolutionidChanging(global::System.Nullable value); + partial void OnsolutionidChanged(); + /// /// There are no comments for Property silverlightversion in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -849118,49 +849206,27 @@ public virtual string silverlightversion partial void OnsilverlightversionChanging(string value); partial void OnsilverlightversionChanged(); /// - /// There are no comments for Property ismanaged in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable ismanaged - { - get - { - return this._ismanaged; - } - set - { - this.OnismanagedChanging(value); - this._ismanaged = value; - this.OnismanagedChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _ismanaged; - partial void OnismanagedChanging(global::System.Nullable value); - partial void OnismanagedChanged(); - /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property versionnumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable createdon + public virtual global::System.Nullable versionnumber { get { - return this._createdon; + return this._versionnumber; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _createdon; - partial void OncreatedonChanging(global::System.Nullable value); - partial void OncreatedonChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// /// There are no comments for Property isavailableformobileoffline in the schema. /// @@ -849206,27 +849272,27 @@ public virtual string displayname partial void OndisplaynameChanging(string value); partial void OndisplaynameChanged(); /// - /// There are no comments for Property name in the schema. + /// There are no comments for Property _createdby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string name + public virtual global::System.Nullable _createdby_value { get { - return this._name; + return this.__createdby_value; } set { - this.OnnameChanging(value); - this._name = value; - this.OnnameChanged(); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _name; - partial void OnnameChanging(string value); - partial void OnnameChanged(); + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); /// /// There are no comments for Property solution_configuration_webresource in the schema. /// @@ -849663,49 +849729,27 @@ public virtual string name partial void OncreatedonChanging(global::System.Nullable value); partial void OncreatedonChanged(); /// - /// There are no comments for Property _createdonbehalfby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdonbehalfby_value - { - get - { - return this.__createdonbehalfby_value; - } - set - { - this.On_createdonbehalfby_valueChanging(value); - this.__createdonbehalfby_value = value; - this.On_createdonbehalfby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdonbehalfby_value; - partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); - partial void On_createdonbehalfby_valueChanged(); - /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property _organizationid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable _organizationid_value { get { - return this._componentstate; + return this.__organizationid_value; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.On_organizationid_valueChanging(value); + this.__organizationid_value = value; + this.On_organizationid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable __organizationid_value; + partial void On_organizationid_valueChanging(global::System.Nullable value); + partial void On_organizationid_valueChanged(); /// /// There are no comments for Property webwizardidunique in the schema. /// @@ -849729,49 +849773,27 @@ public virtual string name partial void OnwebwizardiduniqueChanging(global::System.Nullable value); partial void OnwebwizardiduniqueChanged(); /// - /// There are no comments for Property _organizationid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _organizationid_value - { - get - { - return this.__organizationid_value; - } - set - { - this.On_organizationid_valueChanging(value); - this.__organizationid_value = value; - this.On_organizationid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __organizationid_value; - partial void On_organizationid_valueChanging(global::System.Nullable value); - partial void On_organizationid_valueChanged(); - /// - /// There are no comments for Property wizardpageheight in the schema. + /// There are no comments for Property titleresourcestring in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable wizardpageheight + public virtual string titleresourcestring { get { - return this._wizardpageheight; + return this._titleresourcestring; } set { - this.OnwizardpageheightChanging(value); - this._wizardpageheight = value; - this.OnwizardpageheightChanged(); + this.OntitleresourcestringChanging(value); + this._titleresourcestring = value; + this.OntitleresourcestringChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _wizardpageheight; - partial void OnwizardpageheightChanging(global::System.Nullable value); - partial void OnwizardpageheightChanged(); + private string _titleresourcestring; + partial void OntitleresourcestringChanging(string value); + partial void OntitleresourcestringChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -849883,6 +849905,138 @@ public virtual string name partial void On_modifiedby_valueChanging(global::System.Nullable value); partial void On_modifiedby_valueChanged(); /// + /// There are no comments for Property webwizardid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable webwizardid + { + get + { + return this._webwizardid; + } + set + { + this.OnwebwizardidChanging(value); + this._webwizardid = value; + this.OnwebwizardidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _webwizardid; + partial void OnwebwizardidChanging(global::System.Nullable value); + partial void OnwebwizardidChanged(); + /// + /// There are no comments for Property accessprivileges in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string accessprivileges + { + get + { + return this._accessprivileges; + } + set + { + this.OnaccessprivilegesChanging(value); + this._accessprivileges = value; + this.OnaccessprivilegesChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _accessprivileges; + partial void OnaccessprivilegesChanging(string value); + partial void OnaccessprivilegesChanged(); + /// + /// There are no comments for Property overwritetime in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overwritetime + { + get + { + return this._overwritetime; + } + set + { + this.OnoverwritetimeChanging(value); + this._overwritetime = value; + this.OnoverwritetimeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overwritetime; + partial void OnoverwritetimeChanging(global::System.Nullable value); + partial void OnoverwritetimeChanged(); + /// + /// There are no comments for Property wizardpagewidth in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable wizardpagewidth + { + get + { + return this._wizardpagewidth; + } + set + { + this.OnwizardpagewidthChanging(value); + this._wizardpagewidth = value; + this.OnwizardpagewidthChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _wizardpagewidth; + partial void OnwizardpagewidthChanging(global::System.Nullable value); + partial void OnwizardpagewidthChanged(); + /// + /// There are no comments for Property componentstate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable componentstate + { + get + { + return this._componentstate; + } + set + { + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); + /// + /// There are no comments for Property _createdonbehalfby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdonbehalfby_value + { + get + { + return this.__createdonbehalfby_value; + } + set + { + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -849905,115 +850059,27 @@ public virtual string name partial void On_modifiedonbehalfby_valueChanging(global::System.Nullable value); partial void On_modifiedonbehalfby_valueChanged(); /// - /// There are no comments for Property accessprivileges in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string accessprivileges - { - get - { - return this._accessprivileges; - } - set - { - this.OnaccessprivilegesChanging(value); - this._accessprivileges = value; - this.OnaccessprivilegesChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _accessprivileges; - partial void OnaccessprivilegesChanging(string value); - partial void OnaccessprivilegesChanged(); - /// - /// There are no comments for Property titleresourcestring in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string titleresourcestring - { - get - { - return this._titleresourcestring; - } - set - { - this.OntitleresourcestringChanging(value); - this._titleresourcestring = value; - this.OntitleresourcestringChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _titleresourcestring; - partial void OntitleresourcestringChanging(string value); - partial void OntitleresourcestringChanged(); - /// - /// There are no comments for Property wizardpagewidth in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable wizardpagewidth - { - get - { - return this._wizardpagewidth; - } - set - { - this.OnwizardpagewidthChanging(value); - this._wizardpagewidth = value; - this.OnwizardpagewidthChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _wizardpagewidth; - partial void OnwizardpagewidthChanging(global::System.Nullable value); - partial void OnwizardpagewidthChanged(); - /// - /// There are no comments for Property overwritetime in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overwritetime - { - get - { - return this._overwritetime; - } - set - { - this.OnoverwritetimeChanging(value); - this._overwritetime = value; - this.OnoverwritetimeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overwritetime; - partial void OnoverwritetimeChanging(global::System.Nullable value); - partial void OnoverwritetimeChanged(); - /// - /// There are no comments for Property webwizardid in the schema. + /// There are no comments for Property wizardpageheight in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable webwizardid + public virtual global::System.Nullable wizardpageheight { get { - return this._webwizardid; + return this._wizardpageheight; } set { - this.OnwebwizardidChanging(value); - this._webwizardid = value; - this.OnwebwizardidChanged(); + this.OnwizardpageheightChanging(value); + this._wizardpageheight = value; + this.OnwizardpageheightChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _webwizardid; - partial void OnwebwizardidChanging(global::System.Nullable value); - partial void OnwebwizardidChanged(); + private global::System.Nullable _wizardpageheight; + partial void OnwizardpageheightChanging(global::System.Nullable value); + partial void OnwizardpageheightChanged(); /// /// There are no comments for Property introducedversion in the schema. /// @@ -850037,28 +850103,6 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// - /// There are no comments for Property _createdby_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _createdby_value - { - get - { - return this.__createdby_value; - } - set - { - this.On_createdby_valueChanging(value); - this.__createdby_value = value; - this.On_createdby_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __createdby_value; - partial void On_createdby_valueChanging(global::System.Nullable value); - partial void On_createdby_valueChanged(); - /// /// There are no comments for Property startpagesequencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -850103,6 +850147,28 @@ public virtual string introducedversion partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// + /// There are no comments for Property _createdby_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _createdby_value + { + get + { + return this.__createdby_value; + } + set + { + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __createdby_value; + partial void On_createdby_valueChanging(global::System.Nullable value); + partial void On_createdby_valueChanged(); + /// /// There are no comments for Property createdonbehalfby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -850731,6 +850797,28 @@ public virtual string metadata partial void OnmetadataChanging(string value); partial void OnmetadataChanged(); /// + /// There are no comments for Property _ownerid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable _ownerid_value + { + get + { + return this.__ownerid_value; + } + set + { + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __ownerid_value; + partial void On_ownerid_valueChanging(global::System.Nullable value); + partial void On_ownerid_valueChanged(); + /// /// There are no comments for Property _process_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -850819,50 +850907,6 @@ public virtual string metadata partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// - /// There are no comments for Property _ownerid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _ownerid_value - { - get - { - return this.__ownerid_value; - } - set - { - this.On_ownerid_valueChanging(value); - this.__ownerid_value = value; - this.On_ownerid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __ownerid_value; - partial void On_ownerid_valueChanging(global::System.Nullable value); - partial void On_ownerid_valueChanged(); - /// - /// There are no comments for Property overriddencreatedon in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable overriddencreatedon - { - get - { - return this._overriddencreatedon; - } - set - { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _overriddencreatedon; - partial void OnoverriddencreatedonChanging(global::System.Nullable value); - partial void OnoverriddencreatedonChanged(); - /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -851039,6 +851083,28 @@ public virtual string mimetype partial void OnversionnumberChanging(global::System.Nullable value); partial void OnversionnumberChanged(); /// + /// There are no comments for Property overriddencreatedon in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); + /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -854235,28 +854301,6 @@ public virtual string xaml partial void OniscustomizableChanging(global::EMBC.ESS.Utilities.Dynamics.Microsoft.Dynamics.CRM.BooleanManagedProperty value); partial void OniscustomizableChanged(); /// - /// There are no comments for Property processtriggerscope in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable processtriggerscope - { - get - { - return this._processtriggerscope; - } - set - { - this.OnprocesstriggerscopeChanging(value); - this._processtriggerscope = value; - this.OnprocesstriggerscopeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processtriggerscope; - partial void OnprocesstriggerscopeChanging(global::System.Nullable value); - partial void OnprocesstriggerscopeChanged(); - /// /// There are no comments for Property processtriggerformid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -854279,6 +854323,50 @@ public virtual string xaml partial void OnprocesstriggerformidChanging(global::System.Nullable value); partial void OnprocesstriggerformidChanged(); /// + /// There are no comments for Property workflowid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable workflowid + { + get + { + return this._workflowid; + } + set + { + this.OnworkflowidChanging(value); + this._workflowid = value; + this.OnworkflowidChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _workflowid; + partial void OnworkflowidChanging(global::System.Nullable value); + partial void OnworkflowidChanged(); + /// + /// There are no comments for Property istransacted in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable istransacted + { + get + { + return this._istransacted; + } + set + { + this.OnistransactedChanging(value); + this._istransacted = value; + this.OnistransactedChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _istransacted; + partial void OnistransactedChanging(global::System.Nullable value); + partial void OnistransactedChanged(); + /// /// There are no comments for Property name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -854323,27 +854411,49 @@ public virtual string name partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property formid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable versionnumber + public virtual global::System.Nullable formid { get { - return this._versionnumber; + return this._formid; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); + this.OnformidChanging(value); + this._formid = value; + this.OnformidChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _versionnumber; - partial void OnversionnumberChanging(global::System.Nullable value); - partial void OnversionnumberChanged(); + private global::System.Nullable _formid; + partial void OnformidChanging(global::System.Nullable value); + partial void OnformidChanged(); + /// + /// There are no comments for Property processtriggerscope in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable processtriggerscope + { + get + { + return this._processtriggerscope; + } + set + { + this.OnprocesstriggerscopeChanging(value); + this._processtriggerscope = value; + this.OnprocesstriggerscopeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _processtriggerscope; + partial void OnprocesstriggerscopeChanging(global::System.Nullable value); + partial void OnprocesstriggerscopeChanged(); /// /// There are no comments for Property entityimage in the schema. /// @@ -854411,27 +854521,27 @@ public virtual string inputparameters partial void OninputparametersChanging(string value); partial void OninputparametersChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property componentstate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _modifiedby_value + public virtual global::System.Nullable componentstate { get { - return this.__modifiedby_value; + return this._componentstate; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); + this.OncomponentstateChanging(value); + this._componentstate = value; + this.OncomponentstateChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __modifiedby_value; - partial void On_modifiedby_valueChanging(global::System.Nullable value); - partial void On_modifiedby_valueChanged(); + private global::System.Nullable _componentstate; + partial void OncomponentstateChanging(global::System.Nullable value); + partial void OncomponentstateChanged(); /// /// There are no comments for Property createstage in the schema. /// @@ -854499,28 +854609,6 @@ public virtual string inputparameters partial void OnondemandChanging(global::System.Nullable value); partial void OnondemandChanged(); /// - /// There are no comments for Property uiflowtype in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable uiflowtype - { - get - { - return this._uiflowtype; - } - set - { - this.OnuiflowtypeChanging(value); - this._uiflowtype = value; - this.OnuiflowtypeChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _uiflowtype; - partial void OnuiflowtypeChanging(global::System.Nullable value); - partial void OnuiflowtypeChanged(); - /// /// There are no comments for Property rendererobjecttypecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -854543,28 +854631,6 @@ public virtual string rendererobjecttypecode partial void OnrendererobjecttypecodeChanging(string value); partial void OnrendererobjecttypecodeChanged(); /// - /// There are no comments for Property workflowid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable workflowid - { - get - { - return this._workflowid; - } - set - { - this.OnworkflowidChanging(value); - this._workflowid = value; - this.OnworkflowidChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _workflowid; - partial void OnworkflowidChanging(global::System.Nullable value); - partial void OnworkflowidChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -854609,6 +854675,28 @@ public virtual string rendererobjecttypecode partial void Onentityimage_timestampChanging(global::System.Nullable value); partial void Onentityimage_timestampChanged(); /// + /// There are no comments for Property businessprocesstype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable businessprocesstype + { + get + { + return this._businessprocesstype; + } + set + { + this.OnbusinessprocesstypeChanging(value); + this._businessprocesstype = value; + this.OnbusinessprocesstypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _businessprocesstype; + partial void OnbusinessprocesstypeChanging(global::System.Nullable value); + partial void OnbusinessprocesstypeChanged(); + /// /// There are no comments for Property syncworkflowlogonfailure in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -854675,93 +854763,71 @@ public virtual string rendererobjecttypecode partial void OniscrmuiworkflowChanging(global::System.Nullable value); partial void OniscrmuiworkflowChanged(); /// - /// There are no comments for Property triggeroncreate in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable triggeroncreate - { - get - { - return this._triggeroncreate; - } - set - { - this.OntriggeroncreateChanging(value); - this._triggeroncreate = value; - this.OntriggeroncreateChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _triggeroncreate; - partial void OntriggeroncreateChanging(global::System.Nullable value); - partial void OntriggeroncreateChanged(); - /// - /// There are no comments for Property processroleassignment in the schema. + /// There are no comments for Property _modifiedby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string processroleassignment + public virtual global::System.Nullable _modifiedby_value { get { - return this._processroleassignment; + return this.__modifiedby_value; } set { - this.OnprocessroleassignmentChanging(value); - this._processroleassignment = value; - this.OnprocessroleassignmentChanged(); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _processroleassignment; - partial void OnprocessroleassignmentChanging(string value); - partial void OnprocessroleassignmentChanged(); + private global::System.Nullable __modifiedby_value; + partial void On_modifiedby_valueChanging(global::System.Nullable value); + partial void On_modifiedby_valueChanged(); /// - /// There are no comments for Property businessprocesstype in the schema. + /// There are no comments for Property uniquename in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable businessprocesstype + public virtual string uniquename { get { - return this._businessprocesstype; + return this._uniquename; } set { - this.OnbusinessprocesstypeChanging(value); - this._businessprocesstype = value; - this.OnbusinessprocesstypeChanged(); + this.OnuniquenameChanging(value); + this._uniquename = value; + this.OnuniquenameChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _businessprocesstype; - partial void OnbusinessprocesstypeChanging(global::System.Nullable value); - partial void OnbusinessprocesstypeChanged(); + private string _uniquename; + partial void OnuniquenameChanging(string value); + partial void OnuniquenameChanged(); /// - /// There are no comments for Property formid in the schema. + /// There are no comments for Property processroleassignment in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable formid + public virtual string processroleassignment { get { - return this._formid; + return this._processroleassignment; } set { - this.OnformidChanging(value); - this._formid = value; - this.OnformidChanged(); + this.OnprocessroleassignmentChanging(value); + this._processroleassignment = value; + this.OnprocessroleassignmentChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _formid; - partial void OnformidChanging(global::System.Nullable value); - partial void OnformidChanged(); + private string _processroleassignment; + partial void OnprocessroleassignmentChanging(string value); + partial void OnprocessroleassignmentChanged(); /// /// There are no comments for Property iscustomprocessingstepallowedforotherpublishers in the schema. /// @@ -854807,49 +854873,49 @@ public virtual string processroleassignment partial void OnupdatestageChanging(global::System.Nullable value); partial void OnupdatestageChanged(); /// - /// There are no comments for Property rank in the schema. + /// There are no comments for Property type in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable rank + public virtual global::System.Nullable type { get { - return this._rank; + return this._type; } set { - this.OnrankChanging(value); - this._rank = value; - this.OnrankChanged(); + this.OntypeChanging(value); + this._type = value; + this.OntypeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _rank; - partial void OnrankChanging(global::System.Nullable value); - partial void OnrankChanged(); + private global::System.Nullable _type; + partial void OntypeChanging(global::System.Nullable value); + partial void OntypeChanged(); /// - /// There are no comments for Property type in the schema. + /// There are no comments for Property statuscode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable type + public virtual global::System.Nullable statuscode { get { - return this._type; + return this._statuscode; } set { - this.OntypeChanging(value); - this._type = value; - this.OntypeChanged(); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _type; - partial void OntypeChanging(global::System.Nullable value); - partial void OntypeChanged(); + private global::System.Nullable _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// @@ -854873,6 +854939,72 @@ public virtual string processroleassignment partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property versionnumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); + /// + /// There are no comments for Property triggeroncreate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable triggeroncreate + { + get + { + return this._triggeroncreate; + } + set + { + this.OntriggeroncreateChanging(value); + this._triggeroncreate = value; + this.OntriggeroncreateChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _triggeroncreate; + partial void OntriggeroncreateChanging(global::System.Nullable value); + partial void OntriggeroncreateChanged(); + /// + /// There are no comments for Property description in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual string description + { + get + { + return this._description; + } + set + { + this.OndescriptionChanging(value); + this._description = value; + this.OndescriptionChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _description; + partial void OndescriptionChanging(string value); + partial void OndescriptionChanged(); + /// /// There are no comments for Property uidata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -854917,28 +855049,6 @@ public virtual string uidata partial void On_plugintypeid_valueChanging(global::System.Nullable value); partial void On_plugintypeid_valueChanged(); /// - /// There are no comments for Property category in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable category - { - get - { - return this._category; - } - set - { - this.OncategoryChanging(value); - this._category = value; - this.OncategoryChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _category; - partial void OncategoryChanging(global::System.Nullable value); - partial void OncategoryChanged(); - /// /// There are no comments for Property statecode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -854961,49 +855071,49 @@ public virtual string uidata partial void OnstatecodeChanging(global::System.Nullable value); partial void OnstatecodeChanged(); /// - /// There are no comments for Property _activeworkflowid_value in the schema. + /// There are no comments for Property _owningteam_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _activeworkflowid_value + public virtual global::System.Nullable _owningteam_value { get { - return this.__activeworkflowid_value; + return this.__owningteam_value; } set { - this.On_activeworkflowid_valueChanging(value); - this.__activeworkflowid_value = value; - this.On_activeworkflowid_valueChanged(); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __activeworkflowid_value; - partial void On_activeworkflowid_valueChanging(global::System.Nullable value); - partial void On_activeworkflowid_valueChanged(); + private global::System.Nullable __owningteam_value; + partial void On_owningteam_valueChanging(global::System.Nullable value); + partial void On_owningteam_valueChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property category in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual global::System.Nullable category { get { - return this.__owningteam_value; + return this._category; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); + this.OncategoryChanging(value); + this._category = value; + this.OncategoryChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __owningteam_value; - partial void On_owningteam_valueChanging(global::System.Nullable value); - partial void On_owningteam_valueChanged(); + private global::System.Nullable _category; + partial void OncategoryChanging(global::System.Nullable value); + partial void OncategoryChanged(); /// /// There are no comments for Property asyncautodelete in the schema. /// @@ -855049,71 +855159,49 @@ public virtual string triggeronupdateattributelist partial void OntriggeronupdateattributelistChanging(string value); partial void OntriggeronupdateattributelistChanged(); /// - /// There are no comments for Property description in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual string description - { - get - { - return this._description; - } - set - { - this.OndescriptionChanging(value); - this._description = value; - this.OndescriptionChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _description; - partial void OndescriptionChanging(string value); - partial void OndescriptionChanged(); - /// - /// There are no comments for Property uniquename in the schema. + /// There are no comments for Property rank in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string uniquename + public virtual global::System.Nullable rank { get { - return this._uniquename; + return this._rank; } set { - this.OnuniquenameChanging(value); - this._uniquename = value; - this.OnuniquenameChanged(); + this.OnrankChanging(value); + this._rank = value; + this.OnrankChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _uniquename; - partial void OnuniquenameChanging(string value); - partial void OnuniquenameChanged(); + private global::System.Nullable _rank; + partial void OnrankChanging(global::System.Nullable value); + partial void OnrankChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property clientdata in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statuscode + public virtual string clientdata { get { - return this._statuscode; + return this._clientdata; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); + this.OnclientdataChanging(value); + this._clientdata = value; + this.OnclientdataChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _statuscode; - partial void OnstatuscodeChanging(global::System.Nullable value); - partial void OnstatuscodeChanged(); + private string _clientdata; + partial void OnclientdataChanging(string value); + partial void OnclientdataChanged(); /// /// There are no comments for Property ismanaged in the schema. /// @@ -855181,28 +855269,6 @@ public virtual string uniquename partial void OnoverwritetimeChanging(global::System.Nullable value); partial void OnoverwritetimeChanged(); /// - /// There are no comments for Property processorder in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable processorder - { - get - { - return this._processorder; - } - set - { - this.OnprocessorderChanging(value); - this._processorder = value; - this.OnprocessorderChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _processorder; - partial void OnprocessorderChanging(global::System.Nullable value); - partial void OnprocessorderChanged(); - /// /// There are no comments for Property _modifiedonbehalfby_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -855313,28 +855379,6 @@ public virtual string entityimage_url partial void OnsolutionidChanging(global::System.Nullable value); partial void OnsolutionidChanged(); /// - /// There are no comments for Property _parentworkflowid_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - - public virtual global::System.Nullable _parentworkflowid_value - { - get - { - return this.__parentworkflowid_value; - } - set - { - this.On_parentworkflowid_valueChanging(value); - this.__parentworkflowid_value = value; - this.On_parentworkflowid_valueChanged(); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __parentworkflowid_value; - partial void On_parentworkflowid_valueChanging(global::System.Nullable value); - partial void On_parentworkflowid_valueChanged(); - /// /// There are no comments for Property _owninguser_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -855401,71 +855445,93 @@ public virtual string introducedversion partial void OnintroducedversionChanging(string value); partial void OnintroducedversionChanged(); /// - /// There are no comments for Property istransacted in the schema. + /// There are no comments for Property _activeworkflowid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable istransacted + public virtual global::System.Nullable _activeworkflowid_value { get { - return this._istransacted; + return this.__activeworkflowid_value; } set { - this.OnistransactedChanging(value); - this._istransacted = value; - this.OnistransactedChanged(); + this.On_activeworkflowid_valueChanging(value); + this.__activeworkflowid_value = value; + this.On_activeworkflowid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _istransacted; - partial void OnistransactedChanging(global::System.Nullable value); - partial void OnistransactedChanged(); + private global::System.Nullable __activeworkflowid_value; + partial void On_activeworkflowid_valueChanging(global::System.Nullable value); + partial void On_activeworkflowid_valueChanged(); /// - /// There are no comments for Property componentstate in the schema. + /// There are no comments for Property processorder in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable componentstate + public virtual global::System.Nullable processorder { get { - return this._componentstate; + return this._processorder; } set { - this.OncomponentstateChanging(value); - this._componentstate = value; - this.OncomponentstateChanged(); + this.OnprocessorderChanging(value); + this._processorder = value; + this.OnprocessorderChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _componentstate; - partial void OncomponentstateChanging(global::System.Nullable value); - partial void OncomponentstateChanged(); + private global::System.Nullable _processorder; + partial void OnprocessorderChanging(global::System.Nullable value); + partial void OnprocessorderChanged(); /// - /// There are no comments for Property clientdata in the schema. + /// There are no comments for Property _parentworkflowid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string clientdata + public virtual global::System.Nullable _parentworkflowid_value { get { - return this._clientdata; + return this.__parentworkflowid_value; } set { - this.OnclientdataChanging(value); - this._clientdata = value; - this.OnclientdataChanged(); + this.On_parentworkflowid_valueChanging(value); + this.__parentworkflowid_value = value; + this.On_parentworkflowid_valueChanged(); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _clientdata; - partial void OnclientdataChanging(string value); - partial void OnclientdataChanged(); + private global::System.Nullable __parentworkflowid_value; + partial void On_parentworkflowid_valueChanging(global::System.Nullable value); + partial void On_parentworkflowid_valueChanged(); + /// + /// There are no comments for Property uiflowtype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + + public virtual global::System.Nullable uiflowtype + { + get + { + return this._uiflowtype; + } + set + { + this.OnuiflowtypeChanging(value); + this._uiflowtype = value; + this.OnuiflowtypeChanged(); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _uiflowtype; + partial void OnuiflowtypeChanging(global::System.Nullable value); + partial void OnuiflowtypeChanged(); /// /// There are no comments for Property mode in the schema. /// @@ -918078,4 +918144,4 @@ public static class ExtensionMethods } namespace EMBC.ESS.Utilities.Dynamics.OData.Community.Display.V1 { -} \ No newline at end of file +} diff --git a/ess/src/API/EMBC.ESS/Resources/Evacuations/Contract.cs b/ess/src/API/EMBC.ESS/Resources/Evacuations/Contract.cs index d6a33f8ca..a76064ef8 100644 --- a/ess/src/API/EMBC.ESS/Resources/Evacuations/Contract.cs +++ b/ess/src/API/EMBC.ESS/Resources/Evacuations/Contract.cs @@ -170,6 +170,7 @@ public record Note public DateTime ModifiedOn { get; set; } public string CreatingTeamMemberId { get; set; } public bool IsHidden { get; set; } + public bool IsImportant { get; set; } } public record SelfServeEligibilityCheck diff --git a/ess/src/API/EMBC.ESS/Resources/Evacuations/Mappings.cs b/ess/src/API/EMBC.ESS/Resources/Evacuations/Mappings.cs index 2d1b6180d..469fd91f1 100644 --- a/ess/src/API/EMBC.ESS/Resources/Evacuations/Mappings.cs +++ b/ess/src/API/EMBC.ESS/Resources/Evacuations/Mappings.cs @@ -175,6 +175,7 @@ public Mappings() .ForMember(d => d.CreatingTeamMemberId, opts => opts.MapFrom(s => s._era_essteamuserid_value)) .ForMember(d => d.Type, opts => opts.MapFrom(s => NoteType.General)) .ForMember(d => d.IsHidden, opts => opts.MapFrom(s => s.era_ishidden == true)) + .ForMember(d => d.IsImportant, opts => opts.MapFrom(s => s.era_important == true)) ; CreateMap(MemberList.None) @@ -182,6 +183,7 @@ public Mappings() .ForMember(d => d.era_notetext, opts => opts.MapFrom(s => s.Content)) .ForMember(d => d._era_essteamuserid_value, opts => opts.MapFrom(s => isGuid(s.CreatingTeamMemberId) ? Guid.Parse(s.CreatingTeamMemberId) : (Guid?)null)) .ForMember(d => d.era_ishidden, opts => opts.MapFrom(s => s.IsHidden)) + .ForMember(d => d.era_important, opts => opts.MapFrom(s => s.IsImportant)) ; CreateMap(MemberList.Source) diff --git a/responders/src/API/EMBC.Responders.API/Controllers/RegistrationsController.Files.cs b/responders/src/API/EMBC.Responders.API/Controllers/RegistrationsController.Files.cs index ff427c7c0..594729f1c 100644 --- a/responders/src/API/EMBC.Responders.API/Controllers/RegistrationsController.Files.cs +++ b/responders/src/API/EMBC.Responders.API/Controllers/RegistrationsController.Files.cs @@ -429,6 +429,7 @@ public class Note public string? TeamName { get; set; } public bool IsEditable { get; set; } public bool IsHidden { get; set; } + public bool IsImportant { get; set; } } [JsonConverter(typeof(JsonStringEnumConverter))] diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-codes.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-codes.ts index 1cdcbd667..d47784dcc 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-codes.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-codes.ts @@ -7,11 +7,9 @@ import { StrictHttpResponse } from '../../strict-http-response'; import { RequestBuilder } from '../../request-builder'; import { Code } from '../../models/code'; +import { CommunityCode } from '../../models/community-code'; export interface ConfigurationGetCodes$Params { - /** - * enum type name - */ forEnumType?: string; } @@ -20,7 +18,7 @@ export function configurationGetCodes( rootUrl: string, params?: ConfigurationGetCodes$Params, context?: HttpContext -): Observable>> { +): Observable>> { const rb = new RequestBuilder(rootUrl, configurationGetCodes.PATH, 'get'); if (params) { rb.query('forEnumType', params.forEnumType, {}); @@ -29,7 +27,7 @@ export function configurationGetCodes( return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( filter((r: any): r is HttpResponse => r instanceof HttpResponse), map((r: HttpResponse) => { - return r as StrictHttpResponse>; + return r as StrictHttpResponse>; }) ); } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-communities.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-communities.ts index dee35f78b..ed6aa5259 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-communities.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-communities.ts @@ -10,9 +10,9 @@ import { CommunityCode } from '../../models/community-code'; import { CommunityType } from '../../models/community-type'; export interface ConfigurationGetCommunities$Params { - stateProvinceId?: string | null; - countryId?: string | null; - types?: Array | null; + stateProvinceId?: string; + countryId?: string; + types?: Array; } export function configurationGetCommunities( @@ -25,7 +25,7 @@ export function configurationGetCommunities( if (params) { rb.query('stateProvinceId', params.stateProvinceId, {}); rb.query('countryId', params.countryId, {}); - rb.query('types', params.types, { style: 'form', explode: true }); + rb.query('types', params.types, {}); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-state-provinces.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-state-provinces.ts index c9c33f09b..5a9552639 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-state-provinces.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/configuration/configuration-get-state-provinces.ts @@ -9,7 +9,7 @@ import { RequestBuilder } from '../../request-builder'; import { CommunityCode } from '../../models/community-code'; export interface ConfigurationGetStateProvinces$Params { - countryId?: string | null; + countryId?: string; } export function configurationGetStateProvinces( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/profile/profile-update.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/profile/profile-update.ts index d666d1233..7229f6f70 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/profile/profile-update.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/profile/profile-update.ts @@ -9,21 +9,18 @@ import { RequestBuilder } from '../../request-builder'; import { UpdateUserProfileRequest } from '../../models/update-user-profile-request'; export interface ProfileUpdate$Params { - /** - * The profile information - */ - body: UpdateUserProfileRequest; + body?: UpdateUserProfileRequest; } export function profileUpdate( http: HttpClient, rootUrl: string, - params: ProfileUpdate$Params, + params?: ProfileUpdate$Params, context?: HttpContext ): Observable> { const rb = new RequestBuilder(rootUrl, profileUpdate.PATH, 'post'); if (params) { - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'text', accept: '*/*', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-audit-file-acccess.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-audit-file-acccess.ts index 57a34ab4e..6d095bc9d 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-audit-file-acccess.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-audit-file-acccess.ts @@ -10,7 +10,7 @@ import { AuditAccessRequest } from '../../models/audit-access-request'; export interface RegistrationsAuditFileAcccess$Params { fileId: string; - body: AuditAccessRequest; + body?: AuditAccessRequest; } export function registrationsAuditFileAcccess( @@ -22,7 +22,7 @@ export function registrationsAuditFileAcccess( const rb = new RequestBuilder(rootUrl, registrationsAuditFileAcccess.PATH, 'post'); if (params) { rb.path('fileId', params.fileId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'text', accept: '*/*', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-audit-registrant-access.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-audit-registrant-access.ts index d26f7cbe3..df44df8a5 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-audit-registrant-access.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-audit-registrant-access.ts @@ -10,7 +10,7 @@ import { AuditAccessRequest } from '../../models/audit-access-request'; export interface RegistrationsAuditRegistrantAccess$Params { registrantId: string; - body: AuditAccessRequest; + body?: AuditAccessRequest; } export function registrationsAuditRegistrantAccess( @@ -22,7 +22,7 @@ export function registrationsAuditRegistrantAccess( const rb = new RequestBuilder(rootUrl, registrationsAuditRegistrantAccess.PATH, 'post'); if (params) { rb.path('registrantId', params.registrantId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'text', accept: '*/*', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-cancel-support.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-cancel-support.ts index cc2af5f82..136cdb99f 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-cancel-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-cancel-support.ts @@ -7,14 +7,7 @@ import { StrictHttpResponse } from '../../strict-http-response'; import { RequestBuilder } from '../../request-builder'; export interface RegistrationsCancelSupport$Params { - /** - * evacuation file number - */ fileId: string; - - /** - * support id - */ supportId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-file-note.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-file-note.ts index 4935aab2f..05d5b4a14 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-file-note.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-file-note.ts @@ -10,15 +10,8 @@ import { Note } from '../../models/note'; import { RegistrationResult } from '../../models/registration-result'; export interface RegistrationsCreateFileNote$Params { - /** - * fileId - */ fileId: string; - - /** - * note - */ - body: Note; + body?: Note; } export function registrationsCreateFileNote( @@ -30,7 +23,7 @@ export function registrationsCreateFileNote( const rb = new RequestBuilder(rootUrl, registrationsCreateFileNote.PATH, 'post'); if (params) { rb.path('fileId', params.fileId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-file.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-file.ts index c8c511113..ab0b0bb5e 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-file.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-file.ts @@ -10,21 +10,18 @@ import { EvacuationFile } from '../../models/evacuation-file'; import { RegistrationResult } from '../../models/registration-result'; export interface RegistrationsCreateFile$Params { - /** - * file - */ - body: EvacuationFile; + body?: EvacuationFile; } export function registrationsCreateFile( http: HttpClient, rootUrl: string, - params: RegistrationsCreateFile$Params, + params?: RegistrationsCreateFile$Params, context?: HttpContext ): Observable> { const rb = new RequestBuilder(rootUrl, registrationsCreateFile.PATH, 'post'); if (params) { - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-registrant-profile.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-registrant-profile.ts index 6173a2bf3..34d63b919 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-registrant-profile.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-create-registrant-profile.ts @@ -10,21 +10,18 @@ import { RegistrantProfile } from '../../models/registrant-profile'; import { RegistrationResult } from '../../models/registration-result'; export interface RegistrationsCreateRegistrantProfile$Params { - /** - * Registrant - */ - body: RegistrantProfile; + body?: RegistrantProfile; } export function registrationsCreateRegistrantProfile( http: HttpClient, rootUrl: string, - params: RegistrationsCreateRegistrantProfile$Params, + params?: RegistrationsCreateRegistrantProfile$Params, context?: HttpContext ): Observable> { const rb = new RequestBuilder(rootUrl, registrationsCreateRegistrantProfile.PATH, 'post'); if (params) { - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-file.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-file.ts index 99a901b4c..091103444 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-file.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-file.ts @@ -9,15 +9,8 @@ import { RequestBuilder } from '../../request-builder'; import { EvacuationFile } from '../../models/evacuation-file'; export interface RegistrationsGetFile$Params { - /** - * fileId - */ fileId: string; - - /** - * optional historical needs aseesment id - */ - needsAssessmentId?: string | null; + needsAssessmentId?: string; } export function registrationsGetFile( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-files.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-files.ts index 9a929840c..b5495234f 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-files.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-files.ts @@ -9,20 +9,9 @@ import { RequestBuilder } from '../../request-builder'; import { EvacuationFileSummary } from '../../models/evacuation-file-summary'; export interface RegistrationsGetFiles$Params { - /** - * fileId - */ - registrantId?: string | null; - - /** - * manualFileId - */ - manualFileId?: string | null; - - /** - * id - */ - id?: string | null; + registrantId?: string; + manualFileId?: string; + id?: string; } export function registrationsGetFiles( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-registrant-profile.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-registrant-profile.ts index 23b33b924..4ae34e127 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-registrant-profile.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-registrant-profile.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { RegistrantProfile } from '../../models/registrant-profile'; export interface RegistrationsGetRegistrantProfile$Params { - /** - * RegistrantId - */ registrantId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-security-phrase.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-security-phrase.ts index 8509f6a52..5db6b3680 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-security-phrase.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-security-phrase.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { GetSecurityPhraseResponse } from '../../models/get-security-phrase-response'; export interface RegistrationsGetSecurityPhrase$Params { - /** - * file id - */ fileId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-security-questions.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-security-questions.ts index 17e004439..009e64716 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-security-questions.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-get-security-questions.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { GetSecurityQuestionsResponse } from '../../models/get-security-questions-response'; export interface RegistrationsGetSecurityQuestions$Params { - /** - * registrant id - */ registrantId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-invite-to-registrant-portal.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-invite-to-registrant-portal.ts index df7056b75..56fd54031 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-invite-to-registrant-portal.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-invite-to-registrant-portal.ts @@ -10,7 +10,7 @@ import { InviteRequest } from '../../models/invite-request'; export interface RegistrationsInviteToRegistrantPortal$Params { registrantId: string; - body: InviteRequest; + body?: InviteRequest; } export function registrationsInviteToRegistrantPortal( @@ -22,7 +22,7 @@ export function registrationsInviteToRegistrantPortal( const rb = new RequestBuilder(rootUrl, registrationsInviteToRegistrantPortal.PATH, 'post'); if (params) { rb.path('registrantId', params.registrantId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'text', accept: '*/*', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-link-registrant-to-household-member.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-link-registrant-to-household-member.ts index 059e434ed..d746d3903 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-link-registrant-to-household-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-link-registrant-to-household-member.ts @@ -10,7 +10,7 @@ import { RegistrantLinkRequest } from '../../models/registrant-link-request'; export interface RegistrationsLinkRegistrantToHouseholdMember$Params { fileId: string; - body: RegistrantLinkRequest; + body?: RegistrantLinkRequest; } export function registrationsLinkRegistrantToHouseholdMember( @@ -22,7 +22,7 @@ export function registrationsLinkRegistrantToHouseholdMember( const rb = new RequestBuilder(rootUrl, registrationsLinkRegistrantToHouseholdMember.PATH, 'post'); if (params) { rb.path('fileId', params.fileId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-process-paper-referrals.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-process-paper-referrals.ts index 9d321acfb..c216577f7 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-process-paper-referrals.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-process-paper-referrals.ts @@ -9,15 +9,8 @@ import { RequestBuilder } from '../../request-builder'; import { ProcessPaperReferralsRequest } from '../../models/process-paper-referrals-request'; export interface RegistrationsProcessPaperReferrals$Params { - /** - * evacuation file number - */ fileId: string; - - /** - * the request with paper referrals to process - */ - body: ProcessPaperReferralsRequest; + body?: ProcessPaperReferralsRequest; } export function registrationsProcessPaperReferrals( @@ -29,7 +22,7 @@ export function registrationsProcessPaperReferrals( const rb = new RequestBuilder(rootUrl, registrationsProcessPaperReferrals.PATH, 'post'); if (params) { rb.path('fileId', params.fileId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'text', accept: '*/*', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-process-supports.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-process-supports.ts index 520d75ca6..d32ff60ed 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-process-supports.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-process-supports.ts @@ -10,15 +10,8 @@ import { ProcessDigitalSupportsRequest } from '../../models/process-digital-supp import { ReferralPrintRequestResponse } from '../../models/referral-print-request-response'; export interface RegistrationsProcessSupports$Params { - /** - * evacuation file number - */ fileId: string; - - /** - * the request with draft supports to process - */ - body: ProcessDigitalSupportsRequest; + body?: ProcessDigitalSupportsRequest; } export function registrationsProcessSupports( @@ -30,7 +23,7 @@ export function registrationsProcessSupports( const rb = new RequestBuilder(rootUrl, registrationsProcessSupports.PATH, 'post'); if (params) { rb.path('fileId', params.fileId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-reprint-support.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-reprint-support.ts index 3cf50e5a0..c043d44ca 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-reprint-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-reprint-support.ts @@ -10,24 +10,9 @@ import { ReferralPrintRequestResponse } from '../../models/referral-print-reques import { SupportReprintReason } from '../../models/support-reprint-reason'; export interface RegistrationsReprintSupport$Params { - /** - * evacuation file number - */ fileId: string; - - /** - * support if - */ supportId: string; - - /** - * reprint reason - */ reprintReason?: SupportReprintReason; - - /** - * inlcude summary - */ includeSummary?: boolean; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-matching-evacuation-files.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-matching-evacuation-files.ts index b193e7c83..29d01c389 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-matching-evacuation-files.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-matching-evacuation-files.ts @@ -9,16 +9,16 @@ import { RequestBuilder } from '../../request-builder'; import { EvacuationFileSearchResult } from '../../models/evacuation-file-search-result'; export interface RegistrationsSearchMatchingEvacuationFiles$Params { - firstName?: string; - lastName?: string; - dateOfBirth?: string; - ManualFileId?: string | null; + firstName: string; + lastName: string; + dateOfBirth: string; + ManualFileId?: string; } export function registrationsSearchMatchingEvacuationFiles( http: HttpClient, rootUrl: string, - params?: RegistrationsSearchMatchingEvacuationFiles$Params, + params: RegistrationsSearchMatchingEvacuationFiles$Params, context?: HttpContext ): Observable>> { const rb = new RequestBuilder(rootUrl, registrationsSearchMatchingEvacuationFiles.PATH, 'get'); diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-matching-registrants.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-matching-registrants.ts index 2bf40bbce..9259ae8fc 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-matching-registrants.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-matching-registrants.ts @@ -9,16 +9,16 @@ import { RequestBuilder } from '../../request-builder'; import { RegistrantProfileSearchResult } from '../../models/registrant-profile-search-result'; export interface RegistrationsSearchMatchingRegistrants$Params { - firstName?: string; - lastName?: string; - dateOfBirth?: string; - ManualFileId?: string | null; + firstName: string; + lastName: string; + dateOfBirth: string; + ManualFileId?: string; } export function registrationsSearchMatchingRegistrants( http: HttpClient, rootUrl: string, - params?: RegistrationsSearchMatchingRegistrants$Params, + params: RegistrationsSearchMatchingRegistrants$Params, context?: HttpContext ): Observable>> { const rb = new RequestBuilder(rootUrl, registrationsSearchMatchingRegistrants.PATH, 'get'); diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-supports.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-supports.ts index ddbe36edd..952828cea 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-supports.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search-supports.ts @@ -6,18 +6,20 @@ import { filter, map } from 'rxjs/operators'; import { StrictHttpResponse } from '../../strict-http-response'; import { RequestBuilder } from '../../request-builder'; -import { Support } from '../../models/support'; +import { ClothingSupport } from '../../models/clothing-support'; +import { FoodGroceriesSupport } from '../../models/food-groceries-support'; +import { FoodRestaurantSupport } from '../../models/food-restaurant-support'; +import { IncidentalsSupport } from '../../models/incidentals-support'; +import { LodgingAllowanceSupport } from '../../models/lodging-allowance-support'; +import { LodgingBilletingSupport } from '../../models/lodging-billeting-support'; +import { LodgingGroupSupport } from '../../models/lodging-group-support'; +import { LodgingHotelSupport } from '../../models/lodging-hotel-support'; +import { TransportationOtherSupport } from '../../models/transportation-other-support'; +import { TransportationTaxiSupport } from '../../models/transportation-taxi-support'; export interface RegistrationsSearchSupports$Params { - /** - * search for supports for an manual referral id - */ - manualReferralId?: string | null; - - /** - * search for supports in a specific evacuation file - */ - fileId?: string | null; + manualReferralId?: string; + fileId?: string; } export function registrationsSearchSupports( @@ -25,7 +27,22 @@ export function registrationsSearchSupports( rootUrl: string, params?: RegistrationsSearchSupports$Params, context?: HttpContext -): Observable>> { +): Observable< + StrictHttpResponse< + Array< + | ClothingSupport + | IncidentalsSupport + | FoodGroceriesSupport + | FoodRestaurantSupport + | LodgingHotelSupport + | LodgingBilletingSupport + | LodgingGroupSupport + | LodgingAllowanceSupport + | TransportationTaxiSupport + | TransportationOtherSupport + > + > +> { const rb = new RequestBuilder(rootUrl, registrationsSearchSupports.PATH, 'get'); if (params) { rb.query('manualReferralId', params.manualReferralId, {}); @@ -35,7 +52,20 @@ export function registrationsSearchSupports( return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( filter((r: any): r is HttpResponse => r instanceof HttpResponse), map((r: HttpResponse) => { - return r as StrictHttpResponse>; + return r as StrictHttpResponse< + Array< + | ClothingSupport + | IncidentalsSupport + | FoodGroceriesSupport + | FoodRestaurantSupport + | LodgingHotelSupport + | LodgingBilletingSupport + | LodgingGroupSupport + | LodgingAllowanceSupport + | TransportationTaxiSupport + | TransportationOtherSupport + > + >; }) ); } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search.ts index 15ff90528..e1b02440a 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-search.ts @@ -9,16 +9,16 @@ import { RequestBuilder } from '../../request-builder'; import { SearchResults } from '../../models/search-results'; export interface RegistrationsSearch$Params { - firstName?: string; - lastName?: string; - dateOfBirth?: string; - ManualFileId?: string | null; + firstName: string; + lastName: string; + dateOfBirth: string; + ManualFileId?: string; } export function registrationsSearch( http: HttpClient, rootUrl: string, - params?: RegistrationsSearch$Params, + params: RegistrationsSearch$Params, context?: HttpContext ): Observable> { const rb = new RequestBuilder(rootUrl, registrationsSearch.PATH, 'get'); diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-set-file-note-hidden-status.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-set-file-note-hidden-status.ts index 457150331..0205834bb 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-set-file-note-hidden-status.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-set-file-note-hidden-status.ts @@ -9,19 +9,8 @@ import { RequestBuilder } from '../../request-builder'; import { RegistrationResult } from '../../models/registration-result'; export interface RegistrationsSetFileNoteHiddenStatus$Params { - /** - * fileId - */ fileId: string; - - /** - * noteId - */ noteId: string; - - /** - * isHidden - */ isHidden?: boolean; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-set-registrant-verified.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-set-registrant-verified.ts index cf9c0eba9..0ef01f679 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-set-registrant-verified.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-set-registrant-verified.ts @@ -9,14 +9,7 @@ import { RequestBuilder } from '../../request-builder'; import { RegistrationResult } from '../../models/registration-result'; export interface RegistrationsSetRegistrantVerified$Params { - /** - * RegistrantId - */ registrantId: string; - - /** - * Verified - */ verified: boolean; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-file-note-content.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-file-note-content.ts index 7821eaec9..7c44e5690 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-file-note-content.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-file-note-content.ts @@ -10,20 +10,9 @@ import { Note } from '../../models/note'; import { RegistrationResult } from '../../models/registration-result'; export interface RegistrationsUpdateFileNoteContent$Params { - /** - * fileId - */ fileId: string; - - /** - * noteId - */ noteId: string; - - /** - * note - */ - body: Note; + body?: Note; } export function registrationsUpdateFileNoteContent( @@ -36,7 +25,7 @@ export function registrationsUpdateFileNoteContent( if (params) { rb.path('fileId', params.fileId, {}); rb.path('noteId', params.noteId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-file.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-file.ts index 75a28869a..d91567ce0 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-file.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-file.ts @@ -10,15 +10,8 @@ import { EvacuationFile } from '../../models/evacuation-file'; import { RegistrationResult } from '../../models/registration-result'; export interface RegistrationsUpdateFile$Params { - /** - * fileId - */ fileId: string; - - /** - * file - */ - body: EvacuationFile; + body?: EvacuationFile; } export function registrationsUpdateFile( @@ -30,7 +23,7 @@ export function registrationsUpdateFile( const rb = new RequestBuilder(rootUrl, registrationsUpdateFile.PATH, 'post'); if (params) { rb.path('fileId', params.fileId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-registrant-profile.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-registrant-profile.ts index ea2f8d184..4c450ffc8 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-registrant-profile.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-update-registrant-profile.ts @@ -10,15 +10,8 @@ import { RegistrantProfile } from '../../models/registrant-profile'; import { RegistrationResult } from '../../models/registration-result'; export interface RegistrationsUpdateRegistrantProfile$Params { - /** - * RegistrantId - */ registrantId: string; - - /** - * Registrant - */ - body: RegistrantProfile; + body?: RegistrantProfile; } export function registrationsUpdateRegistrantProfile( @@ -30,7 +23,7 @@ export function registrationsUpdateRegistrantProfile( const rb = new RequestBuilder(rootUrl, registrationsUpdateRegistrantProfile.PATH, 'post'); if (params) { rb.path('registrantId', params.registrantId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-verify-security-phrase.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-verify-security-phrase.ts index e5c674875..a3c3b2493 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-verify-security-phrase.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-verify-security-phrase.ts @@ -10,15 +10,8 @@ import { VerifySecurityPhraseRequest } from '../../models/verify-security-phrase import { VerifySecurityPhraseResponse } from '../../models/verify-security-phrase-response'; export interface RegistrationsVerifySecurityPhrase$Params { - /** - * file id - */ fileId: string; - - /** - * security phrase to verify - */ - body: VerifySecurityPhraseRequest; + body?: VerifySecurityPhraseRequest; } export function registrationsVerifySecurityPhrase( @@ -30,7 +23,7 @@ export function registrationsVerifySecurityPhrase( const rb = new RequestBuilder(rootUrl, registrationsVerifySecurityPhrase.PATH, 'post'); if (params) { rb.path('fileId', params.fileId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-verify-security-questions.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-verify-security-questions.ts index 91451bb0a..0a4664d91 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-verify-security-questions.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-verify-security-questions.ts @@ -10,15 +10,8 @@ import { VerifySecurityQuestionsRequest } from '../../models/verify-security-que import { VerifySecurityQuestionsResponse } from '../../models/verify-security-questions-response'; export interface RegistrationsVerifySecurityQuestions$Params { - /** - * registrant id - */ registrantId: string; - - /** - * array of questions and their answers - */ - body: VerifySecurityQuestionsRequest; + body?: VerifySecurityQuestionsRequest; } export function registrationsVerifySecurityQuestions( @@ -30,7 +23,7 @@ export function registrationsVerifySecurityQuestions( const rb = new RequestBuilder(rootUrl, registrationsVerifySecurityQuestions.PATH, 'post'); if (params) { rb.path('registrantId', params.registrantId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-void-support.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-void-support.ts index 688621d5d..6bf643975 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-void-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/registrations/registrations-void-support.ts @@ -9,19 +9,8 @@ import { RequestBuilder } from '../../request-builder'; import { SupportVoidReason } from '../../models/support-void-reason'; export interface RegistrationsVoidSupport$Params { - /** - * evacuation file number - */ fileId: string; - - /** - * support id - */ supportId: string; - - /** - * reason to void the support - */ voidReason?: SupportVoidReason; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/reports/reports-create-evacuee-report.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/reports/reports-create-evacuee-report.ts index 7f390ca52..80fecc543 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/reports/reports-create-evacuee-report.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/reports/reports-create-evacuee-report.ts @@ -7,12 +7,12 @@ import { StrictHttpResponse } from '../../strict-http-response'; import { RequestBuilder } from '../../request-builder'; export interface ReportsCreateEvacueeReport$Params { - taskNumber?: string | null; - fileId?: string | null; - evacuatedFrom?: string | null; - evacuatedTo?: string | null; - from?: string | null; - to?: string | null; + taskNumber?: string; + fileId?: string; + evacuatedFrom?: string; + evacuatedTo?: string; + from?: string; + to?: string; } export function reportsCreateEvacueeReport( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/reports/reports-create-support-report.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/reports/reports-create-support-report.ts index e816a5503..314ab8501 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/reports/reports-create-support-report.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/reports/reports-create-support-report.ts @@ -7,12 +7,12 @@ import { StrictHttpResponse } from '../../strict-http-response'; import { RequestBuilder } from '../../request-builder'; export interface ReportsCreateSupportReport$Params { - taskNumber?: string | null; - fileId?: string | null; - evacuatedFrom?: string | null; - evacuatedTo?: string | null; - from?: string | null; - to?: string | null; + taskNumber?: string; + fileId?: string; + evacuatedFrom?: string; + evacuatedTo?: string; + from?: string; + to?: string; } export function reportsCreateSupportReport( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-activate-supplier.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-activate-supplier.ts index 9e4af66bf..86ca886bf 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-activate-supplier.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-activate-supplier.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { SupplierResult } from '../../models/supplier-result'; export interface SuppliersActivateSupplier$Params { - /** - * supplier id - */ supplierId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-add-supplier-shared-with-team.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-add-supplier-shared-with-team.ts index b90765158..fdcdd21c0 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-add-supplier-shared-with-team.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-add-supplier-shared-with-team.ts @@ -9,14 +9,7 @@ import { RequestBuilder } from '../../request-builder'; import { SupplierResult } from '../../models/supplier-result'; export interface SuppliersAddSupplierSharedWithTeam$Params { - /** - * supplier id - */ supplierId: string; - - /** - * shared team id - */ sharedTeamId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-claim-supplier.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-claim-supplier.ts index f52fd27b3..32e19986e 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-claim-supplier.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-claim-supplier.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { SupplierResult } from '../../models/supplier-result'; export interface SuppliersClaimSupplier$Params { - /** - * supplier id - */ supplierId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-create-supplier.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-create-supplier.ts index 2b023b94a..b806a80a7 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-create-supplier.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-create-supplier.ts @@ -10,21 +10,18 @@ import { Supplier } from '../../models/supplier'; import { SupplierResult } from '../../models/supplier-result'; export interface SuppliersCreateSupplier$Params { - /** - * supplier - */ - body: Supplier; + body?: Supplier; } export function suppliersCreateSupplier( http: HttpClient, rootUrl: string, - params: SuppliersCreateSupplier$Params, + params?: SuppliersCreateSupplier$Params, context?: HttpContext ): Observable> { const rb = new RequestBuilder(rootUrl, suppliersCreateSupplier.PATH, 'post'); if (params) { - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-deactivate-supplier.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-deactivate-supplier.ts index 494ccf28b..e008f26b1 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-deactivate-supplier.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-deactivate-supplier.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { SupplierResult } from '../../models/supplier-result'; export interface SuppliersDeactivateSupplier$Params { - /** - * supplier id - */ supplierId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-get-supplier-by-id.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-get-supplier-by-id.ts index 64ad34c01..037325625 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-get-supplier-by-id.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-get-supplier-by-id.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { Supplier } from '../../models/supplier'; export interface SuppliersGetSupplierById$Params { - /** - * SupplierId - */ supplierId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-get-suppliers.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-get-suppliers.ts index df66a35ad..3fe049ee8 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-get-suppliers.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-get-suppliers.ts @@ -9,15 +9,8 @@ import { RequestBuilder } from '../../request-builder'; import { SupplierListItem } from '../../models/supplier-list-item'; export interface SuppliersGetSuppliers$Params { - /** - * legalName - */ - legalName?: string | null; - - /** - * gstNumber - */ - gstNumber?: string | null; + legalName?: string; + gstNumber?: string; } export function suppliersGetSuppliers( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-remove-supplier-shared-with-team.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-remove-supplier-shared-with-team.ts index d6f7cde5a..b60467362 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-remove-supplier-shared-with-team.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-remove-supplier-shared-with-team.ts @@ -9,14 +9,7 @@ import { RequestBuilder } from '../../request-builder'; import { SupplierResult } from '../../models/supplier-result'; export interface SuppliersRemoveSupplierSharedWithTeam$Params { - /** - * supplier id - */ supplierId: string; - - /** - * shared team id - */ sharedTeamId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-remove-supplier.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-remove-supplier.ts index 7fc912a13..cea957ac9 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-remove-supplier.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-remove-supplier.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { SupplierResult } from '../../models/supplier-result'; export interface SuppliersRemoveSupplier$Params { - /** - * supplier id - */ supplierId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-update-supplier.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-update-supplier.ts index ff5562600..7cf2d0dd6 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-update-supplier.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/suppliers/suppliers-update-supplier.ts @@ -10,15 +10,8 @@ import { Supplier } from '../../models/supplier'; import { SupplierResult } from '../../models/supplier-result'; export interface SuppliersUpdateSupplier$Params { - /** - * supplier id - */ supplierId: string; - - /** - * supplier - */ - body: Supplier; + body?: Supplier; } export function suppliersUpdateSupplier( @@ -30,7 +23,7 @@ export function suppliersUpdateSupplier( const rb = new RequestBuilder(rootUrl, suppliersUpdateSupplier.PATH, 'post'); if (params) { rb.path('supplierId', params.supplierId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/tasks/tasks-get-task.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/tasks/tasks-get-task.ts index e8a7bf027..9fae5a68b 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/tasks/tasks-get-task.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/tasks/tasks-get-task.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { EssTask } from '../../models/ess-task'; export interface TasksGetTask$Params { - /** - * task number - */ taskId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/tasks/tasks-sign-in.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/tasks/tasks-sign-in.ts index 77b20f63b..267bfa50e 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/tasks/tasks-sign-in.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/tasks/tasks-sign-in.ts @@ -9,18 +9,18 @@ import { RequestBuilder } from '../../request-builder'; import { TaskSignin } from '../../models/task-signin'; export interface TasksSignIn$Params { - body: TaskSignin; + body?: TaskSignin; } export function tasksSignIn( http: HttpClient, rootUrl: string, - params: TasksSignIn$Params, + params?: TasksSignIn$Params, context?: HttpContext ): Observable> { const rb = new RequestBuilder(rootUrl, tasksSignIn.PATH, 'post'); if (params) { - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'text', accept: '*/*', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-assign-communities.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-assign-communities.ts index 2e7cd7f7a..b4d5724f5 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-assign-communities.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-assign-communities.ts @@ -7,21 +7,18 @@ import { StrictHttpResponse } from '../../strict-http-response'; import { RequestBuilder } from '../../request-builder'; export interface TeamCommunitiesAssignmentsAssignCommunities$Params { - /** - * list of community ids - */ - body: Array; + body?: Array; } export function teamCommunitiesAssignmentsAssignCommunities( http: HttpClient, rootUrl: string, - params: TeamCommunitiesAssignmentsAssignCommunities$Params, + params?: TeamCommunitiesAssignmentsAssignCommunities$Params, context?: HttpContext ): Observable> { const rb = new RequestBuilder(rootUrl, teamCommunitiesAssignmentsAssignCommunities.PATH, 'post'); if (params) { - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'text', accept: '*/*', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-get-assigned-communities.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-get-assigned-communities.ts index 3591f55e7..ef3e30b79 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-get-assigned-communities.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-get-assigned-communities.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { AssignedCommunity } from '../../models/assigned-community'; export interface TeamCommunitiesAssignmentsGetAssignedCommunities$Params { - /** - * indicates if a list of communities assigned to all teams should be returned - */ forAllTeams?: boolean; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-remove-communities.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-remove-communities.ts index 4b3bd1965..a47aa3e77 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-remove-communities.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/team-communities-assignments/team-communities-assignments-remove-communities.ts @@ -7,9 +7,6 @@ import { StrictHttpResponse } from '../../strict-http-response'; import { RequestBuilder } from '../../request-builder'; export interface TeamCommunitiesAssignmentsRemoveCommunities$Params { - /** - * list of community ids to disassociate - */ communityCodes?: Array; } @@ -21,7 +18,7 @@ export function teamCommunitiesAssignmentsRemoveCommunities( ): Observable> { const rb = new RequestBuilder(rootUrl, teamCommunitiesAssignmentsRemoveCommunities.PATH, 'delete'); if (params) { - rb.query('communityCodes', params.communityCodes, { style: 'form', explode: true }); + rb.query('communityCodes', params.communityCodes, {}); } return http.request(rb.build({ responseType: 'text', accept: '*/*', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-activate-team-member.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-activate-team-member.ts index 922fcb507..56ca9ad0b 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-activate-team-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-activate-team-member.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { TeamMemberResult } from '../../models/team-member-result'; export interface TeamsActivateTeamMember$Params { - /** - * team member id - */ memberId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-create-team-member.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-create-team-member.ts index 9c2c30703..0d60be85d 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-create-team-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-create-team-member.ts @@ -10,21 +10,18 @@ import { TeamMember } from '../../models/team-member'; import { TeamMemberResult } from '../../models/team-member-result'; export interface TeamsCreateTeamMember$Params { - /** - * team member - */ - body: TeamMember; + body?: TeamMember; } export function teamsCreateTeamMember( http: HttpClient, rootUrl: string, - params: TeamsCreateTeamMember$Params, + params?: TeamsCreateTeamMember$Params, context?: HttpContext ): Observable> { const rb = new RequestBuilder(rootUrl, teamsCreateTeamMember.PATH, 'post'); if (params) { - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-deactivate-team-member.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-deactivate-team-member.ts index 2d3191740..df4e61474 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-deactivate-team-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-deactivate-team-member.ts @@ -7,9 +7,6 @@ import { StrictHttpResponse } from '../../strict-http-response'; import { RequestBuilder } from '../../request-builder'; export interface TeamsDeactivateTeamMember$Params { - /** - * team member id - */ memberId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-delete-team-member.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-delete-team-member.ts index d3830c9a9..98103f043 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-delete-team-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-delete-team-member.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { TeamMemberResult } from '../../models/team-member-result'; export interface TeamsDeleteTeamMember$Params { - /** - * team member id - */ memberId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-get-team-member.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-get-team-member.ts index b009a148f..21e41210a 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-get-team-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-get-team-member.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { TeamMember } from '../../models/team-member'; export interface TeamsGetTeamMember$Params { - /** - * team member id - */ memberId: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-get-teams-by-community.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-get-teams-by-community.ts index 10ae85109..9f2e81d03 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-get-teams-by-community.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-get-teams-by-community.ts @@ -9,9 +9,6 @@ import { RequestBuilder } from '../../request-builder'; import { Team } from '../../models/team'; export interface TeamsGetTeamsByCommunity$Params { - /** - * communityCode - */ communityCode: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-is-user-name-exists.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-is-user-name-exists.ts index 77beaaeb6..b09ca62aa 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-is-user-name-exists.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-is-user-name-exists.ts @@ -8,7 +8,7 @@ import { RequestBuilder } from '../../request-builder'; export interface TeamsIsUserNameExists$Params { userName?: string; - memberId?: string | null; + memberId?: string; } export function teamsIsUserNameExists( diff --git a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-update-team-member.ts b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-update-team-member.ts index d4b683231..a8db14775 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-update-team-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/fn/teams/teams-update-team-member.ts @@ -10,15 +10,8 @@ import { TeamMember } from '../../models/team-member'; import { TeamMemberResult } from '../../models/team-member-result'; export interface TeamsUpdateTeamMember$Params { - /** - * team member id to update - */ memberId: string; - - /** - * team member - */ - body: TeamMember; + body?: TeamMember; } export function teamsUpdateTeamMember( @@ -30,7 +23,7 @@ export function teamsUpdateTeamMember( const rb = new RequestBuilder(rootUrl, teamsUpdateTeamMember.PATH, 'post'); if (params) { rb.path('memberId', params.memberId, {}); - rb.body(params.body, 'application/json'); + rb.body(params.body, 'application/*+json'); } return http.request(rb.build({ responseType: 'json', accept: 'application/json', context })).pipe( diff --git a/responders/src/UI/embc-responder/src/app/core/api/models.ts b/responders/src/UI/embc-responder/src/app/core/api/models.ts index 4a4893914..550d53eea 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models.ts @@ -24,6 +24,7 @@ export { FoodRestaurantSupport } from './models/food-restaurant-support'; export { GetSecurityPhraseResponse } from './models/get-security-phrase-response'; export { GetSecurityQuestionsResponse } from './models/get-security-questions-response'; export { HouseholdMemberType } from './models/household-member-type'; +export { HttpValidationProblemDetails } from './models/http-validation-problem-details'; export { IdentifiedNeed } from './models/identified-need'; export { IncidentalsSupport } from './models/incidentals-support'; export { InsuranceOption } from './models/insurance-option'; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/address.ts b/responders/src/UI/embc-responder/src/app/core/api/models/address.ts index 703992b97..0a53a05e1 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/address.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/address.ts @@ -1,11 +1,11 @@ /* tslint:disable */ /* eslint-disable */ export interface Address { - addressLine1?: string; + addressLine1?: string | null; addressLine2?: string | null; city?: string | null; communityCode?: string | null; - countryCode?: string; + countryCode?: string | null; postalCode?: string | null; stateProvinceCode?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/assigned-community.ts b/responders/src/UI/embc-responder/src/app/core/api/models/assigned-community.ts index 4f1dfe01f..c59e31092 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/assigned-community.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/assigned-community.ts @@ -1,12 +1,8 @@ /* tslint:disable */ /* eslint-disable */ - -/** - * An associated community and team - */ export interface AssignedCommunity { - communityCode?: string; + communityCode?: string | null; dateAssigned?: string; - teamId?: string; - teamName?: string; + teamId?: string | null; + teamName?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/clothing-support.ts b/responders/src/UI/embc-responder/src/app/core/api/models/clothing-support.ts index 4123c2361..33dc99d97 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/clothing-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/clothing-support.ts @@ -8,5 +8,5 @@ export type ClothingSupport = Support & { category: SupportCategory; subCategory: SupportSubCategory; totalAmount: number; - approverName?: string; + approverName?: string | null; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/code.ts b/responders/src/UI/embc-responder/src/app/core/api/models/code.ts index 73251b976..293b7944e 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/code.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/code.ts @@ -1,9 +1,10 @@ /* tslint:disable */ /* eslint-disable */ +import { CommunityCode } from '../models/community-code'; export interface Code { - description?: string; + description?: string | null; isActive?: boolean; - parentCode?: Code; - type?: string; - value?: string; + parentCode?: (Code | CommunityCode) | null; + type?: string | null; + value?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/community-code.ts b/responders/src/UI/embc-responder/src/app/core/api/models/community-code.ts index c0bd2dccd..4f3d56db9 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/community-code.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/community-code.ts @@ -4,5 +4,5 @@ import { Code } from '../models/code'; import { CommunityType } from '../models/community-type'; export type CommunityCode = Code & { communityType?: CommunityType; - districtName?: string; + districtName?: string | null; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/contact-details.ts b/responders/src/UI/embc-responder/src/app/core/api/models/contact-details.ts index 7f0a08b18..6e27227bd 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/contact-details.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/contact-details.ts @@ -1,9 +1,5 @@ /* tslint:disable */ /* eslint-disable */ - -/** - * Profile contact information - */ export interface ContactDetails { email?: string | null; phone?: string | null; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/ess-task.ts b/responders/src/UI/embc-responder/src/app/core/api/models/ess-task.ts index d02e724ed..f7ee7e4a3 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/ess-task.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/ess-task.ts @@ -2,11 +2,11 @@ /* eslint-disable */ import { TaskWorkflow } from '../models/task-workflow'; export interface EssTask { - communityCode?: string; - description?: string; + communityCode?: string | null; + description?: string | null; endDate?: string; - id?: string; + id?: string | null; startDate?: string; - status?: string; - workflows?: Array; + status?: string | null; + workflows?: Array | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-household-member.ts b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-household-member.ts index bced181f1..10096fef8 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-household-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-household-member.ts @@ -2,9 +2,9 @@ /* eslint-disable */ import { HouseholdMemberType } from '../models/household-member-type'; export interface EvacuationFileHouseholdMember { - dateOfBirth?: string; - firstName?: string; - gender?: string; + dateOfBirth?: string | null; + firstName?: string | null; + gender?: string | null; id?: string | null; initials?: string | null; isHouseholdMember?: boolean; @@ -12,7 +12,7 @@ export interface EvacuationFileHouseholdMember { isPrimaryRegistrant?: boolean; isRestricted?: boolean | null; isVerified?: boolean | null; - lastName?: string; + lastName?: string | null; linkedRegistrantId?: string | null; type?: HouseholdMemberType; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-search-result-household-member.ts b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-search-result-household-member.ts index ed159e1a7..03b2517d6 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-search-result-household-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-search-result-household-member.ts @@ -2,11 +2,11 @@ /* eslint-disable */ import { HouseholdMemberType } from '../models/household-member-type'; export interface EvacuationFileSearchResultHouseholdMember { - firstName?: string; - id?: string; + firstName?: string | null; + id?: string | null; isMainApplicant?: boolean; isRestricted?: boolean | null; isSearchMatch?: boolean; - lastName?: string; + lastName?: string | null; type?: HouseholdMemberType; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-search-result.ts b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-search-result.ts index 1e67c7685..8c5fffb38 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-search-result.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-search-result.ts @@ -6,16 +6,16 @@ import { EvacuationFileStatus } from '../models/evacuation-file-status'; export interface EvacuationFileSearchResult { createdOn?: string; evacuatedFrom?: Address; - householdMembers?: Array; - id?: string; + householdMembers?: Array | null; + id?: string | null; isFileCompleted?: boolean; isPaperBasedFile?: boolean; isRestricted?: boolean; - manualFileId?: string; + manualFileId?: string | null; modifiedOn?: string; status?: EvacuationFileStatus; taskEndDate?: string | null; - taskId?: string; - taskLocationCommunityCode?: string; + taskId?: string | null; + taskLocationCommunityCode?: string | null; taskStartDate?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-summary.ts b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-summary.ts index c48085702..72c018af3 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-summary.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-summary.ts @@ -8,12 +8,12 @@ export interface EvacuationFileSummary { evacuatedFromAddress?: Address; evacuationFileDate?: string; hasSupports?: boolean; - id?: string; + id?: string | null; isPaper?: boolean | null; isPerliminary?: boolean; isRestricted?: boolean | null; issuedOn?: string; manualFileId?: string | null; status?: EvacuationFileStatus; - task?: EvacuationFileTask | null; + task?: EvacuationFileTask; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-task-feature.ts b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-task-feature.ts index d81a017fd..c75a65765 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-task-feature.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-task-feature.ts @@ -2,5 +2,5 @@ /* eslint-disable */ export interface EvacuationFileTaskFeature { enabled?: boolean; - name?: string; + name?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-task.ts b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-task.ts index 72c2f3e53..ff3553a3f 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-task.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file-task.ts @@ -3,7 +3,7 @@ import { EvacuationFileTaskFeature } from '../models/evacuation-file-task-feature'; export interface EvacuationFileTask { communityCode?: string | null; - features?: Array; + features?: Array | null; from?: string | null; status?: string | null; taskNumber: string; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file.ts b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file.ts index 1a6c8115d..f2b425fd2 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/evacuation-file.ts @@ -1,35 +1,51 @@ /* tslint:disable */ /* eslint-disable */ import { Address } from '../models/address'; +import { ClothingSupport } from '../models/clothing-support'; import { EvacuationFileHouseholdMember } from '../models/evacuation-file-household-member'; import { EvacuationFileStatus } from '../models/evacuation-file-status'; import { EvacuationFileTask } from '../models/evacuation-file-task'; +import { FoodGroceriesSupport } from '../models/food-groceries-support'; +import { FoodRestaurantSupport } from '../models/food-restaurant-support'; +import { IncidentalsSupport } from '../models/incidentals-support'; +import { LodgingAllowanceSupport } from '../models/lodging-allowance-support'; +import { LodgingBilletingSupport } from '../models/lodging-billeting-support'; +import { LodgingGroupSupport } from '../models/lodging-group-support'; +import { LodgingHotelSupport } from '../models/lodging-hotel-support'; import { NeedsAssessment } from '../models/needs-assessment'; import { Note } from '../models/note'; -import { Support } from '../models/support'; - -/** - * Evacuation File - */ +import { TransportationOtherSupport } from '../models/transportation-other-support'; +import { TransportationTaxiSupport } from '../models/transportation-taxi-support'; export interface EvacuationFile { completedBy?: string | null; completedOn?: string | null; evacuatedFromAddress: Address; evacuationFileDate?: string | null; - householdMembers?: Array; + householdMembers?: Array | null; id?: string | null; isPaper?: boolean | null; isRestricted?: boolean | null; manualFileId?: string | null; needsAssessment: NeedsAssessment; - notes?: Array; + notes?: Array | null; primaryRegistrantFirstName?: string | null; primaryRegistrantId: string; primaryRegistrantLastName?: string | null; registrationLocation: string; securityPhrase?: string | null; securityPhraseEdited?: boolean | null; - status?: EvacuationFileStatus | null; - supports?: Array; + status?: EvacuationFileStatus; + supports?: Array< + | ClothingSupport + | IncidentalsSupport + | FoodGroceriesSupport + | FoodRestaurantSupport + | LodgingHotelSupport + | LodgingBilletingSupport + | LodgingGroupSupport + | LodgingAllowanceSupport + | TransportationTaxiSupport + | TransportationOtherSupport + > | null; task: EvacuationFileTask; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/food-groceries-support.ts b/responders/src/UI/embc-responder/src/app/core/api/models/food-groceries-support.ts index f90d7160d..94c781675 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/food-groceries-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/food-groceries-support.ts @@ -8,5 +8,5 @@ export type FoodGroceriesSupport = Support & { subCategory: SupportSubCategory; numberOfDays: number; totalAmount: number; - approverName?: string; + approverName?: string | null; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/get-security-phrase-response.ts b/responders/src/UI/embc-responder/src/app/core/api/models/get-security-phrase-response.ts index 15131a13a..dbc45da74 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/get-security-phrase-response.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/get-security-phrase-response.ts @@ -1,5 +1,5 @@ /* tslint:disable */ /* eslint-disable */ export interface GetSecurityPhraseResponse { - securityPhrase?: string; + securityPhrase?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/get-security-questions-response.ts b/responders/src/UI/embc-responder/src/app/core/api/models/get-security-questions-response.ts index 2848b72a9..f30b6d552 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/get-security-questions-response.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/get-security-questions-response.ts @@ -2,5 +2,5 @@ /* eslint-disable */ import { SecurityQuestion } from '../models/security-question'; export interface GetSecurityQuestionsResponse { - questions?: Array; + questions?: Array | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/http-validation-problem-details.ts b/responders/src/UI/embc-responder/src/app/core/api/models/http-validation-problem-details.ts new file mode 100644 index 000000000..6a49578d7 --- /dev/null +++ b/responders/src/UI/embc-responder/src/app/core/api/models/http-validation-problem-details.ts @@ -0,0 +1,9 @@ +/* tslint:disable */ +/* eslint-disable */ +import { ProblemDetails } from '../models/problem-details'; +export type HttpValidationProblemDetails = ProblemDetails & { + errors?: { + [key: string]: Array; + } | null; + [key: string]: any; +}; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/incidentals-support.ts b/responders/src/UI/embc-responder/src/app/core/api/models/incidentals-support.ts index aa91a233c..32eb508f7 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/incidentals-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/incidentals-support.ts @@ -8,5 +8,5 @@ export type IncidentalsSupport = Support & { subCategory: SupportSubCategory; approvedItems: string; totalAmount: number; - approverName?: string; + approverName?: string | null; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/interac.ts b/responders/src/UI/embc-responder/src/app/core/api/models/interac.ts index 6731428c5..a59c8e337 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/interac.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/interac.ts @@ -3,8 +3,8 @@ import { ETransfer } from '../models/e-transfer'; export type Interac = ETransfer & { receivingRegistrantId: string; - recipientFirstName?: string; - recipientLastName?: string; + recipientFirstName?: string | null; + recipientLastName?: string | null; notificationEmail?: string | null; notificationMobile?: string | null; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/lodging-allowance-support.ts b/responders/src/UI/embc-responder/src/app/core/api/models/lodging-allowance-support.ts index c3d8fd207..5d3816169 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/lodging-allowance-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/lodging-allowance-support.ts @@ -7,7 +7,7 @@ export type LodgingAllowanceSupport = Support & { category: SupportCategory; subCategory: SupportSubCategory; numberOfNights: number; - contactEmail?: string; - contactPhone?: string; + contactEmail?: string | null; + contactPhone?: string | null; totalAmount: number; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/lodging-billeting-support.ts b/responders/src/UI/embc-responder/src/app/core/api/models/lodging-billeting-support.ts index 701462328..cd50590b6 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/lodging-billeting-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/lodging-billeting-support.ts @@ -7,9 +7,9 @@ export type LodgingBilletingSupport = Support & { category: SupportCategory; subCategory: SupportSubCategory; numberOfNights: number; - hostName?: string; - hostAddress?: string; - hostCity?: string; - hostEmail?: string; - hostPhone?: string; + hostName?: string | null; + hostAddress?: string | null; + hostCity?: string | null; + hostEmail?: string | null; + hostPhone?: string | null; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/lodging-group-support.ts b/responders/src/UI/embc-responder/src/app/core/api/models/lodging-group-support.ts index fa0bc48cb..e0d1c1fb3 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/lodging-group-support.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/lodging-group-support.ts @@ -7,9 +7,9 @@ export type LodgingGroupSupport = Support & { category: SupportCategory; subCategory: SupportSubCategory; numberOfNights: number; - facilityName?: string; - facilityAddress?: string; - facilityCity?: string; - facilityCommunityCode?: string; - facilityContactPhone?: string; + facilityName?: string | null; + facilityAddress?: string | null; + facilityCity?: string | null; + facilityCommunityCode?: string | null; + facilityContactPhone?: string | null; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/member-label-description.ts b/responders/src/UI/embc-responder/src/app/core/api/models/member-label-description.ts index f8cc7cb60..f75259b78 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/member-label-description.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/member-label-description.ts @@ -1,11 +1,7 @@ /* tslint:disable */ /* eslint-disable */ import { MemberLabel } from '../models/member-label'; - -/** - * label code and description - */ export interface MemberLabelDescription { code?: MemberLabel; - description?: string; + description?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/member-label.ts b/responders/src/UI/embc-responder/src/app/core/api/models/member-label.ts index e8332a910..8577be474 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/member-label.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/member-label.ts @@ -1,14 +1,10 @@ /* tslint:disable */ /* eslint-disable */ - -/** - * A label to describe a team member - */ export enum MemberLabel { Volunteer = 'Volunteer', ThirdParty = 'ThirdParty', ConvergentVolunteer = 'ConvergentVolunteer', - EMBCEmployee = 'EMBCEmployee', + EmbcEmployee = 'EMBCEmployee', FirstNation = 'FirstNation', LocalGovernmentEmployee = 'LocalGovernmentEmployee' } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/member-role-description.ts b/responders/src/UI/embc-responder/src/app/core/api/models/member-role-description.ts index bd0ce386e..46d9227e4 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/member-role-description.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/member-role-description.ts @@ -1,11 +1,7 @@ /* tslint:disable */ /* eslint-disable */ import { MemberRole } from '../models/member-role'; - -/** - * role code and description - */ export interface MemberRoleDescription { code?: MemberRole; - description?: string; + description?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/member-role.ts b/responders/src/UI/embc-responder/src/app/core/api/models/member-role.ts index 2f79bd2c8..f060c13bb 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/member-role.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/member-role.ts @@ -1,9 +1,5 @@ /* tslint:disable */ /* eslint-disable */ - -/** - * A role a team member is assigned to - */ export enum MemberRole { Tier1 = 'Tier1', Tier2 = 'Tier2', diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/mutual-aid.ts b/responders/src/UI/embc-responder/src/app/core/api/models/mutual-aid.ts index cd67ca9fb..81992501f 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/mutual-aid.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/mutual-aid.ts @@ -2,7 +2,7 @@ /* eslint-disable */ import { SupplierTeam } from '../models/supplier-team'; export interface MutualAid { - givenByTeamId?: string; + givenByTeamId?: string | null; givenOn?: string; givenToTeam?: SupplierTeam; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/needs-assessment.ts b/responders/src/UI/embc-responder/src/app/core/api/models/needs-assessment.ts index e84c3749e..c015ea4b4 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/needs-assessment.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/needs-assessment.ts @@ -5,19 +5,15 @@ import { IdentifiedNeed } from '../models/identified-need'; import { InsuranceOption } from '../models/insurance-option'; import { NeedsAssessmentType } from '../models/needs-assessment-type'; import { Pet } from '../models/pet'; - -/** - * Needs assessment form - */ export interface NeedsAssessment { createdOn?: string | null; householdMembers: Array; id?: string | null; insurance: InsuranceOption; modifiedOn?: string | null; - needs?: Array; - pets?: Array; + needs?: Array | null; + pets?: Array | null; reviewingTeamMemberDisplayName?: string | null; reviewingTeamMemberId?: string | null; - type?: NeedsAssessmentType | null; + type?: NeedsAssessmentType; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/note.ts b/responders/src/UI/embc-responder/src/app/core/api/models/note.ts index 11db5dfa6..ed021ae82 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/note.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/note.ts @@ -7,6 +7,7 @@ export interface Note { id?: string | null; isEditable?: boolean; isHidden?: boolean; + isImportant?: boolean; memberName?: string | null; teamName?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/oidc-configuration.ts b/responders/src/UI/embc-responder/src/app/core/api/models/oidc-configuration.ts index d1a2ff919..03982aba9 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/oidc-configuration.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/oidc-configuration.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ export interface OidcConfiguration { - clientId?: string; - issuer?: string; - postLogoutRedirectUrl?: string; - scope?: string; + clientId?: string | null; + issuer?: string | null; + postLogoutRedirectUrl?: string | null; + scope?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/outage-information.ts b/responders/src/UI/embc-responder/src/app/core/api/models/outage-information.ts index 1df53afd5..3525c7a60 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/outage-information.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/outage-information.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ export interface OutageInformation { - content?: string; + content?: string | null; outageEndDate?: string | null; outageStartDate?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/person-details.ts b/responders/src/UI/embc-responder/src/app/core/api/models/person-details.ts index aacba32af..ace66845d 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/person-details.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/person-details.ts @@ -1,9 +1,5 @@ /* tslint:disable */ /* eslint-disable */ - -/** - * Profile personal details - */ export interface PersonDetails { dateOfBirth: string; firstName: string; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/pet.ts b/responders/src/UI/embc-responder/src/app/core/api/models/pet.ts index 37a5edb89..00f4c60b0 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/pet.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/pet.ts @@ -1,9 +1,5 @@ /* tslint:disable */ /* eslint-disable */ - -/** - * Pet - */ export interface Pet { quantity: string; type: string; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/problem-details.ts b/responders/src/UI/embc-responder/src/app/core/api/models/problem-details.ts index 4c6350834..fc39b6a7d 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/problem-details.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/problem-details.ts @@ -7,5 +7,5 @@ export interface ProblemDetails { title?: string | null; type?: string | null; - [key: string]: any | null | number | null | string | null | undefined; + [key: string]: any | number | null | string | null | undefined; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/referral-print-request-response.ts b/responders/src/UI/embc-responder/src/app/core/api/models/referral-print-request-response.ts index a8ca48825..387d39e29 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/referral-print-request-response.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/referral-print-request-response.ts @@ -1,5 +1,5 @@ /* tslint:disable */ /* eslint-disable */ export interface ReferralPrintRequestResponse { - printRequestId?: string; + printRequestId?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/referral.ts b/responders/src/UI/embc-responder/src/app/core/api/models/referral.ts index bf7ef1d0f..3cf38bfb9 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/referral.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/referral.ts @@ -7,9 +7,9 @@ export type Referral = SupportDelivery & { manualReferralId?: string | null; method: SupportMethod; supplierId: string; - supplierName?: string; - supplierLegalName?: string; + supplierName?: string | null; + supplierLegalName?: string | null; supplierAddress?: Address; - supplierNotes?: string; + supplierNotes?: string | null; issuedToPersonName: string; }; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile-search-result.ts b/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile-search-result.ts index 91c6a9f3e..6b2041168 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile-search-result.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile-search-result.ts @@ -5,13 +5,13 @@ import { EvacuationFileSearchResult } from '../models/evacuation-file-search-res import { RegistrantStatus } from '../models/registrant-status'; export interface RegistrantProfileSearchResult { createdOn?: string; - evacuationFiles?: Array; - firstName?: string; - id?: string; + evacuationFiles?: Array | null; + firstName?: string | null; + id?: string | null; isAuthenticated?: boolean; isProfileCompleted?: boolean; isRestricted?: boolean; - lastName?: string; + lastName?: string | null; modifiedOn?: string; primaryAddress?: Address; status?: RegistrantStatus; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile.ts b/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile.ts index e08c30b3d..b673acb96 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile.ts @@ -4,10 +4,6 @@ import { Address } from '../models/address'; import { ContactDetails } from '../models/contact-details'; import { PersonDetails } from '../models/person-details'; import { SecurityQuestion } from '../models/security-question'; - -/** - * Registrant profile - */ export interface RegistrantProfile { authenticatedUser?: boolean; contactDetails: ContactDetails; @@ -20,6 +16,6 @@ export interface RegistrantProfile { personalDetails: PersonDetails; primaryAddress: Address; restriction: boolean; - securityQuestions?: Array; + securityQuestions?: Array | null; verifiedUser?: boolean; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/registration-result.ts b/responders/src/UI/embc-responder/src/app/core/api/models/registration-result.ts index bc85e72af..b24fc595f 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/registration-result.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/registration-result.ts @@ -1,5 +1,5 @@ /* tslint:disable */ /* eslint-disable */ export interface RegistrationResult { - id?: string; + id?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/search-results.ts b/responders/src/UI/embc-responder/src/app/core/api/models/search-results.ts index 1cf66d88f..f6d0ee938 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/search-results.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/search-results.ts @@ -3,6 +3,6 @@ import { EvacuationFileSearchResult } from '../models/evacuation-file-search-result'; import { RegistrantProfileSearchResult } from '../models/registrant-profile-search-result'; export interface SearchResults { - files?: Array; - registrants?: Array; + files?: Array | null; + registrants?: Array | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-contact.ts b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-contact.ts index 5307c038f..f2adc711c 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-contact.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-contact.ts @@ -1,8 +1,8 @@ /* tslint:disable */ /* eslint-disable */ export interface SupplierContact { - email?: string; - firstName?: string; - lastName?: string; - phone?: string; + email?: string | null; + firstName?: string | null; + lastName?: string | null; + phone?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-list-item.ts b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-list-item.ts index a7bc6bbdf..c6aaf27bc 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-list-item.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-list-item.ts @@ -6,13 +6,13 @@ import { SupplierStatus } from '../models/supplier-status'; import { SupplierTeamDetails } from '../models/supplier-team-details'; export interface SupplierListItem { address?: Address; - gstNumber?: string; - id?: string; + gstNumber?: string | null; + id?: string | null; isPrimarySupplier?: boolean; - legalName?: string; + legalName?: string | null; mutualAid?: MutualAid; - name?: string; - primaryTeams?: Array; + name?: string | null; + primaryTeams?: Array | null; providesMutualAid?: boolean; status?: SupplierStatus; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-result.ts b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-result.ts index 462d1f6a1..416acb41e 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-result.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-result.ts @@ -1,5 +1,5 @@ /* tslint:disable */ /* eslint-disable */ export interface SupplierResult { - id?: string; + id?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-team-details.ts b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-team-details.ts index 108a481dc..c5bdc94bf 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-team-details.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-team-details.ts @@ -1,7 +1,7 @@ /* tslint:disable */ /* eslint-disable */ export interface SupplierTeamDetails { - id?: string; + id?: string | null; isActive?: boolean; - name?: string; + name?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-team.ts b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-team.ts index dc97fdba1..58541ae66 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/supplier-team.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/supplier-team.ts @@ -1,6 +1,6 @@ /* tslint:disable */ /* eslint-disable */ export interface SupplierTeam { - id?: string; - name?: string; + id?: string | null; + name?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/supplier.ts b/responders/src/UI/embc-responder/src/app/core/api/models/supplier.ts index 3b42cfafc..95cdc4190 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/supplier.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/supplier.ts @@ -8,11 +8,11 @@ import { SupplierTeamDetails } from '../models/supplier-team-details'; export interface Supplier { address?: Address; contact?: SupplierContact; - gstNumber?: string; + gstNumber?: string | null; id?: string | null; - legalName?: string; - mutualAids?: Array; + legalName?: string | null; + mutualAids?: Array | null; name?: string | null; - primaryTeams?: Array; + primaryTeams?: Array | null; status?: SupplierStatus; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/suppliers-list-item.ts b/responders/src/UI/embc-responder/src/app/core/api/models/suppliers-list-item.ts index 11517e1f6..84b7a7041 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/suppliers-list-item.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/suppliers-list-item.ts @@ -3,7 +3,7 @@ import { Address } from '../models/address'; export interface SuppliersListItem { address?: Address; - id?: string; - legalName?: string; - name?: string; + id?: string | null; + legalName?: string | null; + name?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/task-workflow.ts b/responders/src/UI/embc-responder/src/app/core/api/models/task-workflow.ts index 15bd8218b..393144bfe 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/task-workflow.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/task-workflow.ts @@ -2,5 +2,5 @@ /* eslint-disable */ export interface TaskWorkflow { enabled?: boolean; - name?: string; + name?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/team-member-result.ts b/responders/src/UI/embc-responder/src/app/core/api/models/team-member-result.ts index eac635e50..ea1195632 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/team-member-result.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/team-member-result.ts @@ -1,5 +1,5 @@ /* tslint:disable */ /* eslint-disable */ export interface TeamMemberResult { - id?: string; + id?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/team-member.ts b/responders/src/UI/embc-responder/src/app/core/api/models/team-member.ts index ea1ab7ae8..2f5d2ac09 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/team-member.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/team-member.ts @@ -2,10 +2,6 @@ /* eslint-disable */ import { MemberLabel } from '../models/member-label'; import { MemberRole } from '../models/member-role'; - -/** - * Team member - */ export interface TeamMember { agreementSignDate?: string | null; email?: string | null; @@ -13,12 +9,12 @@ export interface TeamMember { id?: string | null; isActive?: boolean; isUserNameEditable?: boolean; - label?: MemberLabel | null; + label?: MemberLabel; lastName: string; lastSuccessfulLogin?: string | null; phone?: string | null; role: MemberRole; teamId?: string | null; - teamName?: string; + teamName?: string | null; userName: string; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/team.ts b/responders/src/UI/embc-responder/src/app/core/api/models/team.ts index 3dddc1d0d..9e7f989ba 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/team.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/team.ts @@ -1,9 +1,5 @@ /* tslint:disable */ /* eslint-disable */ - -/** - * Team details - */ export interface Team { id: string; isActive?: boolean; diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/update-user-profile-request.ts b/responders/src/UI/embc-responder/src/app/core/api/models/update-user-profile-request.ts index 7fab76a64..91becb8cf 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/update-user-profile-request.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/update-user-profile-request.ts @@ -2,7 +2,7 @@ /* eslint-disable */ export interface UpdateUserProfileRequest { email?: string | null; - firstName?: string; - lastName?: string; + firstName?: string | null; + lastName?: string | null; phone?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/user-profile.ts b/responders/src/UI/embc-responder/src/app/core/api/models/user-profile.ts index e5338b822..03e25e64c 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/user-profile.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/user-profile.ts @@ -3,15 +3,15 @@ export interface UserProfile { agreementSignDate?: string | null; email?: string | null; - firstName?: string; - id?: string; - label?: string; + firstName?: string | null; + id?: string | null; + label?: string | null; lastLoginDate?: string | null; - lastName?: string; + lastName?: string | null; phone?: string | null; requiredToSignAgreement?: boolean; - role?: string; - teamId?: string; - teamName?: string; - userName?: string; + role?: string | null; + teamId?: string | null; + teamName?: string | null; + userName?: string | null; } diff --git a/responders/src/UI/embc-responder/src/app/core/api/services/configuration.service.ts b/responders/src/UI/embc-responder/src/app/core/api/services/configuration.service.ts index dbe3e68ec..b2a6e5afb 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/services/configuration.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/services/configuration.service.ts @@ -40,10 +40,6 @@ export class ConfigurationService extends BaseService { static readonly ConfigurationGetConfigurationPath = '/api/Configuration'; /** - * Get configuration settings for clients. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `configurationGetConfiguration()` instead. * @@ -57,10 +53,6 @@ export class ConfigurationService extends BaseService { } /** - * Get configuration settings for clients. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `configurationGetConfiguration$Response()` instead. * @@ -79,10 +71,6 @@ export class ConfigurationService extends BaseService { static readonly ConfigurationGetCodesPath = '/api/Configuration/codes'; /** - * Get code values and descriptions for lookups and enum types. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `configurationGetCodes()` instead. * @@ -91,23 +79,22 @@ export class ConfigurationService extends BaseService { configurationGetCodes$Response( params?: ConfigurationGetCodes$Params, context?: HttpContext - ): Observable>> { + ): Observable>> { return configurationGetCodes(this.http, this.rootUrl, params, context); } /** - * Get code values and descriptions for lookups and enum types. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `configurationGetCodes$Response()` instead. * * This method doesn't expect any request body. */ - configurationGetCodes(params?: ConfigurationGetCodes$Params, context?: HttpContext): Observable> { + configurationGetCodes( + params?: ConfigurationGetCodes$Params, + context?: HttpContext + ): Observable> { return this.configurationGetCodes$Response(params, context).pipe( - map((r: StrictHttpResponse>): Array => r.body) + map((r: StrictHttpResponse>): Array => r.body) ); } diff --git a/responders/src/UI/embc-responder/src/app/core/api/services/profile.service.ts b/responders/src/UI/embc-responder/src/app/core/api/services/profile.service.ts index d2abcfebf..89610bdfa 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/services/profile.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/services/profile.service.ts @@ -27,10 +27,6 @@ export class ProfileService extends BaseService { static readonly ProfileGetCurrentUserProfilePath = '/api/Profile/current'; /** - * Get the current logged in user profile. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `profileGetCurrentUserProfile()` instead. * @@ -44,10 +40,6 @@ export class ProfileService extends BaseService { } /** - * Get the current logged in user profile. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `profileGetCurrentUserProfile$Response()` instead. * @@ -66,30 +58,22 @@ export class ProfileService extends BaseService { static readonly ProfileUpdatePath = '/api/Profile/current'; /** - * Update the current user's profile. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `profileUpdate()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ - profileUpdate$Response(params: ProfileUpdate$Params, context?: HttpContext): Observable> { + profileUpdate$Response(params?: ProfileUpdate$Params, context?: HttpContext): Observable> { return profileUpdate(this.http, this.rootUrl, params, context); } /** - * Update the current user's profile. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `profileUpdate$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ - profileUpdate(params: ProfileUpdate$Params, context?: HttpContext): Observable { + profileUpdate(params?: ProfileUpdate$Params, context?: HttpContext): Observable { return this.profileUpdate$Response(params, context).pipe(map((r: StrictHttpResponse): void => r.body)); } @@ -97,10 +81,6 @@ export class ProfileService extends BaseService { static readonly ProfileSignAgreementPath = '/api/Profile/agreement'; /** - * Current user read and signed the electronic agreement. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `profileSignAgreement()` instead. * @@ -114,10 +94,6 @@ export class ProfileService extends BaseService { } /** - * Current user read and signed the electronic agreement. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `profileSignAgreement$Response()` instead. * diff --git a/responders/src/UI/embc-responder/src/app/core/api/services/registrations.service.ts b/responders/src/UI/embc-responder/src/app/core/api/services/registrations.service.ts index ba336c97e..1310d9732 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/services/registrations.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/services/registrations.service.ts @@ -9,12 +9,19 @@ import { BaseService } from '../base-service'; import { ApiConfiguration } from '../api-configuration'; import { StrictHttpResponse } from '../strict-http-response'; -import { AuditAccessRequest } from '../models/audit-access-request'; +import { ClothingSupport } from '../models/clothing-support'; import { EvacuationFile } from '../models/evacuation-file'; import { EvacuationFileSearchResult } from '../models/evacuation-file-search-result'; import { EvacuationFileSummary } from '../models/evacuation-file-summary'; +import { FoodGroceriesSupport } from '../models/food-groceries-support'; +import { FoodRestaurantSupport } from '../models/food-restaurant-support'; import { GetSecurityPhraseResponse } from '../models/get-security-phrase-response'; import { GetSecurityQuestionsResponse } from '../models/get-security-questions-response'; +import { IncidentalsSupport } from '../models/incidentals-support'; +import { LodgingAllowanceSupport } from '../models/lodging-allowance-support'; +import { LodgingBilletingSupport } from '../models/lodging-billeting-support'; +import { LodgingGroupSupport } from '../models/lodging-group-support'; +import { LodgingHotelSupport } from '../models/lodging-hotel-support'; import { ReferralPrintRequestResponse } from '../models/referral-print-request-response'; import { RegistrantProfile } from '../models/registrant-profile'; import { RegistrantProfileSearchResult } from '../models/registrant-profile-search-result'; @@ -78,7 +85,8 @@ import { RegistrationsVerifySecurityQuestions$Params } from '../fn/registrations import { registrationsVoidSupport } from '../fn/registrations/registrations-void-support'; import { RegistrationsVoidSupport$Params } from '../fn/registrations/registrations-void-support'; import { SearchResults } from '../models/search-results'; -import { Support } from '../models/support'; +import { TransportationOtherSupport } from '../models/transportation-other-support'; +import { TransportationTaxiSupport } from '../models/transportation-taxi-support'; import { VerifySecurityPhraseResponse } from '../models/verify-security-phrase-response'; import { VerifySecurityQuestionsResponse } from '../models/verify-security-questions-response'; @@ -92,10 +100,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsGetRegistrantProfilePath = '/api/Registrations/registrants/{registrantId}'; /** - * Gets a Registrant Profile. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsGetRegistrantProfile()` instead. * @@ -109,10 +113,6 @@ export class RegistrationsService extends BaseService { } /** - * Gets a Registrant Profile. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsGetRegistrantProfile$Response()` instead. * @@ -131,14 +131,10 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsUpdateRegistrantProfilePath = '/api/Registrations/registrants/{registrantId}'; /** - * Updates a Registrant Profile. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsUpdateRegistrantProfile()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsUpdateRegistrantProfile$Response( params: RegistrationsUpdateRegistrantProfile$Params, @@ -148,14 +144,10 @@ export class RegistrationsService extends BaseService { } /** - * Updates a Registrant Profile. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsUpdateRegistrantProfile$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsUpdateRegistrantProfile( params: RegistrationsUpdateRegistrantProfile$Params, @@ -170,34 +162,26 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsCreateRegistrantProfilePath = '/api/Registrations/registrants'; /** - * Creates a Registrant Profile. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsCreateRegistrantProfile()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsCreateRegistrantProfile$Response( - params: RegistrationsCreateRegistrantProfile$Params, + params?: RegistrationsCreateRegistrantProfile$Params, context?: HttpContext ): Observable> { return registrationsCreateRegistrantProfile(this.http, this.rootUrl, params, context); } /** - * Creates a Registrant Profile. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsCreateRegistrantProfile$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsCreateRegistrantProfile( - params: RegistrationsCreateRegistrantProfile$Params, + params?: RegistrationsCreateRegistrantProfile$Params, context?: HttpContext ): Observable { return this.registrationsCreateRegistrantProfile$Response(params, context).pipe( @@ -210,10 +194,6 @@ export class RegistrationsService extends BaseService { '/api/Registrations/registrants/{registrantId}/verified/{verified}'; /** - * Sets the Registrant Profile Verified flag to the supplied value. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsSetRegistrantVerified()` instead. * @@ -227,10 +207,6 @@ export class RegistrationsService extends BaseService { } /** - * Sets the Registrant Profile Verified flag to the supplied value. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsSetRegistrantVerified$Response()` instead. * @@ -249,10 +225,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsGetSecurityQuestionsPath = '/api/Registrations/registrants/{registrantId}/security'; /** - * Get security questions for a registrant. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsGetSecurityQuestions()` instead. * @@ -266,10 +238,6 @@ export class RegistrationsService extends BaseService { } /** - * Get security questions for a registrant. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsGetSecurityQuestions$Response()` instead. * @@ -288,14 +256,10 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsVerifySecurityQuestionsPath = '/api/Registrations/registrants/{registrantId}/security'; /** - * verify answers for security questions. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsVerifySecurityQuestions()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsVerifySecurityQuestions$Response( params: RegistrationsVerifySecurityQuestions$Params, @@ -305,14 +269,10 @@ export class RegistrationsService extends BaseService { } /** - * verify answers for security questions. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsVerifySecurityQuestions$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsVerifySecurityQuestions( params: RegistrationsVerifySecurityQuestions$Params, @@ -330,7 +290,7 @@ export class RegistrationsService extends BaseService { * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsInviteToRegistrantPortal()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsInviteToRegistrantPortal$Response( params: RegistrationsInviteToRegistrantPortal$Params, @@ -343,7 +303,7 @@ export class RegistrationsService extends BaseService { * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsInviteToRegistrantPortal$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsInviteToRegistrantPortal( params: RegistrationsInviteToRegistrantPortal$Params, @@ -361,7 +321,7 @@ export class RegistrationsService extends BaseService { * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsAuditRegistrantAccess()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsAuditRegistrantAccess$Response( params: RegistrationsAuditRegistrantAccess$Params, @@ -374,7 +334,7 @@ export class RegistrationsService extends BaseService { * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsAuditRegistrantAccess$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsAuditRegistrantAccess( params: RegistrationsAuditRegistrantAccess$Params, @@ -389,10 +349,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsGetFilePath = '/api/Registrations/files/{fileId}'; /** - * Gets a File. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsGetFile()` instead. * @@ -406,10 +362,6 @@ export class RegistrationsService extends BaseService { } /** - * Gets a File. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsGetFile$Response()` instead. * @@ -425,14 +377,10 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsUpdateFilePath = '/api/Registrations/files/{fileId}'; /** - * Updates a File. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsUpdateFile()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsUpdateFile$Response( params: RegistrationsUpdateFile$Params, @@ -442,14 +390,10 @@ export class RegistrationsService extends BaseService { } /** - * Updates a File. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsUpdateFile$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsUpdateFile( params: RegistrationsUpdateFile$Params, @@ -464,10 +408,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsGetFilesPath = '/api/Registrations/files'; /** - * Search files. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsGetFiles()` instead. * @@ -481,10 +421,6 @@ export class RegistrationsService extends BaseService { } /** - * Search files. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsGetFiles$Response()` instead. * @@ -503,34 +439,26 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsCreateFilePath = '/api/Registrations/files'; /** - * Creates a File. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsCreateFile()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsCreateFile$Response( - params: RegistrationsCreateFile$Params, + params?: RegistrationsCreateFile$Params, context?: HttpContext ): Observable> { return registrationsCreateFile(this.http, this.rootUrl, params, context); } /** - * Creates a File. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsCreateFile$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsCreateFile( - params: RegistrationsCreateFile$Params, + params?: RegistrationsCreateFile$Params, context?: HttpContext ): Observable { return this.registrationsCreateFile$Response(params, context).pipe( @@ -542,14 +470,10 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsCreateFileNotePath = '/api/Registrations/files/{fileId}/notes'; /** - * Create a File Note. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsCreateFileNote()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsCreateFileNote$Response( params: RegistrationsCreateFileNote$Params, @@ -559,14 +483,10 @@ export class RegistrationsService extends BaseService { } /** - * Create a File Note. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsCreateFileNote$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsCreateFileNote( params: RegistrationsCreateFileNote$Params, @@ -581,14 +501,10 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsUpdateFileNoteContentPath = '/api/Registrations/files/{fileId}/notes/{noteId}'; /** - * Updates a File Note's content. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsUpdateFileNoteContent()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsUpdateFileNoteContent$Response( params: RegistrationsUpdateFileNoteContent$Params, @@ -598,14 +514,10 @@ export class RegistrationsService extends BaseService { } /** - * Updates a File Note's content. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsUpdateFileNoteContent$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsUpdateFileNoteContent( params: RegistrationsUpdateFileNoteContent$Params, @@ -620,10 +532,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsSetFileNoteHiddenStatusPath = '/api/Registrations/files/{fileId}/notes/{noteId}/hidden'; /** - * Sets a File Note's isHidden field. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsSetFileNoteHiddenStatus()` instead. * @@ -637,10 +545,6 @@ export class RegistrationsService extends BaseService { } /** - * Sets a File Note's isHidden field. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsSetFileNoteHiddenStatus$Response()` instead. * @@ -659,10 +563,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsGetSecurityPhrasePath = '/api/Registrations/files/{fileId}/security'; /** - * get the security word of an evacuation file. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsGetSecurityPhrase()` instead. * @@ -676,10 +576,6 @@ export class RegistrationsService extends BaseService { } /** - * get the security word of an evacuation file. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsGetSecurityPhrase$Response()` instead. * @@ -698,14 +594,10 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsVerifySecurityPhrasePath = '/api/Registrations/files/{fileId}/security'; /** - * verify an evacuation file's security word. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsVerifySecurityPhrase()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsVerifySecurityPhrase$Response( params: RegistrationsVerifySecurityPhrase$Params, @@ -715,14 +607,10 @@ export class RegistrationsService extends BaseService { } /** - * verify an evacuation file's security word. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsVerifySecurityPhrase$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsVerifySecurityPhrase( params: RegistrationsVerifySecurityPhrase$Params, @@ -740,7 +628,7 @@ export class RegistrationsService extends BaseService { * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsLinkRegistrantToHouseholdMember()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsLinkRegistrantToHouseholdMember$Response( params: RegistrationsLinkRegistrantToHouseholdMember$Params, @@ -753,7 +641,7 @@ export class RegistrationsService extends BaseService { * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsLinkRegistrantToHouseholdMember$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsLinkRegistrantToHouseholdMember( params: RegistrationsLinkRegistrantToHouseholdMember$Params, @@ -771,7 +659,7 @@ export class RegistrationsService extends BaseService { * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsAuditFileAcccess()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsAuditFileAcccess$Response( params: RegistrationsAuditFileAcccess$Params, @@ -784,7 +672,7 @@ export class RegistrationsService extends BaseService { * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsAuditFileAcccess$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsAuditFileAcccess(params: RegistrationsAuditFileAcccess$Params, context?: HttpContext): Observable { return this.registrationsAuditFileAcccess$Response(params, context).pipe( @@ -796,33 +684,25 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsSearchPath = '/api/Registrations'; /** - * Search evacuation files and profiles matching the search parameters. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsSearch()` instead. * * This method doesn't expect any request body. */ registrationsSearch$Response( - params?: RegistrationsSearch$Params, + params: RegistrationsSearch$Params, context?: HttpContext ): Observable> { return registrationsSearch(this.http, this.rootUrl, params, context); } /** - * Search evacuation files and profiles matching the search parameters. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsSearch$Response()` instead. * * This method doesn't expect any request body. */ - registrationsSearch(params?: RegistrationsSearch$Params, context?: HttpContext): Observable { + registrationsSearch(params: RegistrationsSearch$Params, context?: HttpContext): Observable { return this.registrationsSearch$Response(params, context).pipe( map((r: StrictHttpResponse): SearchResults => r.body) ); @@ -838,7 +718,7 @@ export class RegistrationsService extends BaseService { * This method doesn't expect any request body. */ registrationsSearchMatchingRegistrants$Response( - params?: RegistrationsSearchMatchingRegistrants$Params, + params: RegistrationsSearchMatchingRegistrants$Params, context?: HttpContext ): Observable>> { return registrationsSearchMatchingRegistrants(this.http, this.rootUrl, params, context); @@ -851,7 +731,7 @@ export class RegistrationsService extends BaseService { * This method doesn't expect any request body. */ registrationsSearchMatchingRegistrants( - params?: RegistrationsSearchMatchingRegistrants$Params, + params: RegistrationsSearchMatchingRegistrants$Params, context?: HttpContext ): Observable> { return this.registrationsSearchMatchingRegistrants$Response(params, context).pipe( @@ -869,7 +749,7 @@ export class RegistrationsService extends BaseService { * This method doesn't expect any request body. */ registrationsSearchMatchingEvacuationFiles$Response( - params?: RegistrationsSearchMatchingEvacuationFiles$Params, + params: RegistrationsSearchMatchingEvacuationFiles$Params, context?: HttpContext ): Observable>> { return registrationsSearchMatchingEvacuationFiles(this.http, this.rootUrl, params, context); @@ -882,7 +762,7 @@ export class RegistrationsService extends BaseService { * This method doesn't expect any request body. */ registrationsSearchMatchingEvacuationFiles( - params?: RegistrationsSearchMatchingEvacuationFiles$Params, + params: RegistrationsSearchMatchingEvacuationFiles$Params, context?: HttpContext ): Observable> { return this.registrationsSearchMatchingEvacuationFiles$Response(params, context).pipe( @@ -894,14 +774,10 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsProcessSupportsPath = '/api/Registrations/files/{fileId}/supports'; /** - * Process digital draft supports by the API and create a print supports request. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsProcessSupports()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsProcessSupports$Response( params: RegistrationsProcessSupports$Params, @@ -911,14 +787,10 @@ export class RegistrationsService extends BaseService { } /** - * Process digital draft supports by the API and create a print supports request. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsProcessSupports$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsProcessSupports( params: RegistrationsProcessSupports$Params, @@ -933,14 +805,10 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsProcessPaperReferralsPath = '/api/Registrations/files/{fileId}/paperreferrals'; /** - * Process draft paper referrals by the API and create a print supports request. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsProcessPaperReferrals()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsProcessPaperReferrals$Response( params: RegistrationsProcessPaperReferrals$Params, @@ -950,14 +818,10 @@ export class RegistrationsService extends BaseService { } /** - * Process draft paper referrals by the API and create a print supports request. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsProcessPaperReferrals$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ registrationsProcessPaperReferrals( params: RegistrationsProcessPaperReferrals$Params, @@ -972,10 +836,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsVoidSupportPath = '/api/Registrations/files/{fileId}/supports/{supportId}/void'; /** - * Void a support. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsVoidSupport()` instead. * @@ -989,10 +849,6 @@ export class RegistrationsService extends BaseService { } /** - * Void a support. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsVoidSupport$Response()` instead. * @@ -1008,10 +864,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsCancelSupportPath = '/api/Registrations/files/{fileId}/supports/{supportId}/cancel'; /** - * Cancel a support. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsCancelSupport()` instead. * @@ -1025,10 +877,6 @@ export class RegistrationsService extends BaseService { } /** - * Cancel a support. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsCancelSupport$Response()` instead. * @@ -1044,10 +892,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsReprintSupportPath = '/api/Registrations/files/{fileId}/supports/{supportId}/reprint'; /** - * Reprint a referral support. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsReprintSupport()` instead. * @@ -1061,10 +905,6 @@ export class RegistrationsService extends BaseService { } /** - * Reprint a referral support. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsReprintSupport$Response()` instead. * @@ -1083,10 +923,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsGetPrintPath = '/api/Registrations/files/{fileId}/supports/print/{printRequestId}'; /** - * Request a print by id. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsGetPrint()` instead. * @@ -1100,10 +936,6 @@ export class RegistrationsService extends BaseService { } /** - * Request a print by id. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsGetPrint$Response()` instead. * @@ -1119,10 +951,6 @@ export class RegistrationsService extends BaseService { static readonly RegistrationsSearchSupportsPath = '/api/Registrations/supports'; /** - * Search for supports. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `registrationsSearchSupports()` instead. * @@ -1131,15 +959,26 @@ export class RegistrationsService extends BaseService { registrationsSearchSupports$Response( params?: RegistrationsSearchSupports$Params, context?: HttpContext - ): Observable>> { + ): Observable< + StrictHttpResponse< + Array< + | ClothingSupport + | IncidentalsSupport + | FoodGroceriesSupport + | FoodRestaurantSupport + | LodgingHotelSupport + | LodgingBilletingSupport + | LodgingGroupSupport + | LodgingAllowanceSupport + | TransportationTaxiSupport + | TransportationOtherSupport + > + > + > { return registrationsSearchSupports(this.http, this.rootUrl, params, context); } /** - * Search for supports. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `registrationsSearchSupports$Response()` instead. * @@ -1148,9 +987,50 @@ export class RegistrationsService extends BaseService { registrationsSearchSupports( params?: RegistrationsSearchSupports$Params, context?: HttpContext - ): Observable> { + ): Observable< + Array< + | ClothingSupport + | IncidentalsSupport + | FoodGroceriesSupport + | FoodRestaurantSupport + | LodgingHotelSupport + | LodgingBilletingSupport + | LodgingGroupSupport + | LodgingAllowanceSupport + | TransportationTaxiSupport + | TransportationOtherSupport + > + > { return this.registrationsSearchSupports$Response(params, context).pipe( - map((r: StrictHttpResponse>): Array => r.body) + map( + ( + r: StrictHttpResponse< + Array< + | ClothingSupport + | IncidentalsSupport + | FoodGroceriesSupport + | FoodRestaurantSupport + | LodgingHotelSupport + | LodgingBilletingSupport + | LodgingGroupSupport + | LodgingAllowanceSupport + | TransportationTaxiSupport + | TransportationOtherSupport + > + > + ): Array< + | ClothingSupport + | IncidentalsSupport + | FoodGroceriesSupport + | FoodRestaurantSupport + | LodgingHotelSupport + | LodgingBilletingSupport + | LodgingGroupSupport + | LodgingAllowanceSupport + | TransportationTaxiSupport + | TransportationOtherSupport + > => r.body + ) ); } } diff --git a/responders/src/UI/embc-responder/src/app/core/api/services/suppliers.service.ts b/responders/src/UI/embc-responder/src/app/core/api/services/suppliers.service.ts index 0e21015ce..e60fe9e51 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/services/suppliers.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/services/suppliers.service.ts @@ -43,10 +43,6 @@ export class SuppliersService extends BaseService { static readonly SuppliersGetSuppliersPath = '/api/Suppliers'; /** - * Search Suppliers. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersGetSuppliers()` instead. * @@ -60,10 +56,6 @@ export class SuppliersService extends BaseService { } /** - * Search Suppliers. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersGetSuppliers$Response()` instead. * @@ -82,33 +74,25 @@ export class SuppliersService extends BaseService { static readonly SuppliersCreateSupplierPath = '/api/Suppliers'; /** - * Create Supplier. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersCreateSupplier()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ suppliersCreateSupplier$Response( - params: SuppliersCreateSupplier$Params, + params?: SuppliersCreateSupplier$Params, context?: HttpContext ): Observable> { return suppliersCreateSupplier(this.http, this.rootUrl, params, context); } /** - * Create Supplier. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersCreateSupplier$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ - suppliersCreateSupplier(params: SuppliersCreateSupplier$Params, context?: HttpContext): Observable { + suppliersCreateSupplier(params?: SuppliersCreateSupplier$Params, context?: HttpContext): Observable { return this.suppliersCreateSupplier$Response(params, context).pipe( map((r: StrictHttpResponse): SupplierResult => r.body) ); @@ -118,10 +102,6 @@ export class SuppliersService extends BaseService { static readonly SuppliersGetSupplierByIdPath = '/api/Suppliers/{supplierId}'; /** - * Get Supplier by id. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersGetSupplierById()` instead. * @@ -135,10 +115,6 @@ export class SuppliersService extends BaseService { } /** - * Get Supplier by id. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersGetSupplierById$Response()` instead. * @@ -154,14 +130,10 @@ export class SuppliersService extends BaseService { static readonly SuppliersUpdateSupplierPath = '/api/Suppliers/{supplierId}'; /** - * Update supplier. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersUpdateSupplier()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ suppliersUpdateSupplier$Response( params: SuppliersUpdateSupplier$Params, @@ -171,14 +143,10 @@ export class SuppliersService extends BaseService { } /** - * Update supplier. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersUpdateSupplier$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ suppliersUpdateSupplier(params: SuppliersUpdateSupplier$Params, context?: HttpContext): Observable { return this.suppliersUpdateSupplier$Response(params, context).pipe( @@ -190,10 +158,6 @@ export class SuppliersService extends BaseService { static readonly SuppliersRemoveSupplierPath = '/api/Suppliers/{supplierId}/remove'; /** - * Remove supplier. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersRemoveSupplier()` instead. * @@ -207,10 +171,6 @@ export class SuppliersService extends BaseService { } /** - * Remove supplier. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersRemoveSupplier$Response()` instead. * @@ -226,10 +186,6 @@ export class SuppliersService extends BaseService { static readonly SuppliersActivateSupplierPath = '/api/Suppliers/{supplierId}/active'; /** - * Activate a supplier. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersActivateSupplier()` instead. * @@ -243,10 +199,6 @@ export class SuppliersService extends BaseService { } /** - * Activate a supplier. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersActivateSupplier$Response()` instead. * @@ -265,10 +217,6 @@ export class SuppliersService extends BaseService { static readonly SuppliersDeactivateSupplierPath = '/api/Suppliers/{supplierId}/inactive'; /** - * Activate a supplier. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersDeactivateSupplier()` instead. * @@ -282,10 +230,6 @@ export class SuppliersService extends BaseService { } /** - * Activate a supplier. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersDeactivateSupplier$Response()` instead. * @@ -304,10 +248,6 @@ export class SuppliersService extends BaseService { static readonly SuppliersClaimSupplierPath = '/api/Suppliers/{supplierId}/claim'; /** - * Claim a supplier. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersClaimSupplier()` instead. * @@ -321,10 +261,6 @@ export class SuppliersService extends BaseService { } /** - * Claim a supplier. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersClaimSupplier$Response()` instead. * @@ -340,10 +276,6 @@ export class SuppliersService extends BaseService { static readonly SuppliersAddSupplierSharedWithTeamPath = '/api/Suppliers/{supplierId}/add-team/{sharedTeamId}'; /** - * Add a Team the Supplier is shared with. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersAddSupplierSharedWithTeam()` instead. * @@ -357,10 +289,6 @@ export class SuppliersService extends BaseService { } /** - * Add a Team the Supplier is shared with. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersAddSupplierSharedWithTeam$Response()` instead. * @@ -379,10 +307,6 @@ export class SuppliersService extends BaseService { static readonly SuppliersRemoveSupplierSharedWithTeamPath = '/api/Suppliers/{supplierId}/remove-team/{sharedTeamId}'; /** - * Remove a Team the Supplier is shared with. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `suppliersRemoveSupplierSharedWithTeam()` instead. * @@ -396,10 +320,6 @@ export class SuppliersService extends BaseService { } /** - * Remove a Team the Supplier is shared with. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `suppliersRemoveSupplierSharedWithTeam$Response()` instead. * diff --git a/responders/src/UI/embc-responder/src/app/core/api/services/tasks.service.ts b/responders/src/UI/embc-responder/src/app/core/api/services/tasks.service.ts index f65e6d156..ff6a41748 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/services/tasks.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/services/tasks.service.ts @@ -28,10 +28,6 @@ export class TasksService extends BaseService { static readonly TasksGetTaskPath = '/api/Tasks/{taskId}'; /** - * Get a single ESS task. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `tasksGetTask()` instead. * @@ -42,10 +38,6 @@ export class TasksService extends BaseService { } /** - * Get a single ESS task. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `tasksGetTask$Response()` instead. * @@ -93,9 +85,9 @@ export class TasksService extends BaseService { * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `tasksSignIn()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ - tasksSignIn$Response(params: TasksSignIn$Params, context?: HttpContext): Observable> { + tasksSignIn$Response(params?: TasksSignIn$Params, context?: HttpContext): Observable> { return tasksSignIn(this.http, this.rootUrl, params, context); } @@ -103,9 +95,9 @@ export class TasksService extends BaseService { * This method provides access only to the response body. * To access the full response (for headers, for example), `tasksSignIn$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ - tasksSignIn(params: TasksSignIn$Params, context?: HttpContext): Observable { + tasksSignIn(params?: TasksSignIn$Params, context?: HttpContext): Observable { return this.tasksSignIn$Response(params, context).pipe(map((r: StrictHttpResponse): void => r.body)); } } diff --git a/responders/src/UI/embc-responder/src/app/core/api/services/team-communities-assignments.service.ts b/responders/src/UI/embc-responder/src/app/core/api/services/team-communities-assignments.service.ts index 2fafc39d4..5ac53bbd7 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/services/team-communities-assignments.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/services/team-communities-assignments.service.ts @@ -27,10 +27,6 @@ export class TeamCommunitiesAssignmentsService extends BaseService { static readonly TeamCommunitiesAssignmentsGetAssignedCommunitiesPath = '/api/team/communities'; /** - * Get all assigned communities. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamCommunitiesAssignmentsGetAssignedCommunities()` instead. * @@ -44,10 +40,6 @@ export class TeamCommunitiesAssignmentsService extends BaseService { } /** - * Get all assigned communities. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamCommunitiesAssignmentsGetAssignedCommunities$Response()` instead. * @@ -66,36 +58,26 @@ export class TeamCommunitiesAssignmentsService extends BaseService { static readonly TeamCommunitiesAssignmentsAssignCommunitiesPath = '/api/team/communities'; /** - * Assign communities to the team, will ignore communities which were already associated with the team. - * It will fail if a community is already assigned to another team,. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamCommunitiesAssignmentsAssignCommunities()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ teamCommunitiesAssignmentsAssignCommunities$Response( - params: TeamCommunitiesAssignmentsAssignCommunities$Params, + params?: TeamCommunitiesAssignmentsAssignCommunities$Params, context?: HttpContext ): Observable> { return teamCommunitiesAssignmentsAssignCommunities(this.http, this.rootUrl, params, context); } /** - * Assign communities to the team, will ignore communities which were already associated with the team. - * It will fail if a community is already assigned to another team,. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamCommunitiesAssignmentsAssignCommunities$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ teamCommunitiesAssignmentsAssignCommunities( - params: TeamCommunitiesAssignmentsAssignCommunities$Params, + params?: TeamCommunitiesAssignmentsAssignCommunities$Params, context?: HttpContext ): Observable { return this.teamCommunitiesAssignmentsAssignCommunities$Response(params, context).pipe( @@ -107,10 +89,6 @@ export class TeamCommunitiesAssignmentsService extends BaseService { static readonly TeamCommunitiesAssignmentsRemoveCommunitiesPath = '/api/team/communities'; /** - * Remove communities associations with the team, will ignore communities which are not associated. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamCommunitiesAssignmentsRemoveCommunities()` instead. * @@ -124,10 +102,6 @@ export class TeamCommunitiesAssignmentsService extends BaseService { } /** - * Remove communities associations with the team, will ignore communities which are not associated. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamCommunitiesAssignmentsRemoveCommunities$Response()` instead. * diff --git a/responders/src/UI/embc-responder/src/app/core/api/services/teams.service.ts b/responders/src/UI/embc-responder/src/app/core/api/services/teams.service.ts index e6814aa39..2136e2f3c 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/services/teams.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/services/teams.service.ts @@ -49,10 +49,6 @@ export class TeamsService extends BaseService { static readonly TeamsGetTeamsPath = '/api/team'; /** - * Get all teams. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsGetTeams()` instead. * @@ -66,10 +62,6 @@ export class TeamsService extends BaseService { } /** - * Get all teams. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsGetTeams$Response()` instead. * @@ -85,10 +77,6 @@ export class TeamsService extends BaseService { static readonly TeamsGetTeamsByCommunityPath = '/api/team/community/{communityCode}'; /** - * Get teams by community. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsGetTeamsByCommunity()` instead. * @@ -102,10 +90,6 @@ export class TeamsService extends BaseService { } /** - * Get teams by community. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsGetTeamsByCommunity$Response()` instead. * @@ -121,10 +105,6 @@ export class TeamsService extends BaseService { static readonly TeamsGetTeamMembersPath = '/api/team/members'; /** - * Get all team members. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsGetTeamMembers()` instead. * @@ -138,10 +118,6 @@ export class TeamsService extends BaseService { } /** - * Get all team members. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsGetTeamMembers$Response()` instead. * @@ -157,33 +133,25 @@ export class TeamsService extends BaseService { static readonly TeamsCreateTeamMemberPath = '/api/team/members'; /** - * Creates a new team member. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsCreateTeamMember()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ teamsCreateTeamMember$Response( - params: TeamsCreateTeamMember$Params, + params?: TeamsCreateTeamMember$Params, context?: HttpContext ): Observable> { return teamsCreateTeamMember(this.http, this.rootUrl, params, context); } /** - * Creates a new team member. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsCreateTeamMember$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ - teamsCreateTeamMember(params: TeamsCreateTeamMember$Params, context?: HttpContext): Observable { + teamsCreateTeamMember(params?: TeamsCreateTeamMember$Params, context?: HttpContext): Observable { return this.teamsCreateTeamMember$Response(params, context).pipe( map((r: StrictHttpResponse): TeamMemberResult => r.body) ); @@ -193,10 +161,6 @@ export class TeamsService extends BaseService { static readonly TeamsGetTeamMemberPath = '/api/team/members/{memberId}'; /** - * Get a single team member. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsGetTeamMember()` instead. * @@ -210,10 +174,6 @@ export class TeamsService extends BaseService { } /** - * Get a single team member. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsGetTeamMember$Response()` instead. * @@ -229,14 +189,10 @@ export class TeamsService extends BaseService { static readonly TeamsUpdateTeamMemberPath = '/api/team/members/{memberId}'; /** - * Updates team member. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsUpdateTeamMember()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ teamsUpdateTeamMember$Response( params: TeamsUpdateTeamMember$Params, @@ -246,14 +202,10 @@ export class TeamsService extends BaseService { } /** - * Updates team member. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsUpdateTeamMember$Response()` instead. * - * This method sends `application/json` and handles request body of type `application/json`. + * This method sends `application/*+json` and handles request body of type `application/*+json`. */ teamsUpdateTeamMember(params: TeamsUpdateTeamMember$Params, context?: HttpContext): Observable { return this.teamsUpdateTeamMember$Response(params, context).pipe( @@ -265,10 +217,6 @@ export class TeamsService extends BaseService { static readonly TeamsDeleteTeamMemberPath = '/api/team/members/{memberId}'; /** - * Delete a team member. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsDeleteTeamMember()` instead. * @@ -282,10 +230,6 @@ export class TeamsService extends BaseService { } /** - * Delete a team member. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsDeleteTeamMember$Response()` instead. * @@ -301,10 +245,6 @@ export class TeamsService extends BaseService { static readonly TeamsActivateTeamMemberPath = '/api/team/members/{memberId}/active'; /** - * Activate a team member. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsActivateTeamMember()` instead. * @@ -318,10 +258,6 @@ export class TeamsService extends BaseService { } /** - * Activate a team member. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsActivateTeamMember$Response()` instead. * @@ -337,10 +273,6 @@ export class TeamsService extends BaseService { static readonly TeamsDeactivateTeamMemberPath = '/api/team/members/{memberId}/inactive'; /** - * Deactivate a team member. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsDeactivateTeamMember()` instead. * @@ -354,10 +286,6 @@ export class TeamsService extends BaseService { } /** - * Deactivate a team member. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsDeactivateTeamMember$Response()` instead. * @@ -401,10 +329,6 @@ export class TeamsService extends BaseService { static readonly TeamsGetMemberRolesPath = '/api/team/members/codes/memberrole'; /** - * Provides a list of team member roles. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsGetMemberRoles()` instead. * @@ -418,10 +342,6 @@ export class TeamsService extends BaseService { } /** - * Provides a list of team member roles. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsGetMemberRoles$Response()` instead. * @@ -440,10 +360,6 @@ export class TeamsService extends BaseService { static readonly TeamsGetMemberLabelsPath = '/api/team/members/codes/memberlabel'; /** - * Provides a list of team member labels. - * - * - * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `teamsGetMemberLabels()` instead. * @@ -457,10 +373,6 @@ export class TeamsService extends BaseService { } /** - * Provides a list of team member labels. - * - * - * * This method provides access only to the response body. * To access the full response (for headers, for example), `teamsGetMemberLabels$Response()` instead. * diff --git a/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/ess-file-notes/ess-file-notes.component.html b/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/ess-file-notes/ess-file-notes.component.html index 6861903dd..7fb150eb5 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/ess-file-notes/ess-file-notes.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/ess-file-notes/ess-file-notes.component.html @@ -8,7 +8,7 @@
    -

    {{ notesList?.length }} case notes have been added for this ESS File.

    +

    {{ notesList?.length }} case note(s) have been added for this ESS File.

    @for (note of notes$ | async; track note) {

    @@ -22,6 +22,9 @@ {{ note?.addedOn | date: 'dd-MMM-yyyy' }} at {{ note?.addedOn | date: 'hh:mm a' }}

    + @if (note?.isImportant) { +
    Important Case Note
    + }
    @if (note?.isHidden && hasPermission('canSeeHiddenNotes')) {
    diff --git a/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/ess-file-notes/ess-file-notes.component.scss b/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/ess-file-notes/ess-file-notes.component.scss index 4ec33e068..cea6c4770 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/ess-file-notes/ess-file-notes.component.scss +++ b/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/ess-file-notes/ess-file-notes.component.scss @@ -58,3 +58,13 @@ .data-card { padding: 0; } + +.important-note-chip { + background-color: #de0018; + color: #fff; + display: table; + padding: 5px 10px; + text-align: center; + font-weight: bold; + border-radius: 52px; +} diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/add-notes/add-notes.component.html b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/add-notes/add-notes.component.html index d65a69a72..9e39ae85d 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/add-notes/add-notes.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/add-notes/add-notes.component.html @@ -25,6 +25,13 @@
    +
    +
    + Flag case note as important +
    +
    diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/add-notes/add-notes.component.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/add-notes/add-notes.component.ts index 70fa0f436..46eebcd8f 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/add-notes/add-notes.component.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/add-notes/add-notes.component.ts @@ -15,19 +15,31 @@ import { MatButton } from '@angular/material/button'; import { MatInput } from '@angular/material/input'; import { MatFormField, MatError } from '@angular/material/form-field'; +import { MatSlideToggleModule } from '@angular/material/slide-toggle'; @Component({ selector: 'app-add-notes', templateUrl: './add-notes.component.html', styleUrls: ['./add-notes.component.scss'], standalone: true, - imports: [FormsModule, ReactiveFormsModule, MatFormField, MatInput, MatError, MatButton, AppLoaderComponent] + imports: [ + FormsModule, + ReactiveFormsModule, + MatFormField, + MatInput, + MatError, + MatButton, + AppLoaderComponent, + MatSlideToggleModule + ] }) export class AddNotesComponent implements OnInit { @Output() closeEvent = new EventEmitter(false); notesForm: UntypedFormGroup; showLoader = false; isSubmitted = false; + isImportantNote = + this.stepNotesService.selectedNote !== undefined ? this.stepNotesService.selectedNote.isImportant : false; constructor( private formBuilder: UntypedFormBuilder, @@ -76,17 +88,25 @@ export class AddNotesComponent implements OnInit { * Creates the notes */ createNote(): void { - this.stepNotesService.saveNotes(this.stepNotesService.createNoteDTO(this.notesForm.get('note').value)).subscribe({ - next: (result) => { - this.closeEvent.emit(true); - }, - error: (error) => { - this.showLoader = !this.showLoader; - this.isSubmitted = !this.isSubmitted; - this.alertService.clearAlert(); - this.alertService.setAlert('danger', globalConst.addNotesError); - } - }); + this.stepNotesService + .saveNotes( + this.stepNotesService.createNoteDTO({ + note: this.notesForm.get('note').value, + id: undefined, + isImportant: this.isImportantNote + }) + ) + .subscribe({ + next: (result) => { + this.closeEvent.emit(true); + }, + error: (error) => { + this.showLoader = !this.showLoader; + this.isSubmitted = !this.isSubmitted; + this.alertService.clearAlert(); + this.alertService.setAlert('danger', globalConst.addNotesError); + } + }); } /** @@ -95,7 +115,11 @@ export class AddNotesComponent implements OnInit { editNote(): void { this.stepNotesService .editNote( - this.stepNotesService.createNoteDTO(this.notesForm.get('note').value, this.stepNotesService.selectedNote.id) + this.stepNotesService.createNoteDTO({ + note: this.notesForm.get('note').value, + id: this.stepNotesService.selectedNote.id, + isImportant: this.isImportantNote + }) ) .subscribe({ next: (result) => { diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/list-notes/list-notes.component.html b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/list-notes/list-notes.component.html index 40bebb7f9..51a75b021 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/list-notes/list-notes.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/list-notes/list-notes.component.html @@ -10,6 +10,9 @@ {{ note?.addedOn | date: 'dd-MMM-yyyy' }} at {{ note?.addedOn | date: 'hh:mm a' }}

    + @if (note?.isImportant) { +
    Important Case Note
    + }
    @if (note?.isEditable) { diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/list-notes/list-notes.component.scss b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/list-notes/list-notes.component.scss index e4a450944..279ba38de 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/list-notes/list-notes.component.scss +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/list-notes/list-notes.component.scss @@ -39,3 +39,12 @@ .image-align { text-align: center; } +.important-note-chip { + background-color: #de0018; + color: #fff; + display: table; + padding: 5px 10px; + text-align: center; + font-weight: bold; + border-radius: 52px; +} diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.html b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.html index 0b1950e5b..aaaad952f 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.html @@ -10,7 +10,7 @@
    -

    {{ count }} Case Notes have been added for this ESS File.

    +

    {{ count }} Case Note(s) have been added for this ESS File.

    @@ -44,6 +44,25 @@

    + + +
    + + Important Case Note +
    +

    + Add any case notes pertaining to the evacuee and their household. Do not include any medical, personal, + irrelevant, and/or speculative personal details pertaining to the evacuees and/or their household + members. Evacuees may request to view their own records. +

    +
    +
    diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.scss b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.scss index 5fb68ba0d..5159512eb 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.scss +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.scss @@ -7,6 +7,17 @@ .tips-card { background-color: rgba(35, 64, 117, 1); } +.tips-card-warning { + background-color: #f2f2f2; + margin-top: 10px; + .tips-info { + color: black; + } + .tips-heading { + color: red; + margin-left: 5px; + } +} .tips-info { color: white; diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.spec.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.spec.ts index 928c76f1b..016c8d5bb 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.spec.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.component.spec.ts @@ -66,7 +66,8 @@ describe('NotesComponent', () => { isEditable: true, isHidden: false, memberName: 'Test S.', - teamName: 'DEV Team' + teamName: 'DEV Team', + isImportant: false }, { addedOn: '2022-09-07T18:53:41Z', @@ -76,7 +77,8 @@ describe('NotesComponent', () => { isEditable: false, isHidden: false, memberName: 'Test S.', - teamName: 'DEV Team' + teamName: 'DEV Team', + isImportant: true } ]; expect(component.notesList).toEqual(notes); diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.module.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.module.ts index 4edbd4ad1..f9cbc58e5 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.module.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/notes-components/notes/notes.module.ts @@ -4,7 +4,7 @@ import { CommonModule } from '@angular/common'; import { NotesRoutingModule } from './notes-routing.module'; import { NotesComponent } from './notes.component'; -import { ReactiveFormsModule } from '@angular/forms'; +import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { ListNotesComponent } from '../list-notes/list-notes.component'; import { AddNotesComponent } from '../add-notes/add-notes.component'; @@ -12,6 +12,7 @@ import { AddNotesComponent } from '../add-notes/add-notes.component'; @NgModule({ imports: [ CommonModule, + FormsModule, NotesRoutingModule, ReactiveFormsModule, NotesComponent, diff --git a/responders/src/UI/embc-responder/src/app/feature-components/wizard/step-notes/step-notes.service.ts b/responders/src/UI/embc-responder/src/app/feature-components/wizard/step-notes/step-notes.service.ts index 3c5a0bc36..e6c78de96 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/wizard/step-notes/step-notes.service.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/wizard/step-notes/step-notes.service.ts @@ -61,11 +61,8 @@ export class StepNotesService { * @param content User entered note content * @returns Note object */ - createNoteDTO(content: string, id?: string): Note { - return { - id, - content - }; + createNoteDTO(params: { id?: string; note?: string; isImportant?: boolean }) { + return { content: params.note, id: params.id, isImportant: params.isImportant }; } /** diff --git a/responders/src/UI/embc-responder/src/assets/images/exclamation-mark-red.svg b/responders/src/UI/embc-responder/src/assets/images/exclamation-mark-red.svg new file mode 100644 index 000000000..b143e7c3f --- /dev/null +++ b/responders/src/UI/embc-responder/src/assets/images/exclamation-mark-red.svg @@ -0,0 +1,4 @@ + + + + diff --git a/shared/src/EMBC.ESS.Shared.Contracts/Events/EvacuationFiles.cs b/shared/src/EMBC.ESS.Shared.Contracts/Events/EvacuationFiles.cs index e55f6079b..4744a9723 100644 --- a/shared/src/EMBC.ESS.Shared.Contracts/Events/EvacuationFiles.cs +++ b/shared/src/EMBC.ESS.Shared.Contracts/Events/EvacuationFiles.cs @@ -141,6 +141,7 @@ public record Note public DateTime ModifiedOn { get; set; } public TeamMember CreatedBy { get; set; } public bool IsHidden { get; set; } + public bool IsImportant { get; set; } } public enum NoteType From 4bed2820bc2cc06bf4ada9c94864309e0c0fb874 Mon Sep 17 00:00:00 2001 From: Yossi T <48697347+ytqsl@users.noreply.github.com> Date: Wed, 17 Jul 2024 09:46:13 -0700 Subject: [PATCH 09/33] EMBCESSMOD-5076: etransfer eligibility flag in search results (#2388) --- .../Services/EvacuationSearchService.cs | 1 + .../src/app/core/api/api-configuration.ts | 2 +- .../models/registrant-profile-search-result.ts | 1 + .../app/core/models/evacuee-search-results.ts | 2 ++ .../app/core/services/evacuee-profile.service.ts | 16 +++++++++++++++- .../core/services/helper/search-data.service.ts | 1 + .../ess-files-results.component.html | 3 +++ .../ess-files-results.component.scss | 12 ++++++++++++ .../ess-files-results.component.ts | 2 +- .../profile-results.component.html | 3 +++ .../profile-results.component.scss | 12 ++++++++++++ 11 files changed, 52 insertions(+), 3 deletions(-) diff --git a/responders/src/API/EMBC.Responders.API/Services/EvacuationSearchService.cs b/responders/src/API/EMBC.Responders.API/Services/EvacuationSearchService.cs index 417ccd5c9..3ffa2070a 100644 --- a/responders/src/API/EMBC.Responders.API/Services/EvacuationSearchService.cs +++ b/responders/src/API/EMBC.Responders.API/Services/EvacuationSearchService.cs @@ -45,6 +45,7 @@ public class RegistrantProfileSearchResult public IEnumerable EvacuationFiles { get; set; } public bool IsProfileCompleted { get; set; } public bool IsAuthenticated { get; set; } + public bool IsMinor { get; set; } } public class EvacuationFileSearchResult diff --git a/responders/src/UI/embc-responder/src/app/core/api/api-configuration.ts b/responders/src/UI/embc-responder/src/app/core/api/api-configuration.ts index b169b8c01..ea8f0aa2c 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/api-configuration.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/api-configuration.ts @@ -9,7 +9,7 @@ import { Injectable } from '@angular/core'; providedIn: 'root' }) export class ApiConfiguration { - rootUrl: string = 'https://dev-era-responders.apps.silver.devops.gov.bc.ca'; + rootUrl: string = ''; } /** diff --git a/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile-search-result.ts b/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile-search-result.ts index 6b2041168..82a8de36e 100644 --- a/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile-search-result.ts +++ b/responders/src/UI/embc-responder/src/app/core/api/models/registrant-profile-search-result.ts @@ -9,6 +9,7 @@ export interface RegistrantProfileSearchResult { firstName?: string | null; id?: string | null; isAuthenticated?: boolean; + isMinor?: boolean; isProfileCompleted?: boolean; isRestricted?: boolean; lastName?: string | null; diff --git a/responders/src/UI/embc-responder/src/app/core/models/evacuee-search-results.ts b/responders/src/UI/embc-responder/src/app/core/models/evacuee-search-results.ts index 8bd066379..cab87efb7 100644 --- a/responders/src/UI/embc-responder/src/app/core/models/evacuee-search-results.ts +++ b/responders/src/UI/embc-responder/src/app/core/models/evacuee-search-results.ts @@ -9,8 +9,10 @@ export interface EvacueeSearchResults { export interface RegistrantProfileSearchResultModel extends RegistrantProfileSearchResult { primaryAddress?: null | AddressModel; evacuationFiles?: null | Array; + etransferEligible?: boolean; } export interface EvacuationFileSearchResultModel extends EvacuationFileSearchResult { evacuatedFrom?: null | AddressModel; + etransferEligible?: boolean; } diff --git a/responders/src/UI/embc-responder/src/app/core/services/evacuee-profile.service.ts b/responders/src/UI/embc-responder/src/app/core/services/evacuee-profile.service.ts index b8213c278..8941c28c2 100644 --- a/responders/src/UI/embc-responder/src/app/core/services/evacuee-profile.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/services/evacuee-profile.service.ts @@ -12,7 +12,7 @@ import { AddressModel } from '../models/address.model'; import { EvacuationFileSearchResultModel } from '../models/evacuation-file-search-result.model'; import { EvacuationFileSummaryModel } from '../models/evacuation-file-summary.model'; import { EvacueeDetailsModel } from '../models/evacuee-search-context.model'; -import { EvacueeSearchResults } from '../models/evacuee-search-results'; +import { EvacueeSearchResults, RegistrantProfileSearchResultModel } from '../models/evacuee-search-results'; import { FileLinkRequestModel } from '../models/fileLinkRequest.model'; import { RegistrantProfileModel } from '../models/registrant-profile.model'; import { ComputeRulesService } from './computeRules.service'; @@ -103,6 +103,7 @@ export class EvacueeProfileService { ...addressModel, ...registrant.primaryAddress }; + registrant.etransferEligible = this.isEtransferEligible(registrant); } for (const file of essFiles) { @@ -115,6 +116,10 @@ export class EvacueeProfileService { ...fileAddressModel, ...file.evacuatedFrom }; + const householdMemberProfile = registrants.find( + (r) => r.id === file.householdMembers.find((hm) => hm.isSearchMatch === true)?.id + ); + file.etransferEligible = householdMemberProfile?.etransferEligible ?? false; } searchResult?.files?.sort((a, b) => new Date(b.modifiedOn).valueOf() - new Date(a.modifiedOn).valueOf()); @@ -293,4 +298,13 @@ export class EvacueeProfileService { country }; } + + private isEtransferEligible(registrant: RegistrantProfileSearchResultModel): boolean { + return ( + registrant.isAuthenticated && + registrant.primaryAddress?.stateProvinceCode === 'BC' && + registrant.primaryAddress?.postalCode !== null && + !registrant.isMinor + ); + } } diff --git a/responders/src/UI/embc-responder/src/app/core/services/helper/search-data.service.ts b/responders/src/UI/embc-responder/src/app/core/services/helper/search-data.service.ts index fd7846c73..1cb9b6cee 100644 --- a/responders/src/UI/embc-responder/src/app/core/services/helper/search-data.service.ts +++ b/responders/src/UI/embc-responder/src/app/core/services/helper/search-data.service.ts @@ -187,6 +187,7 @@ export class SearchDataService extends DashboardService { tap({ next: (result) => {}, error: (error) => { + console.error('Error searching for evacuee:', error); this.alertService.clearAlert(); this.alertService.setAlert('danger', globalConst.evacueeSearchError); } diff --git a/responders/src/UI/embc-responder/src/app/feature-components/search/evacuee-search/ess-files-results/ess-files-results.component.html b/responders/src/UI/embc-responder/src/app/feature-components/search/evacuee-search/ess-files-results/ess-files-results.component.html index 599b49b4e..61d75fea0 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/search/evacuee-search/ess-files-results/ess-files-results.component.html +++ b/responders/src/UI/embc-responder/src/app/feature-components/search/evacuee-search/ess-files-results/ess-files-results.component.html @@ -64,6 +64,9 @@